The following code demonstrates how to add Windows Media support to the ltmmPlay Object.
// declare the windows media certificate creation function
HRESULT STDMETHODCALLTYPE WMCreateCertificate( IUnknown** pUnkCert );
// link to the stub library
#pragma comment(lib, "wmstub.lib")
void AddWindowsMediaSupportPlayerObjectExample ( void )
{
HRESULT hr;
IltmmPlay* pPlay = NULL; // play object's interface pointer
IUnknown* punkCert = NULL;
// initialize the COM library
hr = CoInitialize(NULL);
if(FAILED(hr))
goto error;
// create the play object
hr = CoCreateInstance(&CLSID_ltmmPlay, NULL, CLSCTX_INPROC_SERVER, &IID_IltmmPlay, (void**) &pPlay);
if(FAILED(hr))
goto error;
// create a windows media certificate
hr = WMCreateCertificate(&punkCert);
if(SUCCEEDED(hr))
{
// assign the certificate to the play object
IltmmPlay_put_WMCertificate(pPlay, punkCert);
IUnknown_Release(punkCert);
}
error:
// clean up
if(pPlay)
IUnknown_Release(pPlay);
CoUninitialize();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document