Author Topic: DirectShow Filter Graph Spy  (Read 877 times)

0 Members and 1 Guest are viewing this topic.

Offline josagi

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 3711
DirectShow Filter Graph Spy
« on: February 09, 2010, 11:13:26 PM »
DirectShow Spy 1.0.0.279

Code: You are not allowed to view links. Register or Login
Filter Graph Spy Tool allows you to see the Graph through Graphedit (File > Connect to Remote Graph..) even when player without ROT feature is using.

For example Windows Media Player or GOM player or etc. have not the ROT feature and we can't see what codecs it uses.So Filter Graph Spy Tool adds the ROT feature for these non-ROT feature players and we can see the graph in GRFedit..

FilterGraphSpy.dll and the proppage.dll must register in your system and below there has more information about ROT feature.

This quick update for DirectShow Filter Graph Spy adds tracing for (deprecated) IAMFilterData interface
And also fixes problem with Media Player Classic – Home Cinema, when the player crashes in External Filters windows.

Offline josagi

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 3711
DirectShow Filter Graph Spy
« Reply #1 on: May 21, 2011, 06:31:45 AM »
DirectShow Spy 1.0.0.321

A small update to the DirectShow Spy: DirectShow Filter Graph Spy prints memory allocator properties as a part of graph topology trace on transition to running state. Why is that and what it is for? Filters normally agree on allocator properties (ALLOCATOR_PROPERTIES, obtained from IMemAllocator, obtained from IMemInputPin) themselves without interference from controlling application. Sometimes an undesired choice of buffers can cause sick runtime behavior, including but not limited to the following:
1.live audio capture buffers are too long, and introduce significant latency, including from live video capture stream taking place in parallel; controlling application might need to take advantage of IAMBufferNegotiation::SuggestAllocatorProperties and request shorter buffers.
2.a filter, such as for example DMO Wrapper Filter, may default to 1 buffer on allocator, which means that if a buffer reference is for some reason held for future reference (e.g. a video filter might be holding a reference to be able to re-push a video sample if an application is requesting video update), the entire streaming might lock.
3.some filters are requesting unreasonably many/large buffers and consume vast spaces of RAM, such as MainConcept MXF Demultiplexer requesting 200 buffers x 640 kilobytes each (128 MB in total out of sudden)
4.some filters are requesting unreasonably few/small buffers resulting in inability to pre-buffer data

In a chase for answers to questions "Where is my memory?", "Why is it so choppy?", "I would really appreciate a nice lipsync" and to troubleshoot the mentioned scenarios it is helpful to understand buffering configuration. DirectShow Filter Spy is here to deliver this information. Once the graph is put into running state, spy prints out topology data into log file (which is in most cases C:\ProgramData\DirectShowSpy.log)


   You are not allowed to view links. Register or Login

Offline josagi

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 3711
DirectShow Filter Graph Spy
« Reply #2 on: August 03, 2011, 07:37:55 PM »
DirectShow Spy 1.0.0.555

DirectShow Spy is updated with a few new features:

retroactive Intelligent Connect trace

log output for IAMGraphBuilderCallback-related activity

process name based black list to selectively exclude processes from spying

For more info about this release, You are not allowed to view links. Register or Login


   You are not allowed to view links. Register or Login