]> granicus.if.org Git - libvpx/commitdiff
entropymode: put print_mode_contexts under #ifdef MODE_STATS.
authorRonald S. Bultje <rbultje@google.com>
Tue, 30 Oct 2012 04:35:35 +0000 (21:35 -0700)
committerRonald S. Bultje <rbultje@google.com>
Tue, 30 Oct 2012 04:35:35 +0000 (21:35 -0700)
This is the condition under which it is called in onyx_if.c. Also remove
the unused function print_mv_ref_cts().

Change-Id: I51ea3720d46f86d136e2215e01cf9d6c7dfc41ea

vp8/common/entropymode.c

index bcd9f37079898a8800c21eab01b14a2518327bd4..5139e9f20c202dfaf63bc032b7845c22b444bd6c 100644 (file)
@@ -465,6 +465,7 @@ void vp8_update_mode_context(VP8_COMMON *pc) {
   }
 }
 
+#ifdef MODE_STATS
 #include "vp8/common/modecont.h"
 void print_mode_contexts(VP8_COMMON *pc) {
   int j, i;
@@ -482,19 +483,8 @@ void print_mode_contexts(VP8_COMMON *pc) {
     }
     printf("\n");
   }
-
-}
-void print_mv_ref_cts(VP8_COMMON *pc) {
-  int j, i;
-  for (j = 0; j < 6; j++) {
-    for (i = 0; i < 4; i++) {
-      printf("(%4d:%4d) ",
-             pc->fc.mv_ref_ct[j][i][0],
-             pc->fc.mv_ref_ct[j][i][1]);
-    }
-    printf("\n");
-  }
 }
+#endif
 
 // #define MODE_COUNT_TESTING
 #define MODE_COUNT_SAT 20