// ksmedia.h
typedef enum {
KS_AMVP_MODE_WEAVE,
KS_AMVP_MODE_BOBINTERLEAVED,
KS_AMVP_MODE_BOBNONINTERLEAVED,
KS_AMVP_MODE_SKIPEVEN,
KS_AMVP_MODE_SKIPODD
} KS_AMVP_MODE;
View the official Windows Driver Kit DDI referenceNo description available.
The KS_AMVP_MODE enumeration defines video port display modes.
KS_AMVP_MODE_WEAVESpecifies the weave method to display interlaced video. In the weave mode, alternating fields are combined to form a single frame.
KS_AMVP_MODE_BOBINTERLEAVEDSpecifies the interleaved bob method to display video. In the interleaved bob mode, each field is displayed individually, and the gaps between fields are filled with interpolated values.
KS_AMVP_MODE_BOBNONINTERLEAVEDSpecifies the non-interleaved bob method to display video.
KS_AMVP_MODE_SKIPEVENSpecifies that even video fields should be skipped when displaying video.
KS_AMVP_MODE_SKIPODDSpecifies that odd video fields should be skipped when displaying video.