IDXVAHD_Device::GetVideoProcessorInputFormats-Methode (dxvahd.h)

Ruft eine Liste der Eingabeformate ab, die vom DXVA-HD-Gerät (Microsoft DirectX Video Acceleration High Definition) unterstützt werden.

Syntax

HRESULT GetVideoProcessorInputFormats(
  [in]  UINT      Count,
  [out] D3DFORMAT *pFormats
);

Parameter

[in] Count

Die Anzahl der abzurufenden Formate. Dieser Parameter muss dem InputFormatCount-Element der DXVAHD_VPDEVCAPS-Struktur entsprechen. Rufen Sie die IDXVAHD_Device::GetVideoProcessorDeviceCaps-Methode auf, um diesen Wert abzurufen.

[out] pFormats

Ein Zeiger auf ein Array von D3DFORMAT-Werten . Der Parameter Count gibt die Anzahl der Elemente im Array an. Die -Methode füllt das Array mit einer Liste von Eingabeformaten aus.

Rückgabewert

Wenn diese Methode erfolgreich ist, wird S_OK zurückgegeben. Andernfalls wird ein Fehlercode HRESULT zurückgegeben.

Hinweise

Die Liste der Formate kann sowohl D3DFORMAT-Werte wie D3DFMT_X8R8G8B8 als auch FOURCC-Codes wie "NV12" enthalten. Weitere Informationen finden Sie unter Video FOURCCs.

Beispiele

// 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;
}

Anforderungen

   
Unterstützte Mindestversion (Client) Windows 7 [nur Desktop-Apps]
Unterstützte Mindestversion (Server) Windows Server 2008 R2 [nur Desktop-Apps]
Zielplattform Windows
Kopfzeile dxvahd.h

Weitere Informationen

DXVA-HD

IDXVAHD_Device