我从你的问题中了解到,你有 AVPackets 并且想要播放视频。实际上这是两个问题;1. 解码您的数据包,以及 2. 播放视频。
要使用 FFmpeg 解码数据包,您应该查看AVPacket、AVCodecContext和avcodec_decode_video2的文档以获得一些想法;一般的想法是你想做一些事情(只是在浏览器中写了这个,带着一粒盐):
//the context, set this appropriately based on your video. See the above links for the documentation
AVCodecContext *decoder_context;
std::vector<AVPacket> packets; //assume this has your packets
...
AVFrame *decoded_frame = av_frame_alloc();
int ret = -1;
int got_frame = 0;
for(AVPacket packet : packets)
{
avcodec_get_frame_defaults(frame);
ret = avcodec_decode_video2(decoder_context, decoded_frame, &got_frame, &packet);
if (ret <= 0) {
//had an error decoding the current packet or couldn't decode the packet
break;
}
if(got_frame)
{
//send to whatever video player queue you're using/do whatever with the frame
...
}
got_frame = 0;
av_free_packet(&packet);
}
这是一个非常粗略的草图,但这是您解码 AVPackets 问题的一般思路。至于播放视频的问题,您有很多选择,这可能更多地取决于您的客户。您要问的是一个相当大的问题,我建议您熟悉 FFmpeg 文档和FFmpeg 站点上提供的示例。希望这是有道理的