图解FFMPEG打开媒体的函数avformat_open_input

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
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值