IltmfCapture::get_AudioCaptureFormats Example for C++

void GetAudioCaptureFormats(IltmfCapture *pCapture) 
{ 
   IltmfAudioFormats *pAudioFormats; 
   long lCount; 
   // get the capture control's audio capture formats 
   HRESULT hr = pCapture->get_AudioCaptureFormats(&pAudioFormats); 
   if (SUCCEEDED(hr)) 
   { 
      // get the count 
      pAudioFormats->get_Count(&lCount); 
      // select the first format 
      if (lCount > 0) 
      { 
         // select the first audio format 
         pAudioFormats->put_Selection(0); 
      } 
      // release when done 
      pAudioFormats->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