IltmfPlay::get_SourceAudioType Example for C++

void GetPlaySourceAudioType(IltmfPlay *pPlay) 
{ 
   TCHAR   szAudioType[MAX_PATH]; 
   BSTR bstr = NULL; 
   // get the source audio type name 
   pPlay->get_SourceAudioType(&bstr); 
   // format display string 
   _stprintf(szAudioType, _T("Source audio type GUID is %ls"), bstr); 
   // display the source audio type 
   MessageBox(NULL, szAudioType, TEXT("Source Audio Type"), MB_OK); 
   // free the bstr 
   SysFreeString(bstr); 
} 

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