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

IltmfCaptureSubTypes::get_Count Example for C++

Show in webframe
void GetNearestCaptureInputSelection(IltmfCapture *pCapture)
{
   IltmfCaptureSubTypes* pVideoCapSubTypes;
   IltmfCaptureSubType*  pCapSubType;
   long lCount, lSel, i;
   VARIANT_BOOL bVar;
   BSTR bstrName = NULL, bstrFriendlyName = NULL;
   pCapture->get_VideoCaptureSubTypes(&pVideoCapSubTypes);
   pVideoCapSubTypes->get_Count(&lCount);
   if (lCount > 0)
   {
      for (i = 0; i < lCount; i++)
      {
         pVideoCapSubTypes->Item(i, &pCapSubType);
         // get the desired subtype
         // we'll just take the first one for this example
         if (i == 1)
         {
            pCapSubType->get_Name(&bstrName);
            pCapSubType->get_FriendlyName(&bstrFriendlyName);
            pCapSubType->get_Selected(&bVar);
            // unselect it for demonstration purposes
            if (bVar == VARIANT_TRUE)
               pCapSubType->put_Selected(VARIANT_FALSE);
         }
         // release the capture subtype object
         pCapSubType->Release();
      }
      // get the current selection (should be -1 or not 1)
      pVideoCapSubTypes->get_Selection(&lSel);
      // this should be true
      if (lSel != 1 && NULL != bstrName)
      {
         pVideoCapSubTypes->Find(bstrName, &lSel);
         pVideoCapSubTypes->put_Selection(lSel);
      }
      // free the bstrs
      SysFreeString(bstrName);
      SysFreeString(bstrFriendlyName);
   }
   // release the capture subtypes object
   pVideoCapSubTypes->Release();
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.