Microsoft DirectX 9.0 |
The AM_STREAM_INFO_FLAGS enumeration defines flags that indicate a pin's stream-control status.
Syntax
typedef enum {
AM_STREAM_INFO_START_DEFINED = 0x00000001,
AM_STREAM_INFO_STOP_DEFINED = 0x00000002,
AM_STREAM_INFO_DISCARDING = 0x00000004,
AM_STREAM_INFO_STOP_SEND_EXTRA = 0x00000010
} AM_STREAM_INFO_FLAGS;
Elements
AM_STREAM_INFO_START_DEFINED
Indicates that the pin's start time is set.
AM_STREAM_INFO_STOP_DEFINED
Indicates that the pin's stop time is been set.
AM_STREAM_INFO_DISCARDING
Indicates that the pin is currently discarding data.
AM_STREAM_INFO_STOP_SEND_EXTRA
Indicates that the pin will send one extra sample after it reaches the stop time.
See Also