22

残念ながら、DirectShow の DTVViewer サンプルを機能させるために多くの時間を費やしましたが、成功しませんでした。DVBT ネットワークのビデオ フォーマットは H264 で、IntelliConnect の動作はIFilterGraphMpeg2 ビデオ フォーマットの使用を好むことがわかりました。

コードを見たい人はこちら。DirectShow について何も知らない場合は、このコードで私の経験を共有しました。最も可能性の高い問題は、チュートリアルのステップ 5 と 6で説明されています。

  • フィルターを接続するヘルパー関数のコード:

    public static void UnsafeConnectFilters(IFilterGraph2 graph, IBaseFilter source, IBaseFilter dest, Func<AMMediaType, bool> sourceMediaPredicate=null, Func<AMMediaType, bool> destMediaPredicate=null) {
        foreach(IPin spin in IteratePinsByDirection(source, PinDirection.Output)) {
            if(IsConnected(spin))
                continue;
            int fetched;
            AMMediaType[] sourceTypes=GetMajorType(spin, out fetched);
            if(fetched>0) {
                Guid sourceType=sourceTypes[0].majorType;
                try {
                    if(sourceMediaPredicate!=null&&!sourceMediaPredicate(sourceTypes[0]))
                        continue;
                    foreach(IPin pin in IteratePinsByDirection(dest, PinDirection.Input)) {
                        if(IsConnected(pin))
                            continue;
                        var types=GetMajorType(pin, out fetched);
                        try {
                            if(fetched>0) {
                                Guid destType=types[0].majorType;
                                if(destMediaPredicate!=null&&!destMediaPredicate(types[0]))
                                    continue;
                                if(sourceType==destType) {
                                    spin.Connect(pin, types[0]);
                                    return;
                                }
                            }
                            else {
                                spin.Connect(pin, sourceTypes[0]);
                                return;
                            }
                        }
                        finally {
                        }
                    }
                }
                finally {
                }
    
            }
        }
    }
    

