发布时间:2013-09-28 16:46:56
有时需要从ffmpeg中提取出YUV数据用作预览,另存什么的。ffmpeg是先解码成YUV, 再以这个YUV作为输入进行编码,所以YUV数据有两种: 解码后的YUV数据, 以及 编码重建的YUV数据。下面分别讲两个YUV数据从哪儿?以及如何取?1. 解码后的YUV数据在ffmpeg/libavcodec/utils_codec.c的avcodec_decode_video2(.........【阅读全文】
发布时间:2013-09-28 16:46:43
本文的参考和借鉴:http://dranger.com/ffmpeg/tutorial01.html(文章在开篇就声明,它有些过时了)。所以本文分析的FFmpeg源码为Version0.8.2我们在网络上看到的“视频”通常都是一种三层数据封装结构: 编码图像和声音形成的裸视频流(如H.264, VP8, 等)和音频流(mp3,.........【阅读全文】
发布时间:2013-09-28 16:46:20
Dynamic Adaptive Streaming over HTTP Dataset Stefan Lederer, Christopher Müller, and Christian TimmererAlpen-Adria-Universit?t KlagenfurtUniversit?tsstra?e 65-679020 Klagenfurt am W?rthersee, Austria+43 (0) 463 2700 3600{firstname.lastname}@itec.uni-klu.ac.atABSTRACT .........【阅读全文】
发布时间:2013-09-28 16:45:40
Adaptive bitrate streamingFrom Wikipedia, the free encyclopediaAdaptive bitrate streaming is a technique used in streaming multimedia over computer networks.While in the past most video streaming technologiesutilized streaming protocols such RTP .........【阅读全文】
发布时间:2013-09-28 16:45:05
前言代码抽取方法:1. 跟踪并复制 跟踪要抽取代码的主要流程, 将主流程相关的,函数层次不是很深的代码原样复制到新的工程中; 函数调用层次很复杂的函数可以先只留下函数接口,将函数体的内容全部注释掉。2. 编译 编译新的工程,一个一个解决编译提示的警告和出错信息。3. 调试.........【阅读全文】