Share via


_AM_FILTER_MISC_FLAGS

Send Feedback

This enumeration contains flags that indicate whether a filter is a source filter or a renderer filter.

typedef enum _AM_FILTER_MISC_FLAGS {
  AM_FILTER_MISC_FLAGS_IS_RENDERER     = 0x00000001,
  AM_FILTER_MISC_FLAGS_IS_SOURCE       = 0x00000002,
  AM_FILTER_MISC_FLAG_NO_CAPTURE_PAUSE = 0x00000004
};

Elements

  • AM_FILTER_MISC_FLAGS_IS_RENDERER
    The filter is a renderer and sends an EC_COMPLETE event at the end of the stream.
  • AM_FILTER_MISC_FLAGS_IS_SOURCE
    The filter is a source filter.
  • AM_FILTER_MISC_FLAG_NO_CAPTURE_PAUSE
    The filter does not have pause capabilities.

Requirements

DirectShow applications and DirectShow filters have different include file and link library requirements.

For more information, see Setting Up the Build Environment.

Pocket PC: Windows Mobile 5.0 and later
Smartphone: Windows Mobile 5.0 and later
OS Versions: Windows CE 5.01 and later
Header:

See Also

DirectShow Enumerations | IAMFilterMiscFlags::GetMiscFlags

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.