X264学习笔记(1)

X264编码流程

参数的初始化

1.opt,param根据输入的参数和标准的规定,进行初始化设置。

Opt的说明如下:

Opt->hin用于给出读入的yuv文件的指针地址

Opt->hout给出了输出的文件的指针地址

Opt->i_seek给出了起始编码帧的帧数,是由编码时的seek命令参数决定的

如:

X264 -seek 10 -o foreman.cif test.264 352x288

i_seek 设为10,表示起始编码的帧为元序列的第十帧

Opt->qpfile按照说明,为qp值文件输入进行定义这种方式的接口,可以通过读入标准的文件格式,对编码时的qp值进行定义。

Param的说明:

typedef struct

{

/* CPU flags */

unsigned int cpu;

int         i_threads;  /* divide each frame into multiple slices, encode in parallel */线程数,用于多线程并行编码

/* Video Properties */

int         i_width;                               图像的宽度

int         i_height;                               图像的高度

int         i_csp;  /* CSP of encoded bitstream, only i420 supported */    色彩空间的设置

int         i_level_idc;             level 值的设置

int         i_frame_total; /* number of frames to encode if known, else 0 */  总共需要编码的帧数,由--frames设置

Vui参数集

struct

{

/* they will be reduced to be 0 < x <= 65535 and prime */

int         i_sar_height;

int         i_sar_width;

int         i_overscan;    /* 0=undef, 1=no overscan, 2=overscan */

/* see h264 annex E for the values of the following */

int         i_vidformat;

int         b_fullrange;

int         i_colorprim;

int         i_transfer;

int         i_colmatrix;

int         i_chroma_loc;    /* both top & bottom */

} vui;

int         i_fps_num;

int         i_fps_den;

这两个参数是由fps帧率确定的,赋值的过程见下:

{

float fps;

if( sscanf( value, "%d/%d", &p->i_fps_num, &p->i_fps_den ) == 2 )

;

else if( sscanf( value, "%f", &fps ) )

{

p->i_fps_num = (int)(fps * 1000 + .5);

p->i_fps_den = 1000;

}

else

b_error = 1;

}

Value的值就是fps。

/* Bitstream parameters */

int         i_frame_reference;  /* Maximum number of reference frames */

int         i_keyint_max;       /* Force an IDR keyframe at this interval */

int         i_keyint_min;       /* Scenecuts closer together than this are coded as I, not IDR. */

int         i_scenecut_threshold; /* how aggressively to insert extra I frames */

int         i_bframe;   /* how many b-frame between 2 references pictures */

int         b_bframe_adaptive;

int         i_bframe_bias;

int         b_bframe_pyramid;   /* Keep some B-frames as references */

去块滤波器需要的参数

int         b_deblocking_filter;

int         i_deblocking_filter_alphac0;    /* [-6, 6] -6 light filter, 6 strong */

int         i_deblocking_filter_beta;       /* [-6, 6]  idem */

熵编码

int         b_cabac;

int         i_cabac_init_idc;

量化

int         i_cqm_preset;

char        *psz_cqm_file;      /* JM format */

uint8_t     cqm_4iy[16];        /* used only if i_cqm_preset == X264_CQM_CUSTOM */

uint8_t     cqm_4ic[16];

uint8_t     cqm_4py[16];

uint8_t     cqm_4pc[16];

uint8_t     cqm_8iy[64];

uint8_t     cqm_8py[64];

/* Log */

void        (*pf_log)( void *, int i_level, const char *psz, va_list );

void        *p_log_private;

int         i_log_level;

int         b_visualize;

/* Encoder analyser parameters */

struct

{

unsigned int intra;     /* intra partitions */

unsigned int inter;     /* inter partitions */

int          b_transform_8x8;

int          b_weighted_bipred; /* implicit weighting for B-frames */

int          i_direct_mv_pred; /* spatial vs temporal mv prediction */

int          i_chroma_qp_offset;

int          i_me_method; /* motion estimation algorithm to use (X264_ME_*) */

int          i_me_range; /* integer pixel motion estimation search range (from predicted mv) */

int          i_mv_range; /* maximum length of a mv (in pixels) */

int          i_subpel_refine; /* subpixel motion estimation quality */

int          b_bidir_me; /* jointly optimize both MVs in B-frames */

int          b_chroma_me; /* chroma ME for subpel and mode decision in P-frames */

int          b_bframe_rdo; /* RD based mode decision for B-frames */

int          b_mixed_references; /* allow each mb partition in P-frames to have it's own reference number */

int          i_trellis;  /* trellis RD quantization */

int          b_fast_pskip; /* early SKIP detection on P-frames */

int          b_dct_decimate; /* transform coefficient thresholding on P-frames */

int          i_noise_reduction; /* adaptive pseudo-deadzone */

int          b_psnr;    /* Do we compute PSNR stats (save a few % of cpu) */

} analyse;

/* Rate control parameters */

struct

{

int         i_rc_method;    /* X264_RC_* */

int         i_qp_constant;  /* 0-51 */

int         i_qp_min;       /* min allowed QP value */

int         i_qp_max;       /* max allowed QP value */

int         i_qp_step;      /* max QP step between frames */

int         i_bitrate;              比特率 --bitrate控制

int         i_rf_constant;  /* 1pass VBR, nominal QP */

float       f_rate_tolerance;

int         i_vbv_max_bitrate;

int         i_vbv_buffer_size;

float       f_vbv_buffer_init;

float       f_ip_factor;

float       f_pb_factor;

/* 2pass */

int         b_stat_write;   /* Enable stat writing in psz_stat_out */

char        *psz_stat_out;

int         b_stat_read;    /* Read stat from psz_stat_in and use it */

char        *psz_stat_in;

/* 2pass params (same as ffmpeg ones) */

char        *psz_rc_eq;     /* 2 pass rate control equation */

float       f_qcompress;    /* 0.0 => cbr, 1.0 => constant qp */

float       f_qblur;        /* temporally blur quants */

float       f_complexity_blur; /* temporally blur complexity */

x264_zone_t *zones;         /* ratecontrol overrides */

int         i_zones;        /* sumber of zone_t's */

char        *psz_zones;     /* alternate method of specifying zones */

} rc;

/* Muxing parameters */

int b_aud;                  /* generate access unit delimiters */

int b_repeat_headers;       /* put SPS/PPS before each keyframe */

int i_sps_id;               /* SPS and PPS id number */

} x264_param_t;

