IltmfPlay::get_SourceVideoType Example for C++

void GetPlayerSourceVideoType(IltmfPlay *pPlay) 
{ 
   BSTR     bstrSourceVideoType; 
   TCHAR   szSourceVideoType[MAX_PATH]; 
   // try to get the source video type GUID string 
   HRESULT hr = pPlay->get_SourceVideoType(&bstrSourceVideoType); 
   // if we were successful display the guid 
   if (SUCCEEDED(hr)) 
   { 
      _stprintf(szSourceVideoType, _T("Source Video Type GUID is %ls"), bstrSourceVideoType); 
      MessageBox(NULL, szSourceVideoType, TEXT("Source Video Type"), MB_OK); 
      SysFreeString(bstrSourceVideoType); 
   } 
   else 
   { 
      MessageBox(NULL, TEXT("Unable to get the source video type GUID"), TEXT("Source Video Type"), MB_OK); 
   } 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Media Foundation C API Help