2011-09-12 13 views
5

私はDirectShowの新機能で、アプリケーションにビデオストリームを追加しようとしています。私はそこに多くのソリューション(TouchLess、DirectShow.netなど)を見て、これで行くことになったsmall project on Code Projectそれにはあまりないので、私はそれを選択した理由です。この機能をすばやく実装する必要があるため、小さなコードベースを使用したいと思っていました。LifeCam Studioで動作するIAMStreamConfig.SetFormat()を作成できません

一日の読書、実験、デバッグの後、私は最終的にすべてうまく動作します。遅れがありますが、それは後で心配することができます。この時点で私が持っている問題は、the camera is capable of 1280X720であり、私はこの解像度を使いたいと思います。しかし、それは640x480でキャプチャすることを決定しました。解像度を設定する方法を深く深く深く学びながら、ついに私はそれを理解したと思った。私は、コードプロジェクトのページで、私がベースとして使用したコメントのコードも見つけました。

6時間の試行後、このカメラの解像度を変更できません。エラーが発生せず、SetFormat()から返されたHRESULTは0ですが、カメラは解像度を変更しません。

すべてを貼り付けるコードがあまりにも多くありますが、問題がどこにあるか想像してグラフを作成するセクションを含めたいと思います。ここ

は設定コードグラフ

