Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.11.27
LEADTOOLS Media Foundation Help

IltmfConvert::get_SourceAudioType Example for C++

Show in webframe
void GetConvertSourceAudioType(IltmfConvert *pConvert)
{
   CString strAudioType;
   BSTR bstr = NULL;
   // get the source audio type name
   pConvert->get_SourceAudioType(&bstr);
   // format display string
   strAudioType.Format(TEXT("Source audio type GUID is %s"), bstr);
   
   // display the source audio type
   MessageBox(NULL, strAudioType, TEXT("Source Audio Type"), MB_OK);
   // free the bstr
   SysFreeString(bstr);
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.