]> granicus.if.org Git - libvpx/commitdiff
Remove unused highbd_fdct32x32 function
authorJingning Han <jingning@google.com>
Tue, 10 May 2016 21:31:40 +0000 (14:31 -0700)
committerJingning Han <jingning@google.com>
Tue, 10 May 2016 21:33:34 +0000 (14:33 -0700)
The encoder is using vp10_fwd_txfm2d_32x32 now.

Change-Id: I719f18ec0b065f1e062d01fd300533dd2f17c712

vp10/encoder/hybrid_fwd_txfm.c

index 491f2ac4888681450b27745d15cf46a91915bbec..ff0a7c693a16ead08d27e56aa6a5cf7c6c0b152d 100644 (file)
@@ -24,16 +24,6 @@ static INLINE void fdct32x32(int rd_transform, const int16_t *src,
     vpx_fdct32x32(src, dst, src_stride);
 }
 
-#if CONFIG_VP9_HIGHBITDEPTH
-static INLINE void highbd_fdct32x32(int rd_transform, const int16_t *src,
-                                    tran_low_t *dst, int src_stride) {
-  if (rd_transform)
-    vpx_highbd_fdct32x32_rd(src, dst, src_stride);
-  else
-    vpx_highbd_fdct32x32(src, dst, src_stride);
-}
-#endif  // CONFIG_VP9_HIGHBITDEPTH
-
 void vp10_fwd_txfm_4x4(const int16_t *src_diff, tran_low_t *coeff,
                        int diff_stride, TX_TYPE tx_type, int lossless) {
   if (lossless) {