summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2016-03-29 14:02:21 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-03-29 14:02:22 +0000
commitaea8d97a74ae8102a864baa1439dd4f4f25555e9 (patch)
treed3251661d23325be4b4ce99beff5288a768c7d9a /vp9/encoder
parent48e7294e489ddbd84708c2856ef236d440dabd5e (diff)
parenta84f1f846e3464a0aaa557c8cd428a6f15b48d32 (diff)
downloadlibvpx-aea8d97a74ae8102a864baa1439dd4f4f25555e9.tar
libvpx-aea8d97a74ae8102a864baa1439dd4f4f25555e9.tar.gz
libvpx-aea8d97a74ae8102a864baa1439dd4f4f25555e9.tar.bz2
libvpx-aea8d97a74ae8102a864baa1439dd4f4f25555e9.zip
Merge "Increase min-max q range for normal inter frames."
Diffstat (limited to 'vp9/encoder')
-rw-r--r--vp9/encoder/vp9_ratectrl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_ratectrl.c b/vp9/encoder/vp9_ratectrl.c
index 61bb35ec1..9dd739474 100644
--- a/vp9/encoder/vp9_ratectrl.c
+++ b/vp9/encoder/vp9_ratectrl.c
@@ -133,7 +133,7 @@ static void init_minq_luts(int *kf_low_m, int *kf_high_m,
kf_high_m[i] = get_minq_index(maxq, 0.0000021, -0.00125, 0.55, bit_depth);
arfgf_low[i] = get_minq_index(maxq, 0.0000015, -0.0009, 0.30, bit_depth);
arfgf_high[i] = get_minq_index(maxq, 0.0000021, -0.00125, 0.55, bit_depth);
- inter[i] = get_minq_index(maxq, 0.00000271, -0.00113, 0.90, bit_depth);
+ inter[i] = get_minq_index(maxq, 0.00000271, -0.00113, 0.70, bit_depth);
rtc[i] = get_minq_index(maxq, 0.00000271, -0.00113, 0.70, bit_depth);
}
}