1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-10 09:31:06 +02:00

dct-test: fix #if for ff_prores_idct_put_10_sse2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-06-10 03:15:38 +02:00
parent 7b0d362567
commit b84c9cf7f7

View File

@ -99,7 +99,7 @@ static const struct algo fdct_tab[] = {
{ 0 }
};
#if HAVE_MMX && HAVE_YASM
#if ARCH_X86_64 && HAVE_MMX && HAVE_YASM
void ff_prores_idct_put_10_sse2(uint16_t *dst, int linesize,
DCTELEM *block, int16_t *qmat);