
Stream Media/H264
文章平均质量分 72
fanbird2008
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
x264 源码分析 (4)
分析版本20061010-2245一、预测模式选择 x264_macroblock_analyse analyse.c1、如何设置了sub16x16模式,且8x8块的成本(analysis.l0.i_cost8x8)小于16x16(analysis.l0.me16x16.cost)块的成本,调用x264_mb_analyse_inter_p16x8和x264_mb_analy转载 2013-04-26 17:55:43 · 1133 阅读 · 0 评论 -
x264 源码分析 (2)
http://blog.youkuaiyun.com/hui523hui523hui523/article/details/8563359X264.c ---->main() --->parse( argc, argv, ¶m, &opt ) ---->//解释参数x264_param_default( &defaults ); //设置默认的值,见下结构体 x264_param_转载 2013-04-26 16:23:08 · 989 阅读 · 0 评论 -
x264 源码分析 (1)
http://www.cnblogs.com/zhangduan/archive/2013/04/02/2995820.htmlx264源代码分析(转载)相关说明:1. 使用版本: x264-cvs-2004-05-112. 这次的分析基本上已经将代码中最难理解的部分做了阐释,对代码的主线也做了剖析,如果这个主线理解了,就容易设置几个区间,进行转载 2013-04-26 16:08:10 · 989 阅读 · 0 评论 -
x264 源码分析 (3)
http://blog.youkuaiyun.com/vblittleboy/article/details/7988038264代码阅读笔记,版本是20060309。一、函数入口main x264.c1、调用x264_param_default 设置默认的编码参数。2、调用Parse 转换 命令行参数3、进入Encode函数,开始编码二、Encode转载 2013-04-26 17:54:23 · 1580 阅读 · 0 评论 -
简述x264几种码率控制方式的实现
http://blog.yikuyiku.com/?p=2029简述x264几种码率控制方式的实现x264的码率控制是基于libavcodec和经验的。这篇文章将尝试说明复杂的码率控制算法背后的理论基础。几点理论:1、固定质量并不等价于PSNR或QP完全恒定。复杂场景或者高速场景中难以辨别的细节会被选择性省略,以节省码率;2、如果运动预测生效转载 2013-04-24 10:15:10 · 891 阅读 · 0 评论 -
x264参数介绍
x264参数介绍(一、帧类型和码率控制)http://blog.yikuyiku.com/?p=2029翻译自:http://mewiki.project357.com/wiki/X264_Settings,水平有限,勿吝指教。第二部分:http://blog.yikuyiku.com/?p=2206输入用1个绝对路径转载 2013-04-24 09:10:41 · 1255 阅读 · 0 评论 -
Video knowledge
http://fellowher.blog.163.com/blog/static/507635152009111992435850/1隔行扫描、帧和场计算机显示器显示的是逐行扫描的图像,而电视是隔行扫描的。电视采用隔行扫描(interlaced scanner)的方法是为了减小带宽。隔行扫描的原理是,将一帧画面分为两场扫描,也就是说将扫描线分为两组交叉进行扫描。电子束先扫描一转载 2013-06-09 18:20:21 · 641 阅读 · 0 评论 -
x264 源码分析 (6)
http://blog.youkuaiyun.com/hevc_cjl/article/details/8264595x264 4x4帧内预测代码解析/**************************************************************************** * 4x4 prediction for intra lum转载 2013-04-27 10:27:07 · 846 阅读 · 0 评论 -
x264 源码分析 (5)
分析代码x264-snapshot-20061010-2245一、某个宏块编码结束后 x264_macroblock_encode encoder.c1、宏块编码结束后,就要将编码生成的内容写到码流中。如果支持CABAC编码,就调用x264_macroblock_write_cabac。如果是CAVLC编码,就调用x264_macroblock_write_cavlc。调用之转载 2013-04-26 17:56:45 · 903 阅读 · 0 评论 -
H264编码参数优化
参考文章:Video Codecs Analysis and Tuning ,文档下载地址:http://www.yuvsoft.com/pdf/x264_parameters_comparison.pdf文章中详细比较了48种不同x264参数组合,比较得到如下6类最优的x264编译参数,我将文章中的x264参数转化为ffmpge命令参数如下:1)fastest presetffmpe转载 2013-04-25 15:50:25 · 2177 阅读 · 0 评论 -
libx264 compile for android
#!/bin/bashX264_PREFIX=/usr/local/andro/x264ANDROID_INC="$ANDROID_NDK_ROOT/platforms/android-14/arch-arm/usr/include"ANDROID_ARMLIB="$ANDROID_NDK_ROOT/platforms/android-14/arch-arm/usr/l原创 2013-04-23 15:28:27 · 843 阅读 · 0 评论 -
ff_h264_find_frame_end
2 - denote 1 zero found1 - denote 2 zeros found0 - denote >= 3 zeros found3 - no this state4 - denote 2 zeros and 1 one found, i.e., 0015 - denote at least 3 zeros and 1 one found, i.e., 000原创 2013-04-07 16:52:12 · 2309 阅读 · 0 评论 -
x264编码器的参数设置
http://blog.youkuaiyun.com/table/article/details/8085115http://x264-settings.wikispaces.com/x264+settingshttp://git.videolan.org/?p=x264.git;a=blob;f=doc/vui.txt洒家对编码也是一知半解,很多参数意义也转载 2013-04-22 18:14:29 · 959 阅读 · 0 评论 -
H264 encode and decode
http://www.chinavideo.org/archiver/?tid-14008.html 关于实时编码解码问题 请教 分享一个编码代码 H264首先分享一个编码代码使用的是X264 core 122版本 [code]H264EncWrapper::~H264EncWrapper(){ Destroy();}int H264E转载 2013-01-09 21:58:19 · 4862 阅读 · 0 评论 -
X264 - Video Pulldown of Parameters
1. excerpt from http://mewiki.project357.com/wiki/X264_SettingspulldownDefault: none Signal soft telecine for your (progressive, constant framerate) input stream using one of a few preset mode转载 2013-06-12 17:24:05 · 1566 阅读 · 0 评论 -
X264 functions notes
http://wmnmtm.blog.163.com/blog/static/38245714201163025957590/函数名称所以位置完成功能void x264_frame_filtercommon\mc.c帧滤波void x264_frame_init_lowrescommon转载 2013-06-13 09:45:12 · 1123 阅读 · 0 评论 -
X264 - x264_t
struct x264_t{ /* encoder parameters */ x264_param_t param; x264_t *thread[X264_THREAD_MAX+1]; x264_t *lookahead_thread[X264_LOOKAHEAD_THREAD_MAX];原创 2013-06-13 16:48:14 · 1465 阅读 · 0 评论 -
X264 - lookahead
1. x264_lookahead_ttypedef struct x264_lookahead_t{ volatile uint8_t b_exit_thread; // notify thread exit uint8_t b_thread_active; // thread in act原创 2013-06-13 15:32:59 · 4030 阅读 · 0 评论 -
X264 - x264_encoder_encode
这个函数前面有一段注释(如下):**************************************************************************** * x264_encoder_encode: * XXX: i_poc : is the poc of the current given picture * i_frame :原创 2013-06-13 16:06:38 · 4603 阅读 · 1 评论 -
Arithmetic coding
http://www.arturocampos.com/ac_arithmetic.html Table of contentsIntroductionArithmetic codingImplementationUnderflowGathering the probabilitiesSaving the probabilitiesAssign rangesPseudo codeDec转载 2013-06-15 15:04:43 · 2032 阅读 · 0 评论 -
Block-based motion estimation and compensation Overview
转载 2013-06-15 09:10:29 · 1409 阅读 · 0 评论 -
x264 encode
http://www.cnblogs.com/chuncn/archive/2011/02/25/1459805.html(1) x264_param_default( x264_param_t *param ) 作用: 对编码器进行参数设定cqm:量化表相关信息 csp:转载 2013-04-25 16:38:14 · 2054 阅读 · 0 评论 -
H264 encode and decode overview
to be continued转载 2013-06-15 22:54:37 · 599 阅读 · 0 评论 -
H264 syntax overview
转载 2013-06-16 09:49:27 · 843 阅读 · 0 评论 -
H264 syntax overview
转载 2013-06-16 10:20:14 · 881 阅读 · 0 评论 -
H264 Changing the reference picture list order
转载 2013-06-16 11:59:36 · 775 阅读 · 0 评论 -
H264 Macroblock coded block pattern
转载 2013-06-16 16:25:39 · 2213 阅读 · 0 评论 -
H264 The Intra PCM mode
转载 2013-06-16 16:31:58 · 1762 阅读 · 0 评论 -
H264 16 × 16 luma prediction modes
转载 2013-06-16 18:25:28 · 799 阅读 · 0 评论 -
H264 Chroma prediction modes
转载 2013-06-16 18:30:00 · 765 阅读 · 0 评论 -
H264 encode and decode overview
转载 2013-06-15 23:09:08 · 760 阅读 · 0 评论 -
H264 encode and decode overview
转载 2013-06-16 09:42:21 · 787 阅读 · 0 评论 -
H264 decode order reference order and display order
转载 2013-06-16 10:35:35 · 1827 阅读 · 0 评论 -
H264 Reference picture lists
转载 2013-06-16 11:07:05 · 942 阅读 · 0 评论 -
H264 Default reference picture list order
转载 2013-06-16 11:19:56 · 880 阅读 · 0 评论 -
H264 Activation of Parameter Sets
转载 2013-06-16 15:52:05 · 779 阅读 · 0 评论 -
H264 slice layer
转载 2013-06-16 15:58:16 · 814 阅读 · 0 评论 -
H264 macroblock prediction syntax overview
转载 2013-06-16 16:42:56 · 619 阅读 · 0 评论 -
H264 residual data syntax overview
转载 2013-06-16 16:44:54 · 1294 阅读 · 0 评论 -
H264 residual CAVLC/CABAC block syntax overview
转载 2013-06-16 16:52:06 · 773 阅读 · 0 评论