作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用调用 SharpFFmpeg 的 FFmpeg 库的 C# 绑定(bind)来解码我通过 RTP 接收的 H264 视频流。我想我正确地从 RTP 数据包中解封装了 NALU,但我无法解码完整的帧。函数 avcodec_decode_video 调用会引发 AccessViolationException(试图读取或写入 protected 内存)。
以下是一些代码行:
//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);
最佳答案
我检测到 (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);
关于c# - FFmpeg (sharpFFmpeg) 解码 - protected 内存错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7174912/
我正在尝试使用调用 SharpFFmpeg 的 FFmpeg 库的 C# 绑定(bind)来解码我通过 RTP 接收的 H264 视频流。我想我正确地从 RTP 数据包中解封装了 NALU,但我无法解
我是一名优秀的程序员,十分优秀!