ffmpeg
番茄炒蛋蛋炒饭
这个作者很懒,什么都没留下…
展开
-
avformat_open_input()源码分析
int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options){ AVFormatContext *s = *ps; int i, ret = 0; AVDictio转载 2016-06-02 16:31:38 · 836 阅读 · 0 评论 -
AVFormatContext结构体源码解析
/** * 利用avformat_alloc_context()来create一个 AVFormatContext. */typedef struct AVFormatContext { /** * AVClass最主要的作用就是给结构体(如AVFormatContext等)增加AVOption功能的 *支持。换句话说就原创 2016-06-03 10:17:53 · 2236 阅读 · 0 评论 -
AVInputFormat结构体源码介绍
本文对AVInputFormat结构体源码进行了简单介绍typedef struct AVInputFormat { /** * 格式名列表.也可以分配一个新名字. */ const char *name; /** * 对格式的一个描述性名字,增加可读性. */ const char *long_name; /**原创 2016-06-06 10:18:48 · 1072 阅读 · 0 评论 -
AVDictionary结构体相关源码介绍
本文对AVDictionary结构体部分相关函数代码进行了介绍本文研究分析AVDictionary相关代码 struct AVDictionary { int count; AVDictionaryEntry *elems; };typedef struct AVDictionaryEntry { char *key; char *value;}原创 2016-06-06 09:33:29 · 3614 阅读 · 0 评论 -
Windows下vs2013编译ffmpeg源码
在搜罗网上各种资源以及网上请教各位大声终于在今天晚上编译成功,经测试编译出来的库可正常使用,故可证明编译正确。在此特感谢群里大神的帮助。感谢雷神现将具体步骤记录如下;本人编译用的是vs2013,在win7系统下,对ffmpeg-3.0进行编译,其他版本尚未测试,后续若有问题会补充。1、下载ffmpeg源码,可自行到ffmpeg官网上下载个版本的源码;2、下载安装器MinGW,然后安原创 2016-11-08 20:54:32 · 3832 阅读 · 0 评论