]> granicus.if.org Git - libvpx/commitdiff
Fixed a bug in the CONFIG_EXT_TX experiment for the forward 16x16
authorZoe Liu <zoeliu@google.com>
Thu, 8 Jan 2015 17:03:53 +0000 (09:03 -0800)
committerZoe Liu <zoeliu@google.com>
Thu, 8 Jan 2015 17:03:53 +0000 (09:03 -0800)
transform size when CONFIG_VP9_HIGHBITDEPTH is enabled.

Change-Id: I475f64eac2c31094a47bc0d557968940cad01c86

vp9/encoder/vp9_encodemb.c

index d324028c41dcaff34f4e5e037ca83dfa04146f76..c5c2a785a9058fd6b42078cb4323daf619475ca4 100644 (file)
@@ -543,7 +543,7 @@ static void highbd_forw_tx16x16(MACROBLOCK *x, int plane,
     copy_flipud(src_diff, diff_stride, 16, src_diff2, 16);
     vp9_highbd_fht16x16(src_diff2, coeff, 16, ADST_ADST);
   } else {
-    vp9_fht16x16(src_diff, coeff, diff_stride, tx_type);
+    vp9_highbd_fht16x16(src_diff, coeff, diff_stride, tx_type);
   }
 }