void CameraMethods::StartCamera(int camIndex, interior_ptr<int> width, 
    interior_ptr<int> height) 
{ 
    if (g_pGraphBuilder != NULL) 
     throw gcnew ArgumentException("Graph Builder was null"); 

    IMoniker *pMoniker = GetMoniker(camIndex); 
    pMoniker->AddRef(); 

    HRESULT hr = S_OK; 

    // Build all the necessary interfaces to start the capture 
    if (SUCCEEDED(hr)) 
    { 
     hr = CoCreateInstance(CLSID_FilterGraph, 
      NULL, 
      CLSCTX_INPROC, 
      IID_IGraphBuilder, 
      (LPVOID*)&g_pGraphBuilder); 
    } 

    if (SUCCEEDED(hr)) 
     hr = g_pGraphBuilder->QueryInterface(IID_IMediaControl, (LPVOID*)&g_pMediaControl); 

    if (SUCCEEDED(hr)) 
    { 
     hr = CoCreateInstance(CLSID_CaptureGraphBuilder2, 
      NULL, 
      CLSCTX_INPROC, 
      IID_ICaptureGraphBuilder2, 
      (LPVOID*)&g_pCaptureGraphBuilder); 
    } 

    // Setup the filter graph 
    if (SUCCEEDED(hr)) 
     hr = g_pCaptureGraphBuilder->SetFiltergraph(g_pGraphBuilder); 

    // Build the camera from the moniker 
    if (SUCCEEDED(hr)) 
     hr = pMoniker->BindToObject(NULL, NULL, IID_IBaseFilter, (LPVOID*)&g_pIBaseFilterCam); 

    // Add the camera to the filter graph 
    if (SUCCEEDED(hr)) 
     hr = g_pGraphBuilder->AddFilter(g_pIBaseFilterCam, L"WebCam"); 

    // Create a SampleGrabber 
    if (SUCCEEDED(hr)) 
     hr = CoCreateInstance(CLSID_SampleGrabber, NULL, CLSCTX_INPROC_SERVER, IID_IBaseFilter, 
      (void**)&g_pIBaseFilterSampleGrabber); 

    // Configure the Sample Grabber 
    if (SUCCEEDED(hr)) 
     hr = ConfigureSampleGrabber(g_pIBaseFilterSampleGrabber); 

    // Set the resolution - I have NO idea where this should be executed 
    SetCaptureFormat(camIndex, *width, *height); 

    // Add Sample Grabber to the filter graph 
    if (SUCCEEDED(hr)) 
     hr = g_pGraphBuilder->AddFilter(g_pIBaseFilterSampleGrabber, L"SampleGrabber"); 

    // Create the NullRender 
    if (SUCCEEDED(hr)) 
     hr = CoCreateInstance(CLSID_NullRenderer, NULL, CLSCTX_INPROC_SERVER, IID_IBaseFilter, 
      (void**)&g_pIBaseFilterNullRenderer); 

    // Add the Null Render to the filter graph 
    if (SUCCEEDED(hr)) 
     hr = g_pGraphBuilder->AddFilter(g_pIBaseFilterNullRenderer, L"NullRenderer"); 

    // Configure the render stream 
    if (SUCCEEDED(hr)) 
     hr = g_pCaptureGraphBuilder->RenderStream(&PIN_CATEGORY_CAPTURE, &MEDIATYPE_Video, 
      g_pIBaseFilterCam, g_pIBaseFilterSampleGrabber, g_pIBaseFilterNullRenderer); 

    // Grab the capture width and height 
    if (SUCCEEDED(hr)) 
    { 
     ISampleGrabber* pGrabber = NULL; 
     hr = g_pIBaseFilterSampleGrabber->QueryInterface(IID_ISampleGrabber, (LPVOID*)&pGrabber); 
     if (SUCCEEDED(hr)) 
     { 
      AM_MEDIA_TYPE mt; 
      hr = pGrabber->GetConnectedMediaType(&mt); 
      if (SUCCEEDED(hr)) 
      { 
       VIDEOINFOHEADER *pVih; 
       if ((mt.formattype == FORMAT_VideoInfo) && 
        (mt.cbFormat >= sizeof(VIDEOINFOHEADER)) && 
        (mt.pbFormat != NULL)) 
       { 
        pVih = (VIDEOINFOHEADER*)mt.pbFormat; 
        *width = pVih->bmiHeader.biWidth; 
        *height = pVih->bmiHeader.biHeight; 
       } 
       else 
       { 
        hr = E_FAIL; // Wrong format 
       } 

       // FreeMediaType(mt); (from MSDN) 
       if (mt.cbFormat != 0) 
       { 
        CoTaskMemFree((PVOID)mt.pbFormat); 
        mt.cbFormat = 0; 
        mt.pbFormat = NULL; 
       } 
       if (mt.pUnk != NULL) 
       { 
        // Unecessary because pUnk should not be used, but safest. 
        mt.pUnk->Release(); 
        mt.pUnk = NULL; 
       } 
      } 
     } 

     if (pGrabber != NULL) 
     { 
      pGrabber->Release(); 
      pGrabber = NULL; 
     } 
    } 

    // Start the capture 
    if (SUCCEEDED(hr)) 
     hr = g_pMediaControl->Run(); 

    // If init fails then ensure that you cleanup 
    if (FAILED(hr)) 
     StopCamera(); 
    else 
     hr = S_OK; // Make sure we return S_OK for success 

    // Cleanup 
    if (pMoniker != NULL) 
    { 
     pMoniker->Release(); 
     pMoniker = NULL; 
    } 

    if (SUCCEEDED(hr)) 
     this->activeCameraIndex = camIndex; 
    else 
     throw gcnew COMException("Error Starting Camera", hr); 
} 

[UPDATE]はかなりCodeProjectのソースから正確なコードである

HRESULT CameraMethods::ConfigureSampleGrabber(IBaseFilter *pIBaseFilter) 
{ 
    HRESULT hr = S_OK; 
    ISampleGrabber *pGrabber = NULL; 

    hr = pIBaseFilter->QueryInterface(IID_ISampleGrabber, (void**)&pGrabber); 
    if (SUCCEEDED(hr)) 
    { 
     AM_MEDIA_TYPE mt; 
     ZeroMemory(&mt, sizeof(AM_MEDIA_TYPE)); 
     mt.majortype = MEDIATYPE_Video; 
     mt.subtype = MEDIASUBTYPE_RGB24; 
     mt.formattype = FORMAT_VideoInfo; 
     hr = pGrabber->SetMediaType(&mt); 
    } 

    if (SUCCEEDED(hr)) 
     hr = pGrabber->SetCallback(new SampleGrabberCB(), 1); 

    if (pGrabber != NULL) 
    { 
     pGrabber->Release(); 
     pGrabber = NULL; 
    } 

    return hr; 
} 

