]> granicus.if.org Git - libvpx/commitdiff
Remove print_nmvcounts
authorJohann <johannkoenig@google.com>
Fri, 12 Jul 2013 00:22:03 +0000 (17:22 -0700)
committerJohann <johannkoenig@google.com>
Fri, 12 Jul 2013 00:22:03 +0000 (17:22 -0700)
For some reason iOS builds take a really long time to sort this
function out.

It's not used anywhere so remove it.

Change-Id: Ia5c8513a0d9c7eb32641cca58ca1c1113e2dd9f4

vp9/encoder/vp9_encodemv.c
vp9/encoder/vp9_encodemv.h

index 08ef6910d7ca6c97243deb10441c05c4f1cb3386..84a9cd6887d33258256e4939edbf74f4e7dbfb2e 100644 (file)
@@ -257,55 +257,6 @@ static void counts_to_nmv_context(
   }
 }
 
-
-void print_nmvcounts(nmv_context_counts tnmvcounts) {
-  int i, j, k;
-  printf("\nCounts =\n  { ");
-  for (j = 0; j < MV_JOINTS; ++j)
-    printf("%d, ", tnmvcounts.joints[j]);
-  printf("},\n");
-  for (i = 0; i < 2; ++i) {
-    printf("  {\n");
-    printf("    %d/%d,\n", tnmvcounts.comps[i].sign[0],
-                           tnmvcounts.comps[i].sign[1]);
-    printf("    { ");
-    for (j = 0; j < MV_CLASSES; ++j)
-      printf("%d, ", tnmvcounts.comps[i].classes[j]);
-    printf("},\n");
-    printf("    { ");
-    for (j = 0; j < CLASS0_SIZE; ++j)
-      printf("%d, ", tnmvcounts.comps[i].class0[j]);
-    printf("},\n");
-    printf("    { ");
-    for (j = 0; j < MV_OFFSET_BITS; ++j)
-      printf("%d/%d, ", tnmvcounts.comps[i].bits[j][0],
-                        tnmvcounts.comps[i].bits[j][1]);
-    printf("},\n");
-
-    printf("    {");
-    for (j = 0; j < CLASS0_SIZE; ++j) {
-      printf("{");
-      for (k = 0; k < 4; ++k)
-        printf("%d, ", tnmvcounts.comps[i].class0_fp[j][k]);
-      printf("}, ");
-    }
-    printf("},\n");
-
-    printf("    { ");
-    for (j = 0; j < 4; ++j)
-      printf("%d, ", tnmvcounts.comps[i].fp[j]);
-    printf("},\n");
-
-    printf("    %d/%d,\n",
-           tnmvcounts.comps[i].class0_hp[0],
-           tnmvcounts.comps[i].class0_hp[1]);
-    printf("    %d/%d,\n",
-           tnmvcounts.comps[i].hp[0],
-           tnmvcounts.comps[i].hp[1]);
-    printf("  },\n");
-  }
-}
-
 #ifdef NMV_STATS
 void init_nmvstats() {
   vp9_zero(tnmvcounts);
index 56aaeee8d6d882faf930790e2703b64386a39929..2789ce1147d02a9905c131a9df11828caf214519 100644 (file)
@@ -28,6 +28,4 @@ void vp9_build_nmv_cost_table(int *mvjoint,
 void vp9_update_nmv_count(VP9_COMP *cpi, MACROBLOCK *x,
                           int_mv *best_ref_mv, int_mv *second_best_ref_mv);
 
-void print_nmvcounts(nmv_context_counts tnmvcounts);
-
 #endif  // VP9_ENCODER_VP9_ENCODEMV_H_