diff options
author | Mans Rullgard <mans@mansr.com> | 2012-12-01 23:08:41 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-12-07 16:54:03 +0000 |
commit | c29d49c1b3c8ad15955bf0638b51ea752df5ea37 (patch) | |
tree | 5b9f074349b1b40c069d8eddf2102ab66768c284 /libavcodec | |
parent | 380232fac3a6ca6f661f3d14e31308d3059c5c72 (diff) | |
download | ffmpeg-c29d49c1b3c8ad15955bf0638b51ea752df5ea37.tar.gz |
dct-test: arm: indicate required cpu features for optimised funcs
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dct-test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index c480aeccf1..3ce0270006 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -120,13 +120,13 @@ static const struct algo idct_tab[] = { { "INT-ARM", ff_j_rev_dct_arm, MMX_PERM }, #endif #if HAVE_ARMV5TE - { "SIMPLE-ARMV5TE", ff_simple_idct_armv5te,NO_PERM }, + { "SIMPLE-ARMV5TE", ff_simple_idct_armv5te,NO_PERM, AV_CPU_FLAG_ARMV5TE }, #endif #if HAVE_ARMV6 - { "SIMPLE-ARMV6", ff_simple_idct_armv6, MMX_PERM }, + { "SIMPLE-ARMV6", ff_simple_idct_armv6, MMX_PERM, AV_CPU_FLAG_ARMV6 }, #endif #if HAVE_NEON - { "SIMPLE-NEON", ff_simple_idct_neon, PARTTRANS_PERM }, + { "SIMPLE-NEON", ff_simple_idct_neon, PARTTRANS_PERM, AV_CPU_FLAG_NEON }, #endif #if ARCH_ALPHA |