关于在GraphEdit中显示应用程序的Filter graph

本文介绍如何利用GraphEdit工具查看由外部进程创建的DirectShow过滤器图表。通过注册过滤器图表到运行对象表(ROT),可以轻松地在GraphEdit中观察应用程序构建的过滤器图表。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

         GraphEdit can load a filter graph created by an external process. With this feature, you can see exactly what filter graph your application builds, with only a minimal amount of additional code in your application.

The application must register the filter graph instance in the Running Object Table (ROT). The ROT is a globally accessible look-up table that keeps track of running objects. For information about how your application can add its filter graph to the ROT, see the topic Loading a Graph From an External Process in the Microsoft DirectShow documentation.

To use this feature, perform the following steps:

  1. Compile your application with code that adds a ROT entry for the filter graph.
  2. Run GraphEdit.
  3. Run your application.
  4. In the File menu, click Connect to Remote Graph....
  5. In the Select a remote filter graph to view... dialog box, select the process ident
  6. ifier (pid) of the second application.
  7. Click OK.

To refresh the list of process identifiers, click Refresh in the dialog box.

注意这只能在2000和XP下能用。

下面是将你在应用程序中的Filter Graph添加到ROT的代码,

HRESULT AuGraph::AddToRot(IUnknown *pUnkGraph, DWORD *pdwRegister)
{
 HRESULT hr = NOERROR;
 IMoniker * pMoniker = NULL;
 IRunningObjectTable * pROT = NULL;
 if(FAILED(GetRunningObjectTable(0,&pROT)))
 {
  return E_FAIL;
 }

 WCHAR wsz[256];
 ::memset(wsz,0,256);
 //wsprintfW(wsz,L"PID: %08x IGraphFilter = %08x",(DWORD_PTR)pUnkGraph,GetCurrentProcessId());
 
 hr = StringCchPrintfW(wsz, NUMELMS(wsz), L"FilterGraph %08x pid %08x",
                  (DWORD_PTR)pUnkGraph,GetCurrentProcessId());

 hr = CreateItemMoniker(L"!",wsz,&pMoniker);
 if(SUCCEEDED(hr))
 {
  hr = pROT->Register(ROTFLAGS_REGISTRATIONKEEPSALIVE,pUnkGraph,pMoniker,pdwRegister);
  pMoniker->Release();
 }
 pROT->Release();
 return hr;
}

下面是在我们使用了之后要除掉它的代码:

void AuGraph::RemoveFromRot(DWORD pdwRegister)
{
 IRunningObjectTable *pROT = NULL;
 if(SUCCEEDED(GetRunningObjectTable(0,&pROT)))
 {
  pROT->Revoke(pdwRegister);
  pROT->Release();
 }
}

在我们整个应用程序中的代码结构如下:

 hr = CoCreateInstance(CLSID_FilterGraph,NULL,CLSCTX_INPROC_SERVER,
                  IID_IGraphBuilder,(void **)&m_pGB);
 if(FAILED(hr))
 {
  return hr;
 }

#ifdef _DEBUG
 hr = AddToRot(m_pGB,&dwRegister);
#endif

.............应用程序

#ifdef _DEBUG
 RemoveFromRot(dwRegister);
#endif

 if(m_pGB)
  m_pGB = NULL;

看我的运行结果


当然我们有时候,可能有错误,但我们要有耐心,多弄几次。就可以看到了啊

<script src="http://s.vdoing.com/u/107/54977.js" type="text/javascript"></script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值