只是心态,抓住机会。
全部博文(1384)
发布时间:2012-12-31 17:36:47
#define EINVAL 22 /* Invalid argument *///这个文件为啥是在utils.c中呢?int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options){ AVFormatContext *s = *ps; int ret = 0; AVDictionary *tmp = NULL; &nb......【阅读全文】
发布时间:2012-12-27 18:18:33
types { text/html html htm shtml; text/css css; text/xml &n......【阅读全文】
发布时间:2012-12-26 14:02:05
12-26 05:55:14.242: W/ActivityThread(407): Application com.nmbb.oplayer is waiting for the debugger on port 8100...12-26 05:55:14.262: I/System.out(407): Sending WAIT chunk12-26 05:55:15.242: I/dalvikvm(407): Debugger is active12-26 05:55:15.273: I/System.out(407): Debugger has connected12-26 05:55:......【阅读全文】
发布时间:2012-12-24 16:38:13
利用FFmpeg和管道(pipe),解决非URL和非文件的输入形式、http://my.oschina.net/michaelyuanyuan/blog/662750人收藏此文章, 我要收藏发表于5个月前(2012-07-10 11:41) , 已有290次阅读 ,共1个评论利用FFmpeg和管道(pipe),解决非URL和非文件的输入形式问题描述:利用FFmpeg来解码,但是输入方式不是URL,也不是文件系统中的文件,而是内存中的buffer。解决此问题有两个思路,首先明确一点,libavformat中有几个类,有URLProtocol(虽然叫URLxxx,但是不仅仅是URL的,它......【阅读全文】
发布时间:2012-12-21 17:11:26
cookies和session的区别,forward和redirecthttp://hi.baidu.com/ma_cun/item/30cfbe3076a0d794f5e4add21.session和cookies的区别 session:服务器端,只有浏览器不关闭,就可以共享一个session。session是服务器端自动写的,不需要客户端写。只用request获取session。 cookies:客户端,......【阅读全文】