Fixed a bug in the CONFIG_EXT_TX experiment for the forward 16x16

transform size when CONFIG_VP9_HIGHBITDEPTH is enabled.

Change-Id: I475f64eac2c31094a47bc0d557968940cad01c86
This commit is contained in:
Zoe Liu 2015-01-08 09:03:53 -08:00
parent 695c4bc321
commit d7d5c75c69

View 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);
}
}