[x265-commits] [x265] doc: correct description for rd 4.
Deepthi Nandakumar
deepthi at multicorewareinc.com
Thu Mar 12 02:34:58 CET 2015
details: http://hg.videolan.org/x265/rev/75c019fe32f8
branches:
changeset: 9687:75c019fe32f8
user: Deepthi Nandakumar <deepthi at multicorewareinc.com>
date: Wed Mar 11 14:19:25 2015 +0530
description:
doc: correct description for rd 4.
Subject: [x265] param: initialize rdoqLevel
details: http://hg.videolan.org/x265/rev/ee6c0f919e3b
branches:
changeset: 9688:ee6c0f919e3b
user: Deepthi Nandakumar <deepthi at multicorewareinc.com>
date: Wed Mar 11 14:31:57 2015 +0530
description:
param: initialize rdoqLevel
Subject: [x265] motion: initialize more data members
details: http://hg.videolan.org/x265/rev/b4fc1b79f618
branches:
changeset: 9689:b4fc1b79f618
user: Steve Borho <steve at borho.org>
date: Wed Mar 11 20:33:48 2015 -0500
description:
motion: initialize more data members
diffstat:
doc/reST/cli.rst | 2 +-
source/common/param.cpp | 1 +
source/encoder/motion.cpp | 2 ++
3 files changed, 4 insertions(+), 1 deletions(-)
diffs (35 lines):
diff -r 05a416d13228 -r b4fc1b79f618 doc/reST/cli.rst
--- a/doc/reST/cli.rst Wed Mar 11 19:50:56 2015 -0500
+++ b/doc/reST/cli.rst Wed Mar 11 20:33:48 2015 -0500
@@ -489,7 +489,7 @@ Mode decision / Analysis
+-------+---------------------------------------------------------------+
| 3 | RDO mode and split decisions, chroma residual used for sa8d |
+-------+---------------------------------------------------------------+
- | 4 | Adds RDO Quant |
+ | 4 | Currently same as 3 |
+-------+---------------------------------------------------------------+
| 5 | Adds RDO prediction decisions |
+-------+---------------------------------------------------------------+
diff -r 05a416d13228 -r b4fc1b79f618 source/common/param.cpp
--- a/source/common/param.cpp Wed Mar 11 19:50:56 2015 -0500
+++ b/source/common/param.cpp Wed Mar 11 20:33:48 2015 -0500
@@ -157,6 +157,7 @@ void x265_param_default(x265_param *para
param->bEnableAMP = 0;
param->bEnableRectInter = 0;
param->rdLevel = 3;
+ param->rdoqLevel = 0;
param->bEnableSignHiding = 1;
param->bEnableTransformSkip = 0;
param->bEnableTSkipFast = 0;
diff -r 05a416d13228 -r b4fc1b79f618 source/encoder/motion.cpp
--- a/source/encoder/motion.cpp Wed Mar 11 19:50:56 2015 -0500
+++ b/source/encoder/motion.cpp Wed Mar 11 20:33:48 2015 -0500
@@ -104,6 +104,8 @@ MotionEstimate::MotionEstimate()
absPartIdx = -1;
searchMethod = X265_HEX_SEARCH;
subpelRefine = 2;
+ blockwidth = blockheight = 0;
+ blockOffset = 0;
bChromaSATD = false;
chromaSatd = NULL;
}
More information about the x265-commits
mailing list