CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 1 of 1
  1. #1
    Join Date
    Feb 2007
    Posts
    6

    [RESOLVED] DirectShow Video Capture Problem

    I am new to DirectShow and I am developing a program which capture images from the usb pc camera.
    As the Document of DirectShow did, I create my application and call initCaptureGraphBuilder(&pGraph,&pBuild) to initialize the point of IGraphBuilder and ICaptureGraphBuilder2
    and then I call pGraph->AddFilter() to add the filter to the filter graph.
    Up to now everything is ok and then I call pBuild->RenderStream() method to preview the video from my usb camera.
    but the method returned a E_FAIL, to my suprise.
    I don't know what's wrong with my program and
    initCaptureGraphBuilder() and AddFilter() method all return S_OKs except the RenderStream() method.
    Last edited by mjnicky; February 15th, 2007 at 02:49 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured