Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.24
LEADTOOLS Multimedia API Help

IltmmPlay::GetSubObjectDispatch Example for C++

Show in webframe

// This function checks if the Lens effect filter is available
// and turns off the effect area (cropping feature)
void TurnOffLensCropping(IltmmPlay *pPlay)
{
   HRESULT hr;
   IDispatch *pDisp = NULL;
   ILMVLens *pLens = NULL;

   // call the Capture object to retrieve the video processors
   hr = pPlay->GetSubObjectDispatch( ltmmPlay_Object_SelVideoProcessor, &pDisp);
   if(SUCCEEDED(hr))
   {
      // see if the selected processor is the Lens Effect processor
      hr = pDisp->QueryInterface(IID_ILMVLens, (void**)&pLens);
      if(SUCCEEDED(hr))
      {
         // disable the effect
         pLens->put_EffectAreaEnabled(VARIANT_FALSE);

         // release the object
         pLens->Release();
      }

      // release the subobject
      pDisp->Release();
   }
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.