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_SourceVideoType Example for C++

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