以下ConfigureSampleGrabber()メソッドを添加しますコード。私は、コードを通じて段階と検証のsetFormatへの呼び出し()が実行されていることと、有効なHRESULTを返してきた

void CameraMethods::SetCaptureFormat(int camIndex, int width, int height) 
{ 
    HRESULT hr = S_OK; 
    IMoniker* pMoniker = GetMoniker(camIndex); 

    IBaseFilter* pCap; 
    hr=pMoniker->BindToObject(0,0,IID_IBaseFilter,(void **)&pCap); 

    if(!SUCCEEDED(hr)) 
     return; 

    IAMStreamConfig *pConfig = NULL; 

    if(g_pCaptureGraphBuilder == NULL) // no CaptureGraphBuilder initialised 
     return; 

    hr = g_pCaptureGraphBuilder->FindInterface(
     &PIN_CATEGORY_CAPTURE, // Preview pin. 
     0, // Any media type. 
     pCap, // Pointer to the capture filter. 
     IID_IAMStreamConfig, (void**)&pConfig); 

    if(!SUCCEEDED(hr)) 
     return; 

    int iCount = 0, iSize = 0; 
    hr = pConfig->GetNumberOfCapabilities(&iCount, &iSize); 

    // Check the size to make sure we pass in the correct structure. 
    if (iSize == sizeof(VIDEO_STREAM_CONFIG_CAPS)) { 

     // Use the video capabilities structure. 
     for (int iFormat = 0; iFormat < iCount; iFormat++) 
     { 
      VIDEO_STREAM_CONFIG_CAPS scc; 
      AM_MEDIA_TYPE *pmt; 
      /* Note: Use of the VIDEO_STREAM_CONFIG_CAPS structure to configure a video device is 
      deprecated. Although the caller must allocate the buffer, it should ignore the 
      contents after the method returns. The capture device will return its supported 
      formats through the pmt parameter. */ 
      hr = pConfig->GetStreamCaps(iFormat, &pmt, (BYTE*)&scc); 
      if (SUCCEEDED(hr)) 
      { 
       /* Examine the format, and possibly use it. */ 
       if (pmt->formattype == FORMAT_VideoInfo) { 
        // Check the buffer size. 
        if (pmt->cbFormat >= sizeof(VIDEOINFOHEADER)) 
        { 
         VIDEOINFOHEADER *pVih = reinterpret_cast<VIDEOINFOHEADER*>(pmt->pbFormat); 
         BITMAPINFOHEADER *bmiHeader = &pVih->bmiHeader; 

         /* Access VIDEOINFOHEADER members through pVih. */ 
         if(bmiHeader->biWidth == width && bmiHeader->biHeight == height && 
          bmiHeader->biBitCount == 24) 
         { 
          hr = pConfig->SetFormat(pmt); 
         } 
        } 
       } 

       // Delete the media type when you are done. 
       DeleteMediaType(pmt); 
      } 
     } 
    } 
} 

:私は、解像度を設定するには、このメソッドを追加しました。しかし、キャプチャされたフレームに変更はありません。

エラーメッセージが表示されないため、どこから開始するのかを知ることは難しいです。私はそこにDirectShowの専門家がいて、この問題を見ることができることを願っています。私はさっぱりしています。フィルタスタックとウィジェットはfoobar!Pft ... Lol ";)に初期化されます

教えて、ああDirectShow/COM神!

