summaryrefslogtreecommitdiff
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-01-18 05:52:20 +0000
committerMåns Rullgård <mans@mansr.com>2009-01-18 05:52:20 +0000
commit2a839eeb02243f7f3305b81623bf5df7dc5cbf43 (patch)
tree0651a85c3dfc49746c62bdb3cd35f2cd674e4d48 /libavcodec/dct-test.c
parent179c56b87987139f20ff9c2838bbe15a0a3b1872 (diff)
dct-test: add Alpha idct
Originally committed as revision 16669 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r--libavcodec/dct-test.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index e7c12dd732..3f62f6d633 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -70,6 +70,8 @@ void simple_idct_armv5te(DCTELEM *data);
void ff_simple_idct_armv6(DCTELEM *data);
void ff_simple_idct_neon(DCTELEM *data);
+void ff_simple_idct_axp(DCTELEM *data);
+
struct algo {
const char *name;
enum { FDCT, IDCT } is_idct;
@@ -137,6 +139,10 @@ struct algo algos[] = {
#endif
#endif /* ARCH_ARM */
+#if ARCH_ALPHA
+ {"SIMPLE-ALPHA", 1, ff_simple_idct_axp, idct, NO_PERM },
+#endif
+
{ 0 }
};