Hi
I'm trying to implement the MS MPEG2 Demux but it fails. Here's my code:
-------------
if (FAILED(CoInitialize(NULL))){
...
}
IGraphBuilder *pGraph = NULL;
if (FAILED(CoCreateInstance(CLSID_FilterGraph,
NULL, CLSCTX_INPROC_SERVER,
IID_IGraphBuilder,
(void **)&pGraph)))
{
...
}
IMpeg2Demultiplexer *pDemux = NULL;
if (FAILED(pGraph->QueryInterface(IID_IMpeg2Demultiplexer,
(void**)&pDemux)))
{
// here it fails....
}
---------------
What's wrong ?!
Thanks!
I'm trying to implement the MS MPEG2 Demux but it fails. Here's my code:
-------------
if (FAILED(CoInitialize(NULL))){
...
}
IGraphBuilder *pGraph = NULL;
if (FAILED(CoCreateInstance(CLSID_FilterGraph,
NULL, CLSCTX_INPROC_SERVER,
IID_IGraphBuilder,
(void **)&pGraph)))
{
...
}
IMpeg2Demultiplexer *pDemux = NULL;
if (FAILED(pGraph->QueryInterface(IID_IMpeg2Demultiplexer,
(void**)&pDemux)))
{
// here it fails....
}
---------------
What's wrong ?!
Thanks!