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

Accessing the IMediaSample Interface for C++

Show in webframe

The actual DirectX IMediaSample interface can be accessed through the IltmmObjectWrapper interface using the following code:

HRESULT UnwrapMediaSample(IltmmMediaSampleDisp* pDispatch, IMediaSample** ppMediaSample)
{
   if(!ppMediaSample)
      return E_POINTER;
   if(!pDispatch)
   {
      // NULL dispatch means NULL MediaSample
      *ppMediaSample = NULL;
   }
   else
   {
      HRESULT hr;
      IUnknown* pObject;
      // query the IltmmObjectWrapper interface
      IltmmObjectWrapper* pWrapper;
      hr = pDispatch->QueryInterface(IID_IltmmObjectWrapper, (void**) &pWrapper);
      if(FAILED(hr))
         return hr;
      // get the wrapped object
      hr = pWrapper->GetWrappedObject(&pObject);
      pWrapper->Release();
      if(FAILED(hr))
         return hr;
      // query the IMediaSample interface
      hr = pObject->QueryInterface(IID_IMediaSample, (void**) ppMediaSample);
      pObject->Release();
      if(FAILED(hr))
         return hr;
   }
   return S_OK;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.