av_register_all分析

简介: av_register_all分析

 

av_register_all


首先检测是不是调用过了,如果调用了,那么直接返回。 初始化所有的封装和解封装器(或称为复用器和解复用器),比如flv mp4 mp3

mov,但是在这个函数源码开始的时候会先调用avcodec_register_all(…)来注册所有的编码和解码器。那么什么是注册呢,就是把av_register_all中代码提到的也就是ffmpeg支持的所有封装格式加入到链表中去,等后面需要的时候再去这个链表中查找使用。


avcodec_register_all


首先检测是否已经注册,如果注册,则返回。

初始化所有的编解码器,如h264,h265等,解码和编码器也维护一个链表用于存储所有支持的编解码器。


avformat_network_init


初始化所有的网络库,比如rtmp,rtsp等。



相关文章
|
2月前
|
API
FFmpeg中AVPacket、AVFrame结构的基本使用
FFmpeg中AVPacket和AVFrame结构的内存分配、释放和引用计数处理,以及如何避免内存泄漏。
61 3
ffmpeg编码报错:more samples than frame size (avcodec_encode_audio2)
ffmpeg编码报错:more samples than frame size (avcodec_encode_audio2)
136 0
ffmpeg编码报错:more samples than frame size (avcodec_encode_audio2)
nobuffer与av_read_frame的关系
nobuffer与av_read_frame的关系
92 0
|
索引
av_find_best_stream
av_find_best_stream
151 0
av_find_best_stream
AVPacket结构体内几个变量分析
AVPacket结构体内几个变量分析
61 0
AVPacket结构体内几个变量分析
|
编解码
av_read_frame返回值为-5 Input/output error
av_read_frame返回值为-5 Input/output error
170 0
|
存储 编解码 Android开发
【Android FFMPEG 开发】FFMPEG 读取音视频流中的数据到 AVPacket ( 初始化 AVPacket 数据 | 读取 AVPacket )
【Android FFMPEG 开发】FFMPEG 读取音视频流中的数据到 AVPacket ( 初始化 AVPacket 数据 | 读取 AVPacket )
256 0