- 1、本文档共9页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
ffmpeg的一些函数
本文对在使用ffmpeg进行音视频编解码时使用到的一些函数做一个简单介绍??? 头文件引入方法:externC{#includelibavcodec/avcodec.h#includelibavformat/avformat.h#includelibavutil/avutil.h#includelibavutil/mem.h#includelibavutil/fifo.h#includelibswscale/swscale.h};?1 avcodec_init()/** * Initialize libavcodec. * If called more than once, does nothing. * * @warning This function must be called before any other libavcodec * function. * * @warning This function is not thread-safe. */voidavcodec_init(void);// 初始化libavcodec,一般最先调用该函数//?引入头文件:?#includelibavcodec/avcodec.h// 实现在: \ffmpeg\libavcodec\utils.c// 该函数必须在调用libavcodec里的其它函数前调用,一般在程序启动或模块初始化时调用,如果你调用了多次也无所谓,因为后面的调用不会做任何事情.从函数的实现里你可以发现,代码中对多次调用进行了控制.// 该函数是非线程安全的?2 av_register_all()/** * Initialize libavformat and register all the muxers, demuxers and * protocols. If you do not call this function, then you can select * exactly which formats you want to support. * * @see av_register_input_format() * @see av_register_output_format() * @see av_register_protocol() */voidav_register_all(void);// 初始化 libavformat和注册所有的muxers、demuxers和protocols,// 一般在调用avcodec_init后调用该方法// 引入头文件:#includelibavformat/avformat.h// 实现在:\ffmpeg\libavformat\allformats.c// 其中会调用avcodec_register_all()注册多种音视频格式的编解码器,并注册各种文件的编解复用器// 当然,你也可以不调用该函数,而通过选择调用特定的方法来提供支持?3 avformat_alloc_context()/** * Allocate an AVFormatContext. * avformat_free_context() can be used to free the context and everything * allocated by the framework within it. */AVFormatContext *avformat_alloc_context(void);// 分配一个AVFormatContext结构// 引入头文件:#includelibavformat/avformat.h// 实现在:\ffmpeg\libavformat\options.c// 其中负责申请一个AVFormatContext结构的内存,并进行简单初始化// avformat_free_context()可以用来释放该结构里的所有东西以及该结构本身// 也是就说使用 avformat_alloc_context()分配的结构,需要使用avformat_free_context()来释放// 有些版本中函数名可能为: av_alloc_format_context();?4 avformat_free_context()/** * Free an AVFormatContext and all its streams. * @param s context to free */voidavformat_free_context(AVFormatContext *s);// 释放一个AVFormatContext结构// 引入头文件:#includelibavformat/avformat.h// 实现在:\ffmp
您可能关注的文档
最近下载
- 小学、初中、高中、大学英语词汇合集.pdf
- 《宿曜经》汉译版本之汉化痕迹考证.pdf
- 《珍爱生命-远离毒品》PPT【精品课件】.pptx
- 标准图集-16G519-多高层民用钢节点详图.pdf VIP
- FG5-X绝对重力仪-劳雷LAUREL.PDF
- 湖北省武汉市2023-2024学年高二上学期期中考试英语试卷(含答案).docx VIP
- 第7课 难忘的岁月(课件)(共26张ppt)赣美版初中美术八年级上册.pptx VIP
- 第一节-金属的化学性质公开课一等奖优质课大赛微课获奖课件.pptx
- 儿童绘本故事《龟兔赛跑》PPT课件(可编辑带动画).ppt
- 新北师大版五年级上册数学第四单元《多边形的面积》知识点总结(全).docx VIP
文档评论(0)