summaryrefslogtreecommitdiff
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-11-13 20:39:56 +0100
committerDiego Biurrun <diego@biurrun.de>2013-11-13 20:45:49 +0100
commitc7f7bfc9e3a3150ba72bc34366c13fb2210c66ac (patch)
tree4857540a20b55136121e14403a9cb86d4369955d /libavcodec/dct-test.c
parent16381923fb7b9087ce559fb1cd3594469ac6788b (diff)
Remove all Alpha architecture optimizations
Alpha has been end-of-lifed and no more test machines are available.
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r--libavcodec/dct-test.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 716af65fb6..d71f7a3fb6 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -61,8 +61,6 @@ void ff_simple_idct_armv5te(int16_t *data);
void ff_simple_idct_armv6(int16_t *data);
void ff_simple_idct_neon(int16_t *data);
-void ff_simple_idct_axp(int16_t *data);
-
struct algo {
const char *name;
void (*func)(int16_t *block);
@@ -136,10 +134,6 @@ static const struct algo idct_tab[] = {
{ "SIMPLE-NEON", ff_simple_idct_neon, PARTTRANS_PERM, AV_CPU_FLAG_NEON },
#endif
-#if ARCH_ALPHA
- { "SIMPLE-ALPHA", ff_simple_idct_axp, NO_PERM },
-#endif
-
{ 0 }
};