IltmmTVTuner::put_TuningSpace Example for C++

// copy tuning space from one TV tuner to another 
void SetCaptureTVTunerTuningSpace(IltmmCapture *pCapture, IltmmTVTuner *pSrcTuner) 
{ 
   IltmmTVTuner* pTuner; 
 
   // get the tuner object 
   HRESULT hr = pCapture->get_TVTuner(&pTuner); 
   if(SUCCEEDED(hr) && pTuner != NULL) 
   { 
      long lTunSpc; 
      // get the tunning space from the source tuner 
      pSrcTuner->get_TuningSpace(&lTunSpc); 
 
      // set the tunning space on our TV tuner 
      pTuner->put_TuningSpace(lTunSpc); 
   } 
 
   // release the tuner object 
   pTuner->Release(); 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Multimedia C API Help