avio_open2函数分析

简介: avio_open2函数分析
int avio_open(AVIOContext **s, const char *url, int flags);
int avio_open2(AVIOContext **s, const char *url, int flags,
               const AVIOInterruptCB *int_cb, AVDictionary **options);


从源码中来看avio_open就是调用avio_open2()来实现的,只是把avio_open2()的最后两个参数置NULL,

s:会创建一个AVIOContext对象。

url:输入输出的地址,可以是文件地址,也可以是网络地址,比如udp://,rtmp://等。

flags:打开地址的方式,有三个宏。

AVIO_FLAG_READ:只读。

AVIO_FLAG_WRITE:只写。

AVIO_FLAG_READ_WRITE:读写。

int_cb

协议级的中断回调。

options

每个协议的私有选项,比如udp可控制包大小等。

函数会根据URL路径来识别是哪种协议,其实文件在ffmpeg中也是协议,是file://…,但是这不符合我们书写的习惯,如果识别出是文件的话,函数会自动帮我们在前面补充file://…,而不用我们自己写。


if (!(ofmt->flags & AVFMT_NOFILE)) {//  若不是自动打开文件的模式,则需要此手动操作
    AVDictionary*dic = NULL;
    av_dict_set(&dic, "pkt_size", "1316", 0); //Maximum UDP packet size
    //av_dict_set(&dic, "fifo_size", "18800", 0);
    //av_dict_set(&dic, "buffer_size", "1000000", 0);
    //av_dict_set(&dic, "bitrate", "11000000", 0);
    //av_dict_set(&dic, "buffer_size", "1000000", 0);//1316
    av_dict_set(&dic, "reuse", "1", 0);
    ret = avio_open2(&ofmt_ctx->pb, out_filename, AVIO_FLAG_WRITE, NULL, &dic);
  }


libavdevice库是libavformat库的一个补充。它提供各类不一样的平台相关的复用器和解复用器,例如grabbing device(gdigrab Windows下录屏接口),音频捕获和回放等,libavdevice中的复用器大部分是AVFMT_NOFILE类型,AVFMT_NOFILE类型的复用器,不须要调用avio_open和avio_close对I/O进行操做,AVFMT_NOFILE类型的复用器都有本身的I/O函数。

不单单libavdevice中的大部分是AVFMT_NOFILE类型,libavformat也存在很多的解复用器。


关于AVFMT_NOFILE,参考:[AVFMT_NOFILE解析](https://www.shangmayuan.com/a/027018e619644bbc8782f7e9.html)


 


/**


  • Create and initialize a AVIOContext for accessing the
  • resource indicated by url.
  • @note When the resource indicated by url has been opened in
  • read+write mode, the AVIOContext can be used only for writing.
  • @param s Used to return the pointer to the created AVIOContext.
  • In case of failure the pointed to value is set to NULL.
  • @param url resource to access
  • @param flags flags which control how the resource indicated by url
  • is to be opened
  • @return >= 0 in case of success, a negative value corresponding to an
  • AVERROR code in case of failure

     */

     int avio_open(AVIOContext **s, const char *url, int flags);


/**


  • Create and initialize a AVIOContext for accessing the
  • resource indicated by url.
  • @note When the resource indicated by url has been opened in
  • read+write mode, the AVIOContext can be used only for writing.
  • @param s Used to return the pointer to the created AVIOContext.
  • In case of failure the pointed to value is set to NULL.
  • @param url resource to access
  • @param flags flags which control how the resource indicated by url
  • is to be opened
  • @param int_cb an interrupt callback to be used at the protocols level
  • @param options A dictionary filled with protocol-private options. On return
  • this parameter will be destroyed and replaced with a dict containing options
  • that were not found. May be NULL.
  • @return >= 0 in case of success, a negative value corresponding to an
  • AVERROR code in case of failure
  • */

     int avio_open2(AVIOContext **s, const char *url, int flags,

     const AVIOInterruptCB *int_cb, AVDictionary **options);


相关文章
|
4月前
|
Linux
perf_event_open学习 —— 缓冲区管理
perf_event_open学习 —— 缓冲区管理
|
4月前
|
监控 Linux C++
perf_event_open学习 —— mmap方式读取
perf_event_open学习 —— mmap方式读取
|
8月前
|
Linux 开发者
Linux文件编程(open read write close函数)
通过这些函数,开发者可以在Linux环境下进行文件的读取、写入和管理。 买CN2云服务器,免备案服务器,高防服务器,就选蓝易云。百度搜索:蓝易云
180 4
应用层open->软中断指令->底层驱动xxx_open(上)
应用层open->软中断指令->底层驱动xxx_open
110 0
|
8月前
|
安全 Java 程序员
“系统调用”究竟是不是个函数?
- **系统调用**和普通**函数**有何区别? - 什么是**内核态** 和 **用户态**? - 操作系统如何让CPU切换状态? - 内中断、外中断、软中断、硬中断是什么意思? - 库函数和系统调
110 0
应用层open->软中断指令->底层驱动xxx_open(下)
应用层open->软中断指令->底层驱动xxx_open(下)
82 0
|
Python
open函数和 write函数
open函数和 write函数
120 0
|
Linux
Linux系统调用二、open()函数与close()函数介绍
Linux系统调用二、open()函数与close()函数介绍
393 0
Linux系统调用二、open()函数与close()函数介绍
|
物联网 Linux 开发者
open_close 函数|学习笔记
快速学习 open_close 函数
|
移动开发 Unix Python
open()函数
函数:open() 1:作用:打开一个文件 2:语法: open(file[, mode[, buffering[, encoding[, errors[, newline[, closefd=True]]]]]]) 3:参数说明: file: 要打开的文件名,需加路径(除非是在当前目录)。
1309 0

热门文章

最新文章