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);


相关文章
Python中文件操作的详细使用:open()、os.open()和with open()
Python中文件操作的详细使用:open()、os.open()和with open()
|
2月前
|
监控 Linux C++
perf_event_open学习 —— mmap方式读取
perf_event_open学习 —— mmap方式读取
|
6月前
|
Linux 开发者
Linux文件编程(open read write close函数)
通过这些函数,开发者可以在Linux环境下进行文件的读取、写入和管理。 买CN2云服务器,免备案服务器,高防服务器,就选蓝易云。百度搜索:蓝易云
168 4
|
6月前
|
Linux
内核态的文件操作函数:filp_open、filp_close、vfs_read、vfs_write、set_fs、get_fs
内核态的文件操作函数:filp_open、filp_close、vfs_read、vfs_write、set_fs、get_fs
607 0
|
编解码 人工智能 算法
Rasterio:rasterio.open函数参数和用法解析(以GPM Imerg Early nc转tif为例)
Rasterio:rasterio.open函数参数和用法解析(以GPM Imerg Early nc转tif为例)
654 0
|
Python
open函数和 write函数
open函数和 write函数
111 0
(转)CreateProcess API函数的妙用
从以上的3种应用可以看出,只要知道系统自带的应用程序名,就可以通过设定szAppName和szCmdLine相应的值,来调用相应的程序,来达到自己想要的目的。只要认真挖掘,一定可以发现更多的应用。
|
物联网 Linux 开发者
open_close 函数|学习笔记
快速学习 open_close 函数
open函数: 可以帮助我们获取文件对象 内置函数 open(file, mode='r', buffering=-1, encoding=None, errors=None
open函数: 可以帮助我们获取文件对象 内置函数 open(file, mode='r', buffering=-1, encoding=None, errors=None
|
移动开发 Unix Python
open()函数
函数:open() 1:作用:打开一个文件 2:语法: open(file[, mode[, buffering[, encoding[, errors[, newline[, closefd=True]]]]]]) 3:参数说明: file: 要打开的文件名,需加路径(除非是在当前目录)。
1303 0