我可以从相机获取原始的 h.264 帧。 (它不包含任何网络 header ,例如 rtsp、http)。
它们是 h.264 原始数据。
我将这些数据逐帧推送到队列中。
我在谷歌上搜索了许多 ffmpeg 示例,这些示例将 avformat_open_input() 与本地文件路径或网络路径一起使用。
当我将帧保存到文件并使用 avformat_open_input() 时,我可以看到视频。
我的问题是我想实时解码帧,而不是在将其保存为文件之后。
有没有人对此有任何想法?
谢谢!
最佳答案
你不需要avformat,你需要avcodec。 avformat 用于解析容器和协议(protocol)。 avcodec 用于编码和解码基本流(您已经拥有的)。
AVPacket avpkt; int err, frame_decoded = 0;
AVCodec *codec = avcodec_find_decoder ( AV_CODEC_ID_H264 );
AVCodecContext *codecCtx = avcodec_alloc_context3 ( codec );
avcodec_open2 ( codecCtx, codec, NULL );
// Set avpkt data and size here
err = avcodec_decode_video2 ( codecCtx, avframe, &frame_decoded, &avpkt );
关于ffmpeg - 原始 h.264 比特流解码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32601702/