summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-10 03:15:38 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-10 03:15:38 +0200
commitb84c9cf7f7280fef7a3db9a2ecdffaa6511a7cea (patch)
treeef881ea16835ede033d16eecaf2a52f84a9fedc3
parent7b0d362567983c7b22db98177be721bfe4bfec6e (diff)
dct-test: fix #if for ff_prores_idct_put_10_sse2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/dct-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index c75202ab75..2e45252f35 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -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);