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

IltmfTVTuner::get_AvailableModes Example for C++

Show in webframe
void GetCaptureTVTunerAvailableModes(IltmfCapture *pCapture)
{
   IltmfTVTuner* pTuner;
   
   // try to get the tuner object
   HRESULT hr = pCapture->get_TVTuner(&pTuner);
   if(SUCCEEDED(hr) && pTuner != NULL)
   {
      long lAvailableModes, lMode;
      
      // get the available modes
      pTuner->get_AvailableModes(&lAvailableModes);
      // if TV mode is available, set it
      if (lAvailableModes & ltmfTUNER_MODE_TV)
         pTuner->put_Mode(ltmfTUNER_MODE_TV);
      else
         pTuner->put_Mode(ltmfTUNER_MODE_DEFAULT);
      // check the mode here
      pTuner->get_Mode(&lMode);
      // release the tuner object
      pTuner->Release();
   }
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.