IltmfTVTuner::SetInputType Example for C++

void SetCaptureTVTunerInputType(IltmfCapture *pCapture) 
{ 
   IltmfTVTuner* pTuner; 
   // get the tuner object 
   HRESULT hr = pCapture->get_TVTuner(&pTuner); 
   if(SUCCEEDED(hr) && pTuner != NULL) 
   { 
      long lInputtype;  
      // set and get the tuner input type 
      pTuner->SetInputType(0, ltmfTunerInputCable); 
      pTuner->GetInputType(0, &lInputtype); 
      // 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 Media Foundation C API Help