// dxva.h
typedef struct _DXVA_VideoSample {
REFERENCE_TIME rtStart;
REFERENCE_TIME rtEnd;
DXVA_SampleFormat SampleFormat;
VOID *lpDDSSrcSurface;
} DXVA_VideoSample, *LPDXVA_VideoSample;
View the official Windows Driver Kit DDI referenceNo description available.
The DXVA_VideoSample structure is sent by the renderer to the driver to specify the format of a video sample.
rtStartSpecifies the start time of the sample.
rtEndSpecifies the end time of the sample.
SampleFormatSpecifies the format of the sample as defined by a DXVA_SampleFormat structure.
lpDDSSrcSurfacePointer to a DD_SURFACE_LOCAL structure.