
ffmpeg
文章平均质量分 92
edenliuL
坚持那么几件事,生活就是那么简单美好
展开
-
ffmepg (avformat.h里的说明)
Libavformat(lavf)是用于处理多种媒体容器格式的库。其主要目的有两个:一是多路分配(demuxing)分离一个流媒体文件成多个组件;二是多路复用的反转过程,将提供的数据写进指定容器格式。其也有一个IO模块,支持多种协议访问数据(例如:file,tcp,http等等)。在使用lavf之前,我们需要调用av_register_all()来注册所用已编译的muxers...原创 2014-11-06 16:09:32 · 3519 阅读 · 0 评论 -
ffmpeg avformat_open_input详解
avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options) 首先声明几个变量, AVFormatContext* s=*ps ; AVDictionary* tmp=NULL原创 2014-03-01 10:57:53 · 2346 阅读 · 0 评论 -
ffmpeg set_number函数
static int set_number(void *obj, const char *name, double num, int den, int64_t intnum, int search_flags)原创 2014-03-01 11:01:08 · 1017 阅读 · 0 评论 -
winGW下编译ffmpeg遇到的问题(转载)
在编译ffmpeg的时候遇到了类似问题6提到的错误,在ffmpeg make install 中报“unable to rename '..../avformat-52.93.0.dll';reason:File exists”后来搜索了下,找到这篇文章,感觉错误挺全的,就转载过来了转载自:http://blog.youkuaiyun.com/dancing_night/art转载 2016-12-12 00:00:09 · 1918 阅读 · 0 评论 -
在VS2013编译FFmpeg遇到的问题
1.inttype.h问题之前看说需要使用inttype.h,然后就从minGW的include文件夹中将其拷贝出来,放到自己的include下,但是运行报很多错误,后来网上看了下说需要将inttype.h的内容改下,如下:#pragma once#if defined(WIN32) && !defined(__MINGW32__) && !defined(__CY原创 2016-12-13 00:27:34 · 669 阅读 · 0 评论 -
uint8_t / uint16_t / uint32_t /uint64_t 的简单介绍
uint8_t / uint16_t / uint32_t /uint64_t 的简单介绍在nesc的代码中,你会看到很多你不认识的数据类型,比如uint8_t等。咋一看,好像是个新的数据类型,不过C语言(nesc是C的扩展)里面好像没有这种数据类型啊!怎么又是u又是_t的?很多人有这样的疑问。论坛上就有人问:以*_t结尾的类型是不是都是long型的?在baidu上查一下,才找到答案,这时转载 2014-02-21 11:01:02 · 759 阅读 · 0 评论