参考雷神的博客以及4.0版本FFmpeg的改动 https://blog.csdn.net/leixiaohua1020/article/details/44220151
解码流程:
-
1、av_register_all(现在4.0以上的ffmpeg不需要这个了):先调用avcodec_register_all来注册所有config.h里面开放的编解码器,然后会注册所有的Muxer和Demuxer(也就是封装格式),最后注册所有的Protocol(即协议层的东西)
-
2、avformat_alloc_context:分配初始化一个AVFormatContext结构体
-
3、avformat_open_input:解码时,根据文件路径判断文件格式,决定使用哪个Demuxer,构建好AVStream
-
4、avformat_find_stream_info:读一些包(packets ),然后从中提取初流的信息
-
5、av_find_best_stream来获取索引stream_index,type为AVMEDIA_TYPE_VIDEO,获取到索引后,通过AVFormatContext*->streams[stream_index]->codecpar获取到AVCodecParameters,编解码配置参数