summaryrefslogtreecommitdiff
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r--libavcodec/dct-test.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 2f4c3f75b2..f7c47fbb5e 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -47,10 +47,6 @@
#include "x86/idct_xvid.h"
#include "dctref.h"
-// BFIN
-void ff_bfin_idct(int16_t *block);
-void ff_bfin_fdct(int16_t *block);
-
// ALTIVEC
void ff_fdct_altivec(int16_t *block);
@@ -92,10 +88,6 @@ static const struct algo fdct_tab[] = {
{ "altivecfdct", ff_fdct_altivec, NO_PERM, AV_CPU_FLAG_ALTIVEC },
#endif
-#if ARCH_BFIN
- { "BFINfdct", ff_bfin_fdct, NO_PERM },
-#endif
-
{ 0 }
};
@@ -153,10 +145,6 @@ static const struct algo idct_tab[] = {
#endif
#endif
-#if ARCH_BFIN
- { "BFINidct", ff_bfin_idct, NO_PERM },
-#endif
-
#if ARCH_ARM
{ "SIMPLE-ARM", ff_simple_idct_arm, NO_PERM },
{ "INT-ARM", ff_j_rev_dct_arm, MMX_PERM },