This section applies only to Windows Server 2003 SP1 and later, and Windows XP SP2 and later.
Use the following example code to retrieve status on a protected video session that is associated with the COPP DirectX VA device object.
VP_STATUS
IoctlCOPPStatus(
PHW_DEVICE_EXTENSION pHwDeviceExtension,
PVIDEO_REQUEST_PACKET pVideoRequestPacket
)
{
COPP_IO_InputBuffer* pInBuff = pVideoRequestPacket->InputBuffer;
COPP_DeviceData* pThis = (COPP_DeviceData*)*pInBuff->ppThis;
DXVA_COPPStatusInput* lpin = (DXVA_COPPStatusInput*)pInBuff->InputBuffer;
DXVA_COPPStatusOutput* lpout = (DXVA_COPPStatusOutput*)pVideoRequestPacket->OutputBuffer;
HRESULT* phr = pInBuff->phr;
*phr = COPPQueryStatus(pThis, lpin, lpout);
if (*phr == NO_ERROR) {
pVideoRequestPacket->StatusBlock->Information = sizeof(DXVA_COPPStatusOutput);
}
return S_OK;
}