]> granicus.if.org Git - libvpx/commitdiff
Removing unused code from vp9_onyx_if.c.
authorDmitry Kovalev <dkovalev@google.com>
Wed, 9 Apr 2014 20:42:26 +0000 (13:42 -0700)
committerDmitry Kovalev <dkovalev@google.com>
Wed, 9 Apr 2014 20:42:26 +0000 (13:42 -0700)
Change-Id: I0462bf1ca1b4e5a1c06259979b4daff949b8a2c6

vp9/encoder/vp9_onyx_if.c

index 3619ec89e8e81eb61296dbbc4bcf101fa9fe530a..9e66a25a5475e5e9a6cdc3988536918b77985522 100644 (file)
@@ -81,8 +81,6 @@ FILE *kf_list;
 FILE *keyfile;
 #endif
 
-void vp9_init_quantizer(VP9_COMP *cpi);
-
 static INLINE void Scale2Ratio(VPX_SCALING mode, int *hr, int *hs) {
   switch (mode) {
     case NORMAL:
@@ -367,27 +365,6 @@ static void configure_static_seg_features(VP9_COMP *cpi) {
   }
 }
 
-// DEBUG: Print out the segment id of each MB in the current frame.
-static void print_seg_map(VP9_COMP *cpi) {
-  VP9_COMMON *cm = &cpi->common;
-  int row, col;
-  int map_index = 0;
-  FILE *statsfile = fopen("segmap.stt", "a");
-
-  fprintf(statsfile, "%10d\n", cm->current_video_frame);
-
-  for (row = 0; row < cpi->common.mi_rows; row++) {
-    for (col = 0; col < cpi->common.mi_cols; col++) {
-      fprintf(statsfile, "%10d", cpi->segmentation_map[map_index]);
-      map_index++;
-    }
-    fprintf(statsfile, "\n");
-  }
-  fprintf(statsfile, "\n");
-
-  fclose(statsfile);
-}
-
 static void update_reference_segmentation_map(VP9_COMP *cpi) {
   VP9_COMMON *const cm = &cpi->common;
   MODE_INFO **mi_8x8_ptr = cm->mi_grid_visible;