IltmfTVTuner::put_TuningSpace Example for C++

copy tuning space from one TV tuner to another

void SetCaptureTVTunerTuningSpace(IltmfCapture *pCapture, IltmfTVTuner *pSrcTuner) 
{ 
   IltmfTVTuner* 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 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Media Foundation C API Help

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