Microsoft DirectX 9.0

Dump Filter Sample

Description

The Dump Filter is a renderer filter that writes the media samples it receives to a text file.

Path

Source: (SDK root)\Samples\C++\DirectShow\Filters\Dump

User's Guide

This filter is a useful debugging tool. For example, you can verify, bit by bit, the results of a transform filter. You can build a graph manually by using GraphEdit, and connect the Dump filter to the output of a transform filter or any other output pin. You can also connect a tee filter and put the Dump filter on one leg of the tee filter and the typical output on another leg to monitor the results in a real-time scenario.

This sample illustrates how to use the base filter class CBaseFilter and the rendered input pin class CRenderedInputPin. It also demonstrates how to implement the IFileSinkFilter interface. The Dump filter has a single input pin, which writes every sample that it receives directly to a file.