summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_encodeframe.c
diff options
context:
space:
mode:
authorMarco <marpan@google.com>2015-11-12 16:52:45 -0800
committerMarco <marpan@google.com>2015-11-12 17:58:31 -0800
commit419da5c734fd8a54aee7638271ed9df8511eb495 (patch)
treee139fcd26a66521694dbf627cd8c9e8c184f5416 /vp9/encoder/vp9_encodeframe.c
parent866c9357c22b9b29d5913fa85720ba74fc89b178 (diff)
downloadlibvpx-419da5c734fd8a54aee7638271ed9df8511eb495.tar
libvpx-419da5c734fd8a54aee7638271ed9df8511eb495.tar.gz
libvpx-419da5c734fd8a54aee7638271ed9df8511eb495.tar.bz2
libvpx-419da5c734fd8a54aee7638271ed9df8511eb495.zip
Adjust variance threshold for 16x16 split at low resolutions.
Change-Id: I635e37f81237e9703d7d9a11ed76a043f4ec6eb0
Diffstat (limited to 'vp9/encoder/vp9_encodeframe.c')
-rw-r--r--vp9/encoder/vp9_encodeframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c
index 735ca8163..047588369 100644
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -500,7 +500,7 @@ static void set_vbp_thresholds(VP9_COMP *cpi, int64_t thresholds[], int q) {
if (cm->width <= 352 && cm->height <= 288) {
thresholds[0] = threshold_base >> 3;
thresholds[1] = threshold_base >> 1;
- thresholds[2] = threshold_base << 2;
+ thresholds[2] = threshold_base << 3;
} else {
thresholds[0] = threshold_base;
thresholds[1] = (5 * threshold_base) >> 2;