IltmfPlay::get_SourceAudioFormat Example for C++

void GetPlaySourceAudioFormat(IltmfPlay *pPlay) 
{ 
   TCHAR   szSourceAudioFormat[MAX_PATH];  
   long     lSourceAudioFormat; 
   // get the source audio format FOURCC number 
   HRESULT hr = pPlay->get_SourceAudioFormat(&lSourceAudioFormat); 
   if (SUCCEEDED(hr)) 
   { 
      if (lSourceAudioFormat == 0) 
         _stprintf(szSourceAudioFormat, _T("Source audio format is not a standard format")); 
      else 
         _stprintf(szSourceAudioFormat, _T("Source audio format is %d"), lSourceAudioFormat); 
 
      // display the source audio format 
      MessageBox(NULL, szSourceAudioFormat, TEXT("Source Audio FOURCC Format"), MB_OK); 
   } 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Media Foundation C API Help