X264学习笔记(1)相关推荐

  1. 学习笔记(一)(x264编码流程)

    学习笔记(一)(x264编码流程) 作者 张士辉 11月 2, 2007 <script type=text/javascript></script> <script s ...

  2. 我的Android进阶之旅------gt;Android中编解码学习笔记

    编解码学习笔记(一):基本概念 媒体业务是网络的主要业务之间.尤其移动互联网业务的兴起,在运营商和应用开发商中,媒体业务份量极重,其中媒体的编解码服务涉及需求分析.应用开发.释放license收费等等 ...

  3. FFmpeg基础到工程-多路H265监控录放开发学习笔记

    多路H265监控录放开发学习笔记 课程涉及:FFmpeg,WebRTC,SRS,Nginx,Darwin,Live555,等.包括:音视频.流媒体.直播.Android.视频监控28181.等. 具体 ...

  4. 编解码学习笔记(基础)

    编解码学习笔记(一):基本概念 媒体业务是网络的主要业务之间.尤其移动互联网业务的兴起,在运营商和应用开发商中,媒体业务份量极重,其中媒体的编解码服务涉及需求分析.应用开发.释放license收费等等 ...

  5. NDK学习笔记:RtmpPusher之利用rtmpdump推h264/aac码流

    NDK学习笔记:RtmpPusher之利用rtmpdump推h264/aac码流 本篇将是 RtmpPusher 的最后一篇.在之前的3篇文章里,我们已经把原生的视频YUV格式编码成h264,把音频的 ...

  6. PyTorch 学习笔记(六):PyTorch hook 和关于 PyTorch backward 过程的理解 call

    您的位置 首页 PyTorch 学习笔记系列 PyTorch 学习笔记(六):PyTorch hook 和关于 PyTorch backward 过程的理解 发布: 2017年8月4日 7,195阅读 ...

  7. 容器云原生DevOps学习笔记——第三期:从零搭建CI/CD系统标准化交付流程

    暑期实习期间,所在的技术中台-效能研发团队规划设计并结合公司开源协同实现符合DevOps理念的研发工具平台,实现研发过程自动化.标准化: 实习期间对DevOps的理解一直懵懵懂懂,最近观看了阿里专家带 ...

  8. 容器云原生DevOps学习笔记——第二期:如何快速高质量的应用容器化迁移

    暑期实习期间,所在的技术中台-效能研发团队规划设计并结合公司开源协同实现符合DevOps理念的研发工具平台,实现研发过程自动化.标准化: 实习期间对DevOps的理解一直懵懵懂懂,最近观看了阿里专家带 ...

  9. 2020年Yann Lecun深度学习笔记(下)

    2020年Yann Lecun深度学习笔记(下)

最新文章

  1. 中国最大的python社区-python求最大数
  2. 分布式图处理引擎Graph Engine 1.0 预览版正式发布
  3. PostgreSQL字符串截取替换
  4. 2018明星学术公众号TOP 10重磅发布,PaperWeekly再度入选
  5. 微pe工具箱是微软的吗_微PE工具箱V2.0更新10内核
  6. IO流--buffer
  7. informatica mysql odbc_Informatica 配置mysql community odbc连接
  8. mac linux 蓝牙键盘,还在纠结Mac版键盘?试试KeyRemap4MacBook吧!
  9. 忘记 Apple Watch PIN 码,如何解锁 Apple Watch?
  10. iOS开发系列--Objective-C之协议、代码块、分类
  11. CAVLC基于上下文自适应的可变长编码
  12. 阿里云、腾讯云服务器对比,那个更好?
  13. 计算机为什么要设置用户账号密码,电脑用户名是什么意思(怎么修改及设置用户名)...
  14. Thingworx自定义扩展开发(三)- echarts集成
  15. 数据结构算法学习 之 红黑树
  16. 动态规划题目——背包
  17. Matplotlib饼图实例
  18. Excel公式-----身份证提取年龄
  19. 百度地图 - 添加区划覆盖物 - 循环打点
  20. Android 跳过开机界面 直接软件自启动 Android做自己的桌面 替代原生桌面 Android开发自己桌面

热门文章

  1. php记录登录时间,php记录 用户当前页面停留时间
  2. Linux:tomcat安装/版本升级
  3. 大学c语言常用语句意思,C语言常用语句
  4. python yield 简单用法_通过实例简单了解python yield使用方法
  5. linux查看tcl版本_查看Linux内核版本的方法有几个?你也是这样操作吗?
  6. 【NC30】缺失的第一个正整数
  7. 【CodeForces - 569A】Music (数学公式化简,模拟追及问题)
  8. *【HDU - 6333】Problem B. Harvest of Apples (莫队,逆元,组合数学)(这样预处理正确吗?)
  9. 项目总结1:微信扫码自动识别设备类型并跳转到相应的应用下载页面(apk或App Store)之解决方案
  10. android shape 圆角百分比,Android shape显示圆角问题