Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.24
LEADTOOLS Multimedia API Help

IltmmConvert::get_DVDecoderResolution Example for C++

Show in webframe

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;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.