directshow中IFilterGraph::Disconnect和IEnumFilters::Next

 
Living with you!
欢迎转载
http://blog.csdn.net/livingpark
Living Park

使用智能连接建立了文件播放的链路,要断开其中两个filter,在之间插入另一个filter,先找到前面的filter对其使用IFilterGraph::Disconnect断开连接,然后连接前面filter和要插入的filter成功,接下来连接要插入的filter和后面filter时总是出错(连接失败),最后从文档中找到了对IFilterGraph::Disconnect的描述:
This method does not completely break the connection. To completely break the connection, both ends must be disconnected.
原来如此,开始以为disconnect后两个filter就断开了,要两个全断开才行,加入断开后面filter后运行成功。

要在枚举filter的while循环中(其中使用EnumFilters::Next)加入一个filter,结果发现循环只运行一次就退出,后从文档中找到对EnumFilters::Next的描述:
If the filter graph changes (for example, the application removes a filter), the enumerator is no longer be consistent with the graph, and the method returns VFW_E_ENUM_OUT_OF_SYNC. Discard any data obtained from previous calls to the enumerator, because it might be invalid.
原来在枚举的过程中不能改变Graph,添加、删除filter等都不可以,将加入filter的功能分离出去单独进行就可以了。

你可能感兴趣的:(filter,application,Graph,文档)