| Index: source/libvpx/vp9/encoder/vp9_speed_features.c
|
| ===================================================================
|
| --- source/libvpx/vp9/encoder/vp9_speed_features.c (revision 284462)
|
| +++ source/libvpx/vp9/encoder/vp9_speed_features.c (working copy)
|
| @@ -294,8 +294,13 @@
|
| 800 : 300;
|
| sf->elevate_newmv_thresh = 2500;
|
| }
|
| - if (speed >= 8) {
|
| + if (speed >= 12) {
|
| + sf->elevate_newmv_thresh = 4000;
|
| + sf->mv.subpel_force_stop = 2;
|
| + }
|
| + if (speed >= 13) {
|
| int i;
|
| + sf->max_intra_bsize = BLOCK_32X32;
|
| for (i = 0; i < BLOCK_SIZES; ++i)
|
| sf->inter_mode_mask[i] = INTER_NEAREST;
|
| }
|
| @@ -367,6 +372,7 @@
|
| sf->elevate_newmv_thresh = 0;
|
| // Recode loop tolerence %.
|
| sf->recode_tolerance = 25;
|
| + sf->default_interp_filter = SWITCHABLE;
|
|
|
| switch (oxcf->mode) {
|
| case ONE_PASS_BEST:
|
|
|