summaryrefslogtreecommitdiff
path: root/libavcodec/tests
diff options
context:
space:
mode:
authorJames Darnley <jdarnley@obe.tv>2017-05-11 02:30:26 +0200
committerJames Darnley <jdarnley@obe.tv>2017-05-30 13:20:42 +0200
commit8e89f6fd37357361e0f4db5b6f3b422ce84175b0 (patch)
tree46414632dc5b59ed2e6ef3a2a1987bfe271c120b /libavcodec/tests
parent87bddba43b725d43767f2a387cdea0936ac1b549 (diff)
avcodec/x86: move simple_idct to external assembly
Diffstat (limited to 'libavcodec/tests')
-rw-r--r--libavcodec/tests/x86/dct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tests/x86/dct.c b/libavcodec/tests/x86/dct.c
index b6cdfb346c..34f5b8767b 100644
--- a/libavcodec/tests/x86/dct.c
+++ b/libavcodec/tests/x86/dct.c
@@ -67,7 +67,7 @@ static const struct algo fdct_tab_arch[] = {
};
static const struct algo idct_tab_arch[] = {
-#if HAVE_MMX_INLINE
+#if HAVE_MMX_EXTERNAL
{ "SIMPLE-MMX", ff_simple_idct_mmx, FF_IDCT_PERM_SIMPLE, AV_CPU_FLAG_MMX },
#endif
#if CONFIG_MPEG4_DECODER && HAVE_YASM