IltmmConvert::get_DVDecoderResolution Example for C++

HRESULT GetConvertDVDDecoderResolution(IltmmConvert *pConvert) 
{ 
   ltmmDVResolution DVRes; 
   CString strDV; 
 
   // call the Convert object to retrieve the DVD Decoder resolution 
   HRESULT hr = pConvert->get_DVDecoderResolution(&DVRes); 
 
   if (SUCCEEDED(hr)) 
   { 
      // display the current resolution 
      strDV.Format(TEXT("DV Decoder resolution = %d"), (int)DVRes); 
      MessageBox(NULL, strDV, TEXT("DVD Decoder Resolution"), MB_OK); 
   } 
 
   return hr; 
} 
Help Version 22.0.2023.1.26
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Multimedia C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.