summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 }
};