誰もが知っていますか:

  1. h264 ピンを ffdshow に接続するにはどうすればよいですか?
  2. グラフで h264 ビデオ デコードを使用するにはどうすればよいですか?

  • チュートリアルと詳細

    1. グラフを作成する

      _graph = (IFilterGraph2)new FilterGraph();
      
    2. DVBTネットワークを使用しています

      IBaseFilter networkProvider = (IBaseFilter) new DVBTNetworkProvider();
      

      ... 602000KHz@8MHz ONID=1 TSID=1 SID=6 に調整する必要があります

      ITuner tuner = (ITuner) networkProvider;
      IDVBTuningSpace tuningspace = (IDVBTuningSpace) new DVBTuningSpace();
      tuningspace.put_UniqueName("DVBT TuningSpace");
      tuningspace.put_FriendlyName("DVBT TuningSpace");
      tuningspace.put__NetworkType(typeof (DVBTNetworkProvider).GUID);
      tuningspace.put_SystemType(DVBSystemType.Terrestrial);
      ITuneRequest request;
      tuningspace.CreateTuneRequest(out request);
      ILocator locator = (ILocator) new DVBTLocator();
      locator.put_CarrierFrequency(602000);
      ((IDVBTLocator) locator).put_Bandwidth(8);
      request.put_Locator(locator);
      IDVBTuneRequest dvbrequest = (IDVBTuneRequest) request;
      dvbrequest.put_TSID(1);
      dvbrequest.put_ONID(1);
      dvbrequest.put_SID(6);
      _graph.AddFilter(networkProvider, "Network Provider");
      
    3. mpeg2 demux を作成して、単一の TV ストリームから個別の EPG/Vidoe/Audio/Text ストリームを取得します

      _mpeg2Demultiplexer = (IBaseFilter) new MPEG2Demultiplexer();
      _graph.AddFilter(_mpeg2Demultiplexer, "MPEG-2 Demultiplexer");
      

      ここで、BDA ソース フィルターのローカル フィルターを検索します。IT9135 BDA Fitler

      DsDevice[] devicesOfCat = 
          DsDevice.GetDevicesOfCat(FilterCategory.BDASourceFiltersCategory);
      
      IBaseFilter iteDeviceFilter;
      
      _graph.AddSourceFilterForMoniker(
          devicesOfCat[0].Mon, null, devicesOfCat[0].Name, out iteDeviceFilter);
      
    4. フィルターを接続します。[DVBT Net. Provider]->[BDA Src Filter]->[MPEG2Demux]-> ...

      UnsafeConnectFilters(_graph, networkProvider, iteDeviceFilter);
      UnsafeConnectFilters(_graph, iteDeviceFilter, _mpeg2Demultiplexer);
      

      epg (番組ガイド データ) を提供するには、2 つのフィルターを demux に接続する必要があります。申し訳ありませんが、具体的に doig が何であるかはわかりません:P。それらはBDATransportInformationRenderersCategoryカテゴリの下にあります。名前でそれらを見つけて、それらをdemuxに接続しようとします

      DsDevice[] dsDevices = 
          DsDevice.GetDevicesOfCat(FilterCategory.BDATransportInformationRenderersCategory);
      
      foreach (DsDevice dsDevice in dsDevices)
      {
          IBaseFilter filter;
      
          _graph.AddSourceFilterForMoniker(
              dsDevice.Mon, null, dsDevice.Name, out filter);
      
          if(dsDevice.Name == "BDA MPEG2 Transport Information Filter")
              _bdaTIF = filter;
          else if(dsDevice.Name == "MPEG-2 Sections and Tables")
          {
              _mpeg2SectionsAndTables = filter;
          }
          UnsafeConnectFilters(_graph, _mpeg2Demultiplexer, filter);
      }
      

      これで demux は と の両方MPEG-2 Sections and Tablesに接続されましたBDA MPEG2 Transport Information Filter

    5. ここで、h264 ビデオ タイプを作成し、出力ピンをこのタイプの demux に追加します。

      AMMediaType h264 = new AMMediaType();
      h264.formatType = FormatType.VideoInfo2;
      h264.subType = MediaSubType.H264;
      h264.majorType = MediaType.Video;
      IPin h264pin;
      ((IMpeg2Demultiplexer) _mpeg2Demultiplexer).CreateOutputPin(h264, "h264", out h264pin);
      

      DirectShow Filters以下では、H264ビデオを処理でき、カテゴリの下にあるffdshow Video Decoderを検索しようとしました(のようにGraphStudio)。

      DsDevice[] directshowfilters = 
          DsDevice.GetDevicesOfCat(FilterCategory.LegacyAmFilterCategory);
      
      IBaseFilter ffdshow = null;
      foreach (DsDevice directshowfilter in directshowfilters)
      {
          if(directshowfilter.Name == "ffdshow Video Decoder")
          {
              _graph.AddSourceFilterForMoniker(
                  directshowfilter.Mon, null, directshowfilter.Name, 
                  out ffdshow);
      
              break;
          }
      }
      
    6. ビデオ出力用のビデオ レンダラーを作成する...

      _videoRenderer = new VideoRendererDefault();
      _graph.AddFilter((IBaseFilter)_videoRenderer, "Video Renderer");
      

      ...そしてオーディオ...

      DsDevice defaultDirectSound = 
          DsDevice.GetDevicesOfCat(FilterCategory.AudioRendererCategory)[0];
      
      _graph.AddSourceFilterForMoniker(
          defaultDirectSound.Mon, null, defaultDirectSound.Name, 
          out _audioRender);
      

      ここでは、demux の h264 出力ピンを ffdshow に接続してみました。このメソッド呼び出しは AccessViolationException で失敗します。これら 2 つ を 接続 する 方法 が わかり ませ ん:(.

      この行にコメントを付けると、実行を開始するグラフになりますが、グラフには切断された ffdshowVideoDecoder フィルターがありますが、何も表示されません。IntelliConnect は、Mpeg2 ビデオ出力をローカルで利用可能なビデオ デコーダに接続しますが、前述のとおり、何も表示されません。

      // UnsafeConnectFilters(_graph, _mpeg2Demultiplexer, ffdshow, type => type.majorType == MediaType.Video && type.subType == MediaSubType.H264);
      
    7. ConnectFiltersdirectshowlib の DTVViewer サンプルから借用

      ConnectFilters();
      

      ここに実際のチューニングを移動しました

      tuner.put_TuningSpace(tuningspace);
      tuner.put_TuneRequest(request);
      
    8. グラフを開始し、サウンドまたはビデオが表示されることを望みます

      int hr = (_graph as IMediaControl).Run();
      DsError.ThrowExceptionForHR(hr);
      
    9. グラフが実行されていることを確認してください...

      FilterState pfs;
      hr = (_graph as IMediaControl).GetState(1000, out pfs);
      DsError.ThrowExceptionForHR(hr);
      

      グラフが実行されていると表示されます。

4

1 に答える 1

1

ffdshowがH264/AVCで有効になっていることを確認しましたか?フィルタのプロパティを開き、[コーデック]セクションでH264 / AVC形式を有効にする必要があります(この形式を優先しないようにするために、Mpeg2デコーダを無効にすることもできます)。

別のこととして、別のMpeg2デマルチプレクサを使用してみることができます。デフォルトの「MPEG-2デマルチプレクサ」は、異なる環境で同じように動作しません。TSをデマックスできるフィルターは他にもたくさんあります。お金を投資できる場合は、MainConceptまたはElecardを使用することをお勧めします。

于 2013-03-19T07:41:36.990 に答える