
x265
x265学习使用心得
wu_qz
email:1302772589@qq.com
展开
-
[2014.10.05]x265更新日志之添加滑动窗口概念用于判断是否需要重置ABR状态
在版本https://hg.videolan.org/x265/rev/e29a82632d1e中添加了滑动窗口的概念,原理是利用当前帧之前的20帧信息平均值用于判断当前帧是否过于复杂,或者前多帧是否为静止帧。以防止当前帧编码后出现下溢。rc: use a sliding window to calculate moving avg SatdCost for ABR Reset logic contains improvements for detection of scene changes wit翻译 2021-08-19 09:43:58 · 304 阅读 · 0 评论 -
[2017.1.20]x265更新日志之CBR模式下填充空数据
摘自:http://hg.videolan.org/x265/rev/cf2a247e31f0Add filler bits when frame bits < vbv target in strict-cbrCBR模式下,vbv池子满的情况下,即缓冲区马上上溢的情况下,就不要往池子里填数据,填oxffff,这样解码器就不会解这些空数据。--- a/source/encoder/frameencoder.cpp Fri Jan 20 16:44:03 2017 +0530++.翻译 2021-08-13 17:43:02 · 724 阅读 · 0 评论 -
[2018.10.27]x265更新日志之提出了新的AQ算法
http://hg.videolan.org/x265/rev/dea7136dce65new aq implementation It scales the quantization step size according to the spatial activity of one coding unit relative to frame average spatial activity. This AQ method utilizes the minimum variance o.翻译 2021-08-13 17:32:12 · 420 阅读 · 0 评论 -
[2019.3.17]x265更新日志之场景切换后降低后边帧的Qp
http://hg.videolan.org/x265/rev/d178be3b2b67连续多个b帧cost相同,判断为blank帧,那接下来的帧也成为场景切换帧,在checkAndResetABR()函数内,满足条件的情况下选择缩放m_cplxrSum官方的解释是为了降低blank帧后面帧的qp,提升质量Reduce QP for the scene changes that is followed by black frames During a scenecut, the trans翻译 2021-08-13 17:24:50 · 360 阅读 · 0 评论 -
x265/x264 获取cu的qp的逻辑
(1)帧级码率控制会得到一个帧级baseQp,发生在:rateEstimateQscale()函数中(2)之后,如果开启vbv的时,会进行帧内行级别的码控,会在行级得到一个baseQp,发生在:rowVbvRateControl()函数中(3)之后,在编码每个cu的时候,如果开启cutree或者aq_mode,会在baseQp的基础上加qpoffset,发生在:calcu...原创 2020-04-03 11:09:48 · 1026 阅读 · 0 评论 -
Windows下编译x265源码
把需要用到的网址放在前边:1.x265源码下载地址https://bitbucket.org/multicoreware/x265/downloads/2.yasm汇编器(我也不知道它是什么,但是需要用到)不需要用在csdn花积分下载!!!http://yasm.tortall.net/Download.html3.电脑已经安装过cmakehttps://cmake.org/downl...原创 2019-04-25 11:24:11 · 721 阅读 · 0 评论 -
x265的编码参数preset级别对性能的影响
preset的含义 preset与编码速度和质量有关,可优化编码速度(每秒编码帧数)和压缩效率(比特流中每比特的质量)之间的权衡。 以x265为例,preset有ultrafast,superfast,veryfast,faster,fast,medium,slow,slower,veryslow,placebo这10个级别,每个级别的preset对应一组编码参数,不同级别的pr...原创 2019-04-24 17:51:48 · 16319 阅读 · 0 评论 -
多线程入门-1
/*@Author: wuzhiqiang1205@126.com@Date: 2018-11-23 14:44:13@blog: https://blog.youkuaiyun.com/wu_qz/@LastEditTime: 2018-11-23 21:30:38@Description: 多线程入门学习笔记*/多线程入门学习以下内容总结自KuangXiang老师免费分享在网易云课堂...原创 2018-11-23 21:32:12 · 264 阅读 · 0 评论 -
windows下x265下载安装与配置
本文转载自: https://blog.youkuaiyun.com/frd2009041510/article/details/50446007?spm=a2c4e.11153940.blogcont31081.3.65a627b7jj22Q5x265下载安装与配置&nbsp; &nbsp; &nbsp; &nbsp; 研究了这么久的HEVC Test Model(HM),相信大家对x265开...转载 2018-07-09 11:02:25 · 2761 阅读 · 0 评论 -
windows下x265使用基本方法
转载自:https://yq.aliyun.com/articles/31081x265使用基本方法&nbsp; &nbsp; &nbsp; &nbsp; 首先,完成x265的下载安装与配置。(参考网址:http://blog.youkuaiyun.com/frd2009041510/article/details/50446007)接下来介绍x265编解码视频的基本方法。第一步:&...转载 2018-06-04 12:11:16 · 3195 阅读 · 0 评论