// d3d10umddi.h
PFND3D11_1DDI_VIDEOPROCESSORGETOUTPUTEXTENSION Pfnd3d111DdiVideoprocessorgetoutputextension;
HRESULT Pfnd3d111DdiVideoprocessorgetoutputextension(
D3D10DDI_HDEVICE unnamedParam1,
D3D11_1DDI_HVIDEOPROCESSOR unnamedParam2,
const GUID *unnamedParam3,
UINT unnamedParam4,
void *unnamedParam5
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Returns private state data from a video processor to an application.
unnamedParam1hDevice [in]
A handle to the display device (graphics context).
unnamedParam2hVideoProcessor [in]
A handle to the video processor object that was created through a call to the CreateVideoProcessor function.
unnamedParam3pGuid [in]
A pointer to a GUID that identifies the private state data. The meaning of this GUID is defined by the graphics driver.
unnamedParam4DataSize [in]
The size, in bytes, of the private state data in the buffer referenced by the pData parameter.
unnamedParam5pData [in, out]
A pointer to a buffer that receives the private state data.
VideoProcessorGetOutputExtension returns one of the following values:
| Return code | Description |
|---|---|
| S_OK | The private state data was returned successfully. |
| D3DDDIERR_DEVICEREMOVED | The graphics adapter was removed. |
| E_FAIL | The display miniport driver cannot return the requested private state data from the video processor. |
| E_OUTOFMEMORY | Memory was not available to complete the operation. |
The Microsoft Direct3D runtime does not validate any parameter data before it calls the VideoProcessorSetOutputExtension function.