You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
986 B
16 lines
986 B
3 years ago
|
# 前言
|
||
|
FFmpeg是一个跨平台的多媒体库,也是目前音视频领域应用最广泛的库。包括libavcodec、libavformat、libavutil、</br>
|
||
|
libavdevice、libavfilter、libswscale、libswresample、libpostproc等模块。其中avcodec用于编解码,</br>
|
||
|
avformat用于解封装,avutil是提供工具类,avdevice用于各平台的设备接入,avfilter提供滤镜操作,</br>
|
||
|
swscale提供图像缩放与像素格式转换,swresample提供音频重采样,postproc提供高级处理。</br>
|
||
|
在这里,按照每个模块功能进行分析,如有错漏不当之处,敬请指出。</br>
|
||
|
|
||
|
### 1:AVIOContext、IO模型与协议
|
||
|
[AVIOContext结构体](https://blog.csdn.net/u011686167/article/details/121452343)
|
||
|
|
||
|
### 2:AVFormatContext连接FFmpeg的桥梁
|
||
|
[AVFormatContext](https://blog.csdn.net/u011686167/article/details/121483584)
|
||
|
|
||
|
### 3:AVCodecContext编解码器上下文
|
||
|
[AVCodecContext](https://blog.csdn.net/u011686167/article/details/121506335)
|