nvcuvid decoded data

Anyone know how to retrieve decoded data into array of bytes in the decodedD3d9 project? Alot of mapping involved and I’m just confuse where to capture the decoded data.

Decoded data are put into g_pFrameQueue in cudaDecodedD3D9. Using

CUVIDPARSERDISPINFO oDisplayInfo;
if (g_pFrameQueue->dequeue(&oDisplayInfo))
{
    .........
}

you can get the decoded data.

Thanks Jigong.