ref: 084c49ac7968379e63494e94a53345ac991ee6f9
parent: 282f36adc4d87539ef204cfc05049f50fed9734b
author: Yaowu Xu <yaowu@google.com>
date: Mon Feb 3 12:47:29 EST 2014
Adjust speed feature for --rt Moved a few features with low impact on compression form -5 to -4 and increased adaptive_rd_thresh for -5. Change-Id: Ib1b748168cc6ed7684ae4818499f3a536ae76253
--- a/vp9/encoder/vp9_onyx_if.c
+++ b/vp9/encoder/vp9_onyx_if.c
@@ -838,10 +838,12 @@
}
if (speed >= 4) {
sf->optimize_coefficients = 0;
+ sf->disable_split_mask = DISABLE_ALL_SPLIT;
+ sf->use_fast_lpf_pick = 2;
}
if (speed >= 5) {
int i;
- sf->disable_split_mask = DISABLE_ALL_SPLIT;
+ sf->adaptive_rd_thresh = 5;
sf->auto_min_max_partition_size = frame_is_intra_only(cm) ?
RELAXED_NEIGHBORING_MIN_MAX : STRICT_NEIGHBORING_MIN_MAX;
sf->subpel_force_stop = 1;
@@ -849,7 +851,6 @@
sf->intra_y_mode_mask[i] = INTRA_DC_H_V;
sf->intra_uv_mode_mask[i] = INTRA_DC_ONLY;
}
- sf->use_fast_lpf_pick = 2;
sf->RD = 0;
}
if (speed >= 6) {
--
⑨