FFmpeg(sharpFFmpeg)解码 - 受保护的内存错误

时间:2011-08-24 11:49:01

标签: c# ffmpeg h.264 rtp sharpffmpeg

我正在尝试使用调用SharpFFmpeg的FFmpeg库的C#绑定来解码我通过RTP接收的H264视频流。我认为我正确地解封了RTP数据包中的NALU,但我无法解码完整的帧。函数avcodec_decode_video调用抛出AccessViolationException(尝试读取或写入受保护的内存)。
以下是一些代码行:

    //buf is a byte array containing encoded frame
    int success;
    FFmpeg.avcodec_init();
    FFmpeg.avcodec_register_all();
    IntPtr codec = FFmpeg.avcodec_find_decoder(FFmpeg.CodecID.CODEC_ID_H264);
    IntPtr codecCont = FFmpeg.avcodec_alloc_context(); //AVCodecContext
    FFmpeg.avcodec_open(codecCont, codec);
    IntPtr frame = FFmpeg.avcodec_alloc_frame();  //AVFrame
    FFmpeg.avcodec_decode_video(codecCont, frame, ref success, (IntPtr)buf[0], buf.Length); //exception

功能导入如下:

    [DllImport("avcodec.dll", CallingConvention = CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
    public unsafe static extern int avcodec_decode_video(IntPtr pAVCodecContext, IntPtr pAVFrame, ref int got_picture_ptr, IntPtr buf, int buf_size);

不幸的是,我不知道我与codecCont有什么关系。有人写道,需要通过AVCD使用RTSP收到的会话描述来填充此结构。但我不知道哪个字段存储了此记录 我会很高兴得到任何帮助 附:对不起我的英文

1 个答案:

答案 0 :(得分:1)

我检测到(IntPtr)buf [0]指向托管内存。我已按如下方式更新了我的代码:

  IntPtr frame = FFmpeg.avcodec_alloc_frame();
  IntPtr buffer = Marshal.AllocHGlobal(buf.Length + FFmpeg.FF_INPUT_BUFFER_PADDING_SIZE);
  for (int i = 0; i < buf.Length; i++)
      Marshal.StructureToPtr(buf[i], buffer + i, true);
  avcodec_decode_video(codecCont, frame, ref success, buffer, buf.Length + FFmpeg.FF_INPUT_BUFFER_PADDING_SIZE);

现在函数使成功变量等于零,但不抛出异常。