// d3d12umddi.h
typedef struct D3D12DDI_VIDEO_ENCODE_REFERENCE_FRAMES_0080 {
UINT NumTexture2Ds;
D3D12DDI_HRESOURCE *hDrvTexture2Ds;
UINT *pSubresources;
} D3D12DDI_VIDEO_ENCODE_REFERENCE_FRAMES_0080;
View the official Windows Driver Kit DDI referenceNo description available.
The D3D12DDI_VIDEO_ENCODE_REFERENCE_FRAMES_0080 structure encapsulates the reconstructed reference images for the encoding operation.
NumTexture2DsNumber of textures in the array.
hDrvTexture2DsPointer to the array of textures.
pSubresourcesPointer to an array of sub-resource indices for the reference textures in hDrvTexture2Ds. A value of NULL indicates that sub-resource 0 should be assumed for each resource. With texture arrays within a single resource, the sub-resource indices point to the array index of the first resource plane. With an array of textures in individual resources, the sub-resource index is typically zero.
See D3D12 video encoding for general information.
D3D12DDI_VIDEO_ENCODER_PICTURE_CONTROL_DESC_0082_0