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 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Media Foundation C API Help