IltmmCapture::get_UseVideoDeviceAudio Example for C

HRESULT IltmmCapture_get_UseVideoDeviceAudio_Example (IltmmCapture* pCapture) 
{ 
   HRESULT hr; 
   VARIANT_BOOL vEnable;  
 
   hr = IltmmCapture_get_UseVideoDeviceAudio (pCapture, &vEnable);  
    
   if (FAILED(hr))  
      return hr;  
 
   if (vEnable == VARIANT_TRUE)  
   { 
      hr = IltmmCapture_put_UseVideoDeviceAudio (pCapture, VARIANT_FALSE);  
    
      if (FAILED(hr))  
         return hr;  
   } 
 
   return S_OK;  
} 
Help Version 21.0.2021.7.19
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Multimedia C API Help

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