]> granicus.if.org Git - libvpx/commitdiff
Remove unused function vpx_de_mblock
authorJohann <johannkoenig@google.com>
Sat, 27 Aug 2016 01:06:19 +0000 (18:06 -0700)
committerJohann <johannkoenig@google.com>
Thu, 1 Sep 2016 06:01:45 +0000 (23:01 -0700)
vpx_config.h was not included so CONFIG_POSTPROC was never defined.

Change-Id: I777de499823afa286734549a8e7f4a93e7ad97f3

vpx_dsp/deblock.c

index d3e04722177c80af16d04dc3c59316284044601f..589b124e26a44f90f370b7b35964217ecd49bfff 100644 (file)
@@ -190,13 +190,3 @@ void vpx_mbpost_proc_down_c(unsigned char *dst, int pitch, int rows, int cols,
     }
   }
 }
-
-#if CONFIG_POSTPROC
-static void vpx_de_mblock(YV12_BUFFER_CONFIG *post, int q) {
-  vpx_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height,
-                            post->y_width, q2mbl(q));
-  vpx_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height,
-                       post->y_width, q2mbl(q));
-}
-
-#endif