_DMO_INPUT_DATA_BUFFER_FLAGS enumeration (mediaobj.h)
[The feature associated with this page, DirectShow, is a legacy feature. It has been superseded by MediaPlayer, IMFMediaEngine, and Audio/Video Capture in Media Foundation. Those features have been optimized for Windows 10 and Windows 11. Microsoft strongly recommends that new code use MediaPlayer, IMFMediaEngine and Audio/Video Capture in Media Foundation instead of DirectShow, when possible. Microsoft suggests that existing code that uses the legacy APIs be rewritten to use the new APIs if possible.]
The DMO_INPUT_DATA_BUFFER_FLAGS
enumeration defines flags that describe an input buffer.
Syntax
typedef enum _DMO_INPUT_DATA_BUFFER_FLAGS {
DMO_INPUT_DATA_BUFFERF_SYNCPOINT = 0x1,
DMO_INPUT_DATA_BUFFERF_TIME = 0x2,
DMO_INPUT_DATA_BUFFERF_TIMELENGTH = 0x4,
DMO_INPUT_DATA_BUFFERF_DISCONTINUITY = 0x8
} ;
Constants
DMO_INPUT_DATA_BUFFERF_SYNCPOINT Value: 0x1 The beginning of the data is a synchronization point. |
DMO_INPUT_DATA_BUFFERF_TIME Value: 0x2 The buffer's time stamp is valid. The buffer's indicated time length is valid. |
DMO_INPUT_DATA_BUFFERF_TIMELENGTH Value: 0x4 The buffer's indicated time length is valid. |
DMO_INPUT_DATA_BUFFERF_DISCONTINUITY Value: 0x8 |
Requirements
Requirement | Value |
---|---|
Header | mediaobj.h |