Minor code cleanup
authorYunqing Wang <yunqingwang@google.com>
Wed, 9 Apr 2014 19:07:26 +0000 (12:07 -0700)
committerYunqing Wang <yunqingwang@google.com>
Wed, 9 Apr 2014 19:08:07 +0000 (12:08 -0700)
Cleanup.

Change-Id: I54d989e24b35323cda7290654e425565d5c9ea2d

vp9/encoder/vp9_encodeframe.c

index 61a5022..fc6cc6a 100644 (file)
@@ -3284,9 +3284,9 @@ static void encode_frame_internal(VP9_COMP *cpi) {
     }
     vp9_zero(x->zcoeff_blk);
 
-    if (cpi->sf.partition_search_type == SOURCE_VAR_BASED_PARTITION &&
+    if (sf->partition_search_type == SOURCE_VAR_BASED_PARTITION &&
         cm->current_video_frame > 0) {
-      int check_freq = cpi->sf.search_type_check_frequency;
+      int check_freq = sf->search_type_check_frequency;
 
       if ((cm->current_video_frame - 1) % check_freq == 0) {
         cpi->use_large_partition_rate = 0;
@@ -3303,7 +3303,7 @@ static void encode_frame_internal(VP9_COMP *cpi) {
 
       if ((cm->current_video_frame - 1) % check_freq >= 1) {
         if (cpi->use_large_partition_rate < 15)
-          cpi->sf.partition_search_type = FIXED_PARTITION;
+          sf->partition_search_type = FIXED_PARTITION;
       }
     }
   }