Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.11.27
LEADTOOLS Media Foundation Help

IltmfCapture::get_AudioCaptureFormats Example for C++

Show in webframe
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(); 
   }
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.