ref: 72746c079d0b8631dad90f7c172ae19193405571
parent: 1ca1515dd30cad91a1f08b54a71a799d5cdab0a6
author: Jerome Jiang <jianj@google.com>
date: Wed Jan 4 06:22:51 EST 2017
vp9: Set short circuit to level 3 for VGA for speed 8. vp9: Set short circuit to level 3 for VGA for speed 8. Also change the threshold_32x32 to 5/8*thresholds[1] to improve quality regression caused to VGA clips. Change-Id: Ia1590e91e7cb22be78d5b85013387bb1be4272e3
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -745,7 +745,7 @@
if ((*this_mi)->sb_type == BLOCK_32X32) {
int64_t threshold_32x32 = (cpi->sf.short_circuit_low_temp_var == 1 ||
cpi->sf.short_circuit_low_temp_var == 3)
- ? ((3 * thresholds[1]) >> 2)
+ ? ((5 * thresholds[1]) >> 3)
: (thresholds[1] >> 1);
if (vt->split[i].part_variances.none.variance < threshold_32x32)
x->variance_low[i + 5] = 1;
--- a/vp9/encoder/vp9_speed_features.c
+++ b/vp9/encoder/vp9_speed_features.c
@@ -522,7 +522,7 @@
// More aggressive short circuit for speed 8.
sf->short_circuit_low_temp_var = 2;
// More aggressive short circuit for low resolution
- if (cm->width <= 352 && cm->height <= 288) {
+ if (cm->width <= 640 && cm->height <= 480) {
sf->short_circuit_low_temp_var = 3;
}
}