IltmmTVTuner::SetInputType Example for C++

void SetCaptureTVTunerInputType(IltmmCapture *pCapture) 
{ 
   IltmmTVTuner* 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, ltmmTunerInputCable); 
      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 Multimedia C API Help