How to debug c++ DirectShow filter

后端 未结 4 2006
醉话见心
醉话见心 2020-12-29 12:57

What debugging tools are available for directshow filters? Presently, I have a project that compiles and registers a video source filter that I then setup a graph in GraphE

4条回答
  •  无人及你
    2020-12-29 13:41

    The best way to debug real time apps is generating log files. If you want to view the log information in real time, just create a client server socket based logging. For example, your app can start listening to a port. An external viewer app (client) could connect to that port and starts receiving the log information in real time.

提交回复
热议问题