图解FFMPEG打开媒体的函数avformat_open_input

来源:互联网 发布:国产好的指纹锁 知乎 编辑:程序博客网 时间:2024/03/29 08:46

FFMPEG打开媒体的的过程开始于avformat_open_input,因此该函数的重要性不可忽视。

在该函数中,FFMPEG完成了:

输入输出结构体AVIOContext的初始化;

输入数据的协议(例如RTMP,或者file)的识别(通过一套评分机制):1判断文件名的后缀 2读取文件头的数据进行比对;

使用获得最高分的文件协议对应的URLProtocol,通过函数指针的方式,与FFMPEG连接(非专业用词);

剩下的就是调用该URLProtocol的函数进行open,read等操作了

以下是通过eclipse+MinGW调试FFMPEG源代码获得的函数调用关系图

可见最终都调用了URLProtocol结构体中的函数指针。

URLProtocol结构如下,是一大堆函数指针的集合(avio.h文件)

    typedef struct URLProtocol {          const char *name;          int (*url_open)(URLContext *h, const char *url, int flags);          int (*url_read)(URLContext *h, unsigned char *buf, int size);          int (*url_write)(URLContext *h, const unsigned char *buf, int size);          int64_t (*url_seek)(URLContext *h, int64_t pos, int whence);          int (*url_close)(URLContext *h);          struct URLProtocol *next;          int (*url_read_pause)(URLContext *h, int pause);          int64_t (*url_read_seek)(URLContext *h, int stream_index,                                   int64_t timestamp, int flags);          int (*url_get_file_handle)(URLContext *h);          int priv_data_size;          const AVClass *priv_data_class;          int flags;          int (*url_check)(URLContext *h, int mask);      } URLProtocol;  

URLProtocol功能就是完成各种输入协议的读写等操作

但输入协议种类繁多,它是怎样做到“大一统”的呢?

 

原来,每个具体的输入协议都有自己对应的URLProtocol。

比如file协议(FFMPEG把文件也当做一种特殊的协议)(*file.c文件)

    URLProtocol ff_pipe_protocol = {          .name                = "pipe",          .url_open            = pipe_open,          .url_read            = file_read,          .url_write           = file_write,          .url_get_file_handle = file_get_handle,          .url_check           = file_check,      };  

或者rtmp协议(此处使用了librtmp)(librtmp.c文件)

    URLProtocol ff_rtmp_protocol = {          .name                = "rtmp",          .url_open            = rtmp_open,          .url_read            = rtmp_read,          .url_write           = rtmp_write,          .url_close           = rtmp_close,          .url_read_pause      = rtmp_read_pause,          .url_read_seek       = rtmp_read_seek,          .url_get_file_handle = rtmp_get_file_handle,          .priv_data_size      = sizeof(RTMP),          .flags               = URL_PROTOCOL_FLAG_NETWORK,      };  

可见它们把各自的函数指针都赋值给了URLProtocol结构体的函数指针

因此avformat_open_input只需调用url_open,url_read这些函数就可以完成各种具体输入协议的open,read等操作了



0 0