aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRam Mohan <ram.mohan@ittiam.com>2017-11-23 17:43:35 +0530
committerHangyu Kuang <hkuang@google.com>2018-01-19 01:31:01 +0000
commit6ecdf603b4f77c8785dd010bbaa71709db9bb4af (patch)
treea513d19d6f3df306b2c1ba693b8f7aa61189e029
parent11b4a7b4f0679e11d8632e2e4780a81f24afa48e (diff)
downloadlibavc-o-mr1-iot-preview-8.tar.gz
For static content, intra modes and skip mode compete with each other neck and neck. From bitstream perspective its favourable to pick skip. But do not over bias towards skip as intra modes are already being penalized with mode bits * lambda. Average bdrates improve by 1% Test: Tested on clips of different resolutions for quality changes Change-Id: I8ae85e7e807c9810e10b325627c84eec679327a9
-rw-r--r--encoder/ih264e_me.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/encoder/ih264e_me.h b/encoder/ih264e_me.h
index da910c1..2266e5a 100644
--- a/encoder/ih264e_me.h
+++ b/encoder/ih264e_me.h
@@ -46,14 +46,14 @@
* @brief Skip Bias value for P slice
******************************************************************************
*/
-#define SKIP_BIAS_P 2
+#define SKIP_BIAS_P 0
/**
******************************************************************************
* @brief Skip Bias value for B slice
******************************************************************************
*/
-#define SKIP_BIAS_B 16
+#define SKIP_BIAS_B 0
/*****************************************************************************/