檢查支援的 DXVA-HD 格式
檢查支援的輸入格式
若要取得 Microsoft DirectX Video Acceleration High Definition (DXVA-HD) 裝置支援的輸入格式清單,請執行下列動作:
- 呼叫 IDXVAHD_Device::GetVideoProcessorDeviceCaps 以取得裝置功能。
- 檢查DXVAHD_VPDEVCAPS結構的InputFormatCount成員。 此成員會提供支援的輸入格式數目。
- 配置大小為InputFormatCount的D3DFORMAT值陣列。
- 將此陣列傳遞至 IDXVAHD_Device::GetVideoProcessorInputFormats 方法。 方法會以輸入格式清單填滿陣列。
下列程式碼顯示這些步驟:
// Checks whether a DXVA-HD device supports a specified input format.
HRESULT CheckInputFormatSupport(
IDXVAHD_Device *pDXVAHD,
const DXVAHD_VPDEVCAPS& caps,
D3DFORMAT d3dformat
)
{
D3DFORMAT *pFormats = new (std::nothrow) D3DFORMAT[ caps.InputFormatCount ];
if (pFormats == NULL)
{
return E_OUTOFMEMORY;
}
HRESULT hr = pDXVAHD->GetVideoProcessorInputFormats(
caps.InputFormatCount,
pFormats
);
if (FAILED(hr))
{
goto done;
}
UINT index;
for (index = 0; index < caps.InputFormatCount; index++)
{
if (pFormats[index] == d3dformat)
{
break;
}
}
if (index == caps.InputFormatCount)
{
hr = E_FAIL;
}
done:
delete [] pFormats;
return hr;
}
檢查支援的輸出格式
若要取得 DXVA-HD 裝置支援的輸出格式清單,請執行下列動作:
- 呼叫 IDXVAHD_Device::GetVideoProcessorDeviceCaps 以取得裝置功能。
- 檢查DXVAHD_VPDEVCAPS結構的OutputFormatCount成員。 此成員會提供支援的輸入格式數目。
- 配置大小為 OutputFormatCount的D3DFORMAT值陣列。
- 將此陣列傳遞至 IDXVAHD_Device::GetVideoProcessorOutputFormats 方法。 方法會以輸出格式清單填滿陣列。
下列程式碼顯示這些步驟:
// Checks whether a DXVA-HD device supports a specified output format.
HRESULT CheckOutputFormatSupport(
IDXVAHD_Device *pDXVAHD,
const DXVAHD_VPDEVCAPS& caps,
D3DFORMAT d3dformat
)
{
D3DFORMAT *pFormats = new (std::nothrow) D3DFORMAT[caps.OutputFormatCount];
if (pFormats == NULL)
{
return E_OUTOFMEMORY;
}
HRESULT hr = pDXVAHD->GetVideoProcessorOutputFormats(
caps.OutputFormatCount,
pFormats
);
if (FAILED(hr))
{
goto done;
}
UINT index;
for (index = 0; index < caps.OutputFormatCount; index++)
{
if (pFormats[index] == d3dformat)
{
break;
}
}
if (index == caps.OutputFormatCount)
{
hr = E_FAIL;
}
done:
delete [] pFormats;
return hr;
}
相關主題