Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. alarco

    MS MPEG2 Demux

    Basically, I'm developped a filter that receive MPEG2 video over the internet. It works very well when using GraphEdit: MyRecvFilter->MS MPEG2 Demux->Elecard MPEG2 Decoder->VR I just want to code it, so here the main lines: --- CoInitiliaze(NULL); IGraphBuilder *pGraph = NULL...
  2. alarco

    MS MPEG2 Demux

    Everything works fine, but I'm still unable to connect the MPEG2 Demux filter with the rest of the graph: pBuild->RenderStream(NULL, NULL, pCapture, (IBaseFilter *)pDemux, NULL); and it fails. Anyone has an idea why ?
  3. alarco

    MS MPEG2 Demux

    Oh yeah you're right. Thanks a lot!
  4. alarco

    MS MPEG2 Demux

    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...
  5. alarco

    Disable a push button (Win32)

    This is ridiculous! I spent about half an hour trying to find out how to disable a push button (Win32, not using MFC). Can someone help me with this huge programming challenge!!!
  6. alarco

    How to render MPEG frames

    Hi! I have mpeg1 frames stored in different files, and I want to display the corresponding movie. So, I think I'll have to make my own push source filter to be able to 'plug' it to a VideoRenderer. Am I right ? I cant believe there's no mpeg1 frame push filter already coded ?! Someone has a...
  7. alarco

    RTP and DirectShow

    I'm receiving a RTP stream (mpeg1): I'm able to print it to the console (but not a great idea!). I'm now trying to display it with some kind of video renderer in DirectShow. Anyone has an idea how to do it? thx!

Part and Inventory Search

Back
Top