]> granicus.if.org Git - libvpx/commitdiff
Turn skip recode off temporarily for ref-mv
authorDebargha Mukherjee <debargha@google.com>
Tue, 26 Apr 2016 15:24:01 +0000 (08:24 -0700)
committerDebargha Mukherjee <debargha@google.com>
Wed, 27 Apr 2016 16:55:30 +0000 (09:55 -0700)
To fix tests in VP10/AltRefForcedKeyTestLarge.Frame1IsKey/*

Change-Id: I2f4f9fea515c9935d57006b709a9dd524f174b25

vp10/encoder/speed_features.c

index cd1c91acdb0d22e3531ad20ef5c6218f93887e79..b3304a7e185515de7a7ed2f5f2a3110f24cada91 100644 (file)
@@ -551,6 +551,12 @@ void vp10_set_speed_features_framesize_independent(VP10_COMP *cpi) {
   else if (oxcf->mode == GOOD)
     set_good_speed_feature(cpi, cm, sf, oxcf->speed);
 
+#if CONFIG_REF_MV
+  // TODO(geza): Temporarily turn this off for ref-mv to fix tests.
+  //             Investigate/reimplement skip_recode better to enable this.
+  sf->allow_skip_recode = 0;
+#endif  // CONFIG_REF_MV
+
   // sf->partition_search_breakout_dist_thr is set assuming max 64x64
   // blocks. Normalise this if the blocks are bigger.
   if (MAX_SB_SIZE_LOG2 > 6) {