// d3d10umddi.h
typedef struct D3D11_1DDI_VIDEO_PROCESSOR_CAPS {
UINT DeviceCaps;
UINT FeatureCaps;
UINT FilterCaps;
UINT InputFormatCaps;
UINT AutoStreamCaps;
UINT StereoCaps;
UINT RateConversionCapsCount;
UINT MaxInputStreams;
UINT MaxStreamStates;
} D3D11_1DDI_VIDEO_PROCESSOR_CAPS;
View the official Windows Driver Kit DDI referenceNo description available.
Describes the capabilities of a Microsoft Direct3D 11 video processor.
DeviceCapsA bitwise OR of zero or more flags from the D3D11_1DDI_VIDEO_PROCESSOR_DEVICE_CAPS enumeration.
FeatureCapsA bitwise OR of zero or more flags from the D3D11_1DDI_VIDEO_PROCESSOR_FEATURE_CAPS enumeration.
FilterCapsA bitwise OR of zero or more flags from the D3D11_1DDI_VIDEO_PROCESSOR_FILTER_CAPS enumeration.
InputFormatCapsA bitwise OR of zero or more flags from the D3D11_1DDI_VIDEO_PROCESSOR_FORMAT_CAPS enumeration.
AutoStreamCapsA bitwise OR of zero or more flags from the D3D11_1DDI_VIDEO_PROCESSOR_AUTO_STREAM_CAPS enumeration.
StereoCapsA bitwise OR of zero or more flags from the D3D11_1DDI_VIDEO_PROCESSOR_STEREO_CAPS enumeration.
RateConversionCapsCountThe number of frame-rate conversion capabilities. To enumerate the frame-rate conversion capabilities, call the GetVideoProcessorRateConversionCaps function.
MaxInputStreamsThe maximum number of input streams that can be enabled at the same time.
MaxStreamStatesThe maximum number of input streams for which the device can store state data.
The video processor stores state information for each input stream. These states persist between blits. With each blit, the application selects which streams to enable or disable. Disabling a stream does not affect the state information for that stream.
The MaxStreamStates member gives the maximum number of stream states that can be saved. The MaxInputStreams member gives the maximum number of streams that can be enabled during a blit. These two values can differ.
D3D11_1DDI_VIDEO_PROCESSOR_AUTO_STREAM_CAPS
D3D11_1DDI_VIDEO_PROCESSOR_DEVICE_CAPS
D3D11_1DDI_VIDEO_PROCESSOR_FEATURE_CAPS
D3D11_1DDI_VIDEO_PROCESSOR_FILTER_CAPS
D3D11_1DDI_VIDEO_PROCESSOR_FORMAT_CAPS
D3D11_1DDI_VIDEO_PROCESSOR_STEREO_CAPS
GetVideoProcessorRateConversionCaps