void GetPlayerSourceVideoFormat(IltmfPlay *pPlay){TCHAR szSourceVideoFOURCCString[MAX_PATH];char szSourceVideoFOURCC[5];long lSourceVideoFOURCC;// try to get the source FOURCCHRESULT hr = pPlay->get_SourceVideoFOURCC(&lSourceVideoFOURCC);// if zero then it is not a FOURCC formatif (FAILED(hr) || lSourceVideoFOURCC == 0)_stprintf(szSourceVideoFOURCCString, _T("source video is not a FOURCC"));else{// if we have a valid FOURCC, bitshift it out to characters for displayszSourceVideoFOURCC[0] = (lSourceVideoFOURCC & 0xff);szSourceVideoFOURCC[1] = (lSourceVideoFOURCC & 0xff00) >> 8;szSourceVideoFOURCC[2] = (lSourceVideoFOURCC & 0xff0000) >> 16;szSourceVideoFOURCC[3] = (lSourceVideoFOURCC & 0xff000000) >> 24;szSourceVideoFOURCC[4] = '\0';_stprintf(szSourceVideoFOURCCString, _T("Source Video ID is %s"), szSourceVideoFOURCC);}// display our messageMessageBox(NULL, szSourceVideoFOURCCString, TEXT("Source Video FOURCC Format"), MB_OK);}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
