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 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 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.