私がGraphStudioを使用していた[UPDATE#2](FYI、それは我々だけで、このシステムに新しいメッセージを追加し、このようなオリジナルを編集する必要がないことを奇妙だ)

パーローマの提案私のグラフのフードの下を見てください。私はまだ私が正確に何を見ているのか分からないことを認めます。私は "テキストレポート"機能を見つけ出し、貴重な情報を表示する場合には、このレポートをここに投稿すると便利だと考えました。

-------------------------------------------------- 
    Filters 
-------------------------------------------------- 
    1. Smart Tee 
    2. MJPEG Decompressor 
    3. SampleGrabber 
    4. NullRenderer 
    5. WebCam 

-------------------------------------------------- 
    Connections 
-------------------------------------------------- 
    1. [Smart Tee]/(Capture) -> [MJPEG Decompressor]/(XForm In) 
     Major: MEDIATYPE_Video 
     Subtype: MEDIASUBTYPE_MJPG 
      bFixedSizeSamples: TRUE 
      bTemporalCompression: FALSE 
      lSampleSize:   921600 
      cbFormat:    88 
     Format: FORMAT_VideoInfo 
     VIDEOINFOHEADER: 
      rcSource:    (0,0,0,0) 
      rcTarget:    (0,0,0,0) 
      dwBitRate:   221184000 
      dwBitErrorRate:  0 
      AvgTimePerFrame:  333333 
     BITMAPINFOHEADER: 
      biSize:    40 
      biWidth:    640 
      biHeight:    480 
      biPlanes:    1 
      biBitCount:   24 
      biCompression:  0x47504A4D 
      biSizeImage:   921600 
      biXPelsPerMeter:  0 
      biYPelsPerMeter:  0 
      biClrUsed:   0 
      biClrImportant:  0 

    2. [MJPEG Decompressor]/(XForm Out) -> [SampleGrabber]/(Input) 
     Major: MEDIATYPE_Video 
     Subtype: MEDIASUBTYPE_RGB24 
      bFixedSizeSamples: TRUE 
      bTemporalCompression: FALSE 
      lSampleSize:   921600 
      cbFormat:    88 
     Format: FORMAT_VideoInfo 
     VIDEOINFOHEADER: 
      rcSource:    (0,0,0,0) 
      rcTarget:    (0,0,0,0) 
      dwBitRate:   221184221 
      dwBitErrorRate:  0 
      AvgTimePerFrame:  333333 
     BITMAPINFOHEADER: 
      biSize:    40 
      biWidth:    640 
      biHeight:    480 
      biPlanes:    1 
      biBitCount:   24 
      biCompression:  0x00000000 
      biSizeImage:   921600 
      biXPelsPerMeter:  0 
      biYPelsPerMeter:  0 
      biClrUsed:   0 
      biClrImportant:  0 

    3. [SampleGrabber]/(Output) -> [NullRenderer]/(In) 
     Major: MEDIATYPE_Video 
     Subtype: MEDIASUBTYPE_RGB24 
      bFixedSizeSamples: TRUE 
      bTemporalCompression: FALSE 
      lSampleSize:   921600 
      cbFormat:    88 
     Format: FORMAT_VideoInfo 
     VIDEOINFOHEADER: 
      rcSource:    (0,0,0,0) 
      rcTarget:    (0,0,0,0) 
      dwBitRate:   221184221 
      dwBitErrorRate:  0 
      AvgTimePerFrame:  333333 
     BITMAPINFOHEADER: 
      biSize:    40 
      biWidth:    640 
      biHeight:    480 
      biPlanes:    1 
      biBitCount:   24 
      biCompression:  0x00000000 
      biSizeImage:   921600 
      biXPelsPerMeter:  0 
      biYPelsPerMeter:  0 
      biClrUsed:   0 
      biClrImportant:  0 

    4. [WebCam]/(Capture) -> [Smart Tee]/(Input) 
     Major: MEDIATYPE_Video 
     Subtype: MEDIASUBTYPE_MJPG 
      bFixedSizeSamples: TRUE 
      bTemporalCompression: FALSE 
      lSampleSize:   921600 
      cbFormat:    88 
     Format: FORMAT_VideoInfo 
     VIDEOINFOHEADER: 
      rcSource:    (0,0,0,0) 
      rcTarget:    (0,0,0,0) 
      dwBitRate:   221184000 
      dwBitErrorRate:  0 
      AvgTimePerFrame:  333333 
     BITMAPINFOHEADER: 
      biSize:    40 
      biWidth:    640 
      biHeight:    480 
      biPlanes:    1 
      biBitCount:   24 
      biCompression:  0x47504A4D 
      biSizeImage:   921600 
      biXPelsPerMeter:  0 
      biYPelsPerMeter:  0 
      biClrUsed:   0 
      biClrImportant:  0 

[更新#3] - 聖なる牛、私は何を始めましたか? なぜ私はこれまでにグーグルグーグルをしているのですか?came across something that supportsローマンのミスマッチした色空間の理論。私はdownloaded the appとすぐに小さすぎるバッファでバグを修正する必要がありました。 - それはかaddFilterでグラフにすでにだが、後にまだその出力端子が接続される前に、あなたは正しい場所にそれを置く

Dump Version: 1.2 

Using device: Microsoft® LifeCam Studio(TM) 
Interface: USB 

Pin Name: Capture 
Pin direction: Output 
Pin category: Capture 

IAMVideoCompression: No 
ISpecifyPropertyPages: Yes 
IMediaSeeking: Yes 
IPinConnection: No 
IPinFlowControl: No 
IAMDroppedFrames: No 
IAMVideoProcAmp: No 
IAMVideoControlCaps: 0 

Major Type Sub Type Format Type FixedSamples Temporal Compression Sample Size Max Input Size Min Output Size Max Output Size Min-Max FPS Video Standard 
Video YUY2 VideoInfo Fixed NotTemporal 614400 640x480 640x480 640x480 7.50-30.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 614400 640x480 640x480 640x480 7.50-30.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 1843200 1280x720 1280x720 1280x720 7.50-10.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 1843200 1280x720 1280x720 1280x720 7.50-10.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 1044480 960x544 960x544 960x544 7.50-20.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 1044480 960x544 960x544 960x544 7.50-20.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 716800 800x448 800x448 800x448 7.50-30.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 716800 800x448 800x448 800x448 7.50-30.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 460800 640x360 640x360 640x360 7.50-30.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 460800 640x360 640x360 640x360 7.50-30.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 203520 424x240 424x240 424x240 7.50-30.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 203520 424x240 424x240 424x240 7.50-30.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 202752 352x288 352x288 352x288 7.50-30.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 202752 352x288 352x288 352x288 7.50-30.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 153600 320x240 320x240 320x240 7.50-30.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 153600 320x240 320x240 320x240 7.50-30.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 960000 800x600 800x600 800x600 7.50-20.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 960000 800x600 800x600 800x600 7.50-20.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 50688 176x144 176x144 176x144 7.50-30.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 50688 176x144 176x144 176x144 7.50-30.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 38400 160x120 160x120 160x120 7.50-30.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 38400 160x120 160x120 160x120 7.50-30.00 {none} 
Video YUY2 VideoInfo Fixed NotTemporal 4147200 1920x1080 1920x1080 1920x1080 5.00-5.00 {none} 
Video YUY2 VideoInfo2 Fixed NotTemporal 4147200 1920x1080 1920x1080 1920x1080 5.00-5.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 921600 640x480 640x480 640x480 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 921600 640x480 640x480 640x480 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 6220800 1920x1080 1920x1080 1920x1080 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 6220800 1920x1080 1920x1080 1920x1080 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 2764800 1280x720 1280x720 1280x720 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 2764800 1280x720 1280x720 1280x720 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 1566720 960x544 960x544 960x544 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 1566720 960x544 960x544 960x544 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 1075200 800x448 800x448 800x448 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 1075200 800x448 800x448 800x448 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 691200 640x360 640x360 640x360 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 691200 640x360 640x360 640x360 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 1440000 800x600 800x600 800x600 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 1440000 800x600 800x600 800x600 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 311040 432x240 432x240 432x240 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 311040 432x240 432x240 432x240 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 304128 352x288 352x288 352x288 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 304128 352x288 352x288 352x288 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 76032 176x144 176x144 176x144 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 76032 176x144 176x144 176x144 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 230400 320x240 320x240 320x240 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 230400 320x240 320x240 320x240 7.50-30.00 {none} 
Video MJPG VideoInfo Fixed NotTemporal 57600 160x120 160x120 160x120 7.50-30.00 {none} 
Video MJPG VideoInfo2 Fixed NotTemporal 57600 160x120 160x120 160x120 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 460800 640x480 640x480 640x480 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 460800 640x480 640x480 640x480 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 1382400 1280x720 1280x720 1280x720 7.50-15.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 1382400 1280x720 1280x720 1280x720 7.50-15.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 783360 960x544 960x544 960x544 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 783360 960x544 960x544 960x544 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 537600 800x448 800x448 800x448 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 537600 800x448 800x448 800x448 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 345600 640x360 640x360 640x360 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 345600 640x360 640x360 640x360 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 152640 424x240 424x240 424x240 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 152640 424x240 424x240 424x240 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 152064 352x288 352x288 352x288 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 152064 352x288 352x288 352x288 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 115200 320x240 320x240 320x240 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 115200 320x240 320x240 320x240 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 720000 800x600 800x600 800x600 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 720000 800x600 800x600 800x600 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 38016 176x144 176x144 176x144 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 38016 176x144 176x144 176x144 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 28800 160x120 160x120 160x120 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 28800 160x120 160x120 160x120 7.50-30.00 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo Fixed NotTemporal 3110400 1920x1080 1920x1080 1920x1080 7.50-7.50 {none} 
Video {3032344D-0000-0010-8000-00AA00389B71} VideoInfo2 Fixed NotTemporal 3110400 1920x1080 1920x1080 1920x1080 7.50-7.50 {none} 

Pin Name: Video Camera Terminal 
Pin direction: Input 
Pin category: {3EBC7959-3310-493B-AA81-C7E132D56F71} 

IAMVideoCompression: No 
ISpecifyPropertyPages: Yes 
IMediaSeeking: No 
IPinConnection: No 
IPinFlowControl: No 
IAMDroppedFrames: No 
IAMVideoProcAmp: No 
IAMVideoControlCaps: 0 

Major Type Sub Type Format Type FixedSamples Temporal Compression Sample Size 

答えて

3

:私は次のレポートを生成することができたことを解決した後。 HRESULTが成功した場合、変更されたフォーマットが予想される可能性がありますが、たとえば、このメディアタイプがダウンストリームフィルタで受け入れられず、開始から交渉を開始するなどの例外がある可能性があります。

ここではConfigureSampleGrabberを表示していませんので、代替のメディアタイプや中間フィルタ(デコーダなど)を試すフィルタグラフを作成するサンプルグラバーによって、このメディアタイプが受け入れられない場合があります。

実際にできることはいくつかあります。右のあなたのSetCaptureFormat後

  • をあなたのコード内でメッセージボックスを追加するだけでinstall DirectShow Spy同じがあなたのために行っているため、自動的に
    1. add the filter graph to ROT、またはその代わりに:あなたがしたい場合がありますトラブルシューティングのために

      1. メッセージボックスはまだ画面に表示されていますが、GraphEdit(GraphStudio)を使用してフィルタグラフを検査し、出力ピンで列挙するメディアタイプを確認してください。 setFormatであなたの成功しHRESULTは基本的にメディアタイプがメディアタイプを強制するには、このリスト

    2. の上に今、あなたが使用することをお勧めしますと仮定して、通常、最初のメディアタイプは、実際の接続のために使用したものになりますIFilterGraph :: ConnectDirectはコンフィグレーションされたピンを使用して、すぐ隣にある下流のピンとあなたの興味のあるメディアタイプです。

    希望します。

  • +0

    元の投稿を更新して、ConfigureSampleGrabber()メソッドを追加しました。その間、私はあなたのリストに追加されたオプションを調べます。返信ありがとうございました –

    +0

    カメラにRGB以外のメディアタイプを設定し、RGBビデオのみを受け付けるようにサンプルグラバーを設定しました。次に、これらの2つのものが一緒に接続されていることを要求します... (a)カメラは、使用するよう指示されたものではなく、別のメディアタイプを試してみるか、(b)別の中間フィルタ再びメディアタイプの変更が行われます。 –

    +1

    ...上記のようにメディアタイプを明示的に設定するか、カメラフィルタの直後に任意のビデオを受け入れる追加のサンプルグラバーを挿入することで、次のすべてのオペレーションにSGの出力ピンが関与し、カメラは関わりません。これにより、SetFormatで選択した元のメディアタイプが保持されます。 –

    0

    スティーブ、SetCaptureFormatでカメラを(モニカから)再構築しないでくださいが、g_pIBaseFilterCamを使用してください。

    関連する問題