22

不幸的是,我花了很多时间试图让 DirectShow 的 DTVViewer 示例正常工作,但没有成功。DVBT 网络的视频格式是 H264,我发现 IntelliConnect 行为IFilterGraph更喜欢使用 Mpeg2 视频格式。

对于那些想要查看代码的人,这里是。如果您对 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 解复用器以从单个电视流中获取单独的 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(节目指南数据)。对不起,我不知道他们具体是什么 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 TablesBDA 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);
      

      下面,我尝试搜索能够处理 H264 视频并且位于DirectShow Filters类别下的 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。我不确定如何将这两者连接在一起:(

      注释此行将导致图表开始运行,尽管图表中有一个断开连接的 ffdshowVideoDecoder 过滤器,但不会显示任何内容。IntelliConnect 将 Mpeg2 视频输出连接到本地可用的视频解码器,正如我所说,它不会显示任何内容。

      // UnsafeConnectFilters(_graph, _mpeg2Demultiplexer, ffdshow, type => type.majorType == MediaType.Video && type.subType == MediaSubType.H264);
      
    7. ConnectFilters借自 directshowlib 的 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 Demultiplexer”在不同的环境中表现不同。还有许多其他过滤器可以解复用 TS,如果您可以投资一些钱,我建议使用 MainConcept 或 Elecard。

于 2013-03-19T07:41:36.990 回答