// d3d10umddi.h
typedef enum D3D11_1DDI_VIDEO_FRAME_FORMAT {
D3D11_1DDI_VIDEO_FRAME_FORMAT_PROGRESSIVE,
D3D11_1DDI_VIDEO_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRST,
D3D11_1DDI_VIDEO_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRST
} ;
View the official Windows Driver Kit DDI referenceNo description available.
Describes how a video stream is interlaced.
D3D11_1DDI_VIDEO_FRAME_FORMAT_PROGRESSIVEFrames are progressive.
D3D11_1DDI_VIDEO_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRSTFrames are interlaced. The top field of each frame is displayed first.
D3D11_1DDI_VIDEO_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRSTFrame are interlaced. The bottom field of each frame is displayed first.