aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-05-30 03:44:12 -0700
committerDiego Biurrun <diego@biurrun.de>2014-06-02 08:41:47 -0700
commit880e2aa23645ed9871c66ee1cbd00f93c72d2d73 (patch)
treeb1ef322579f20b7e7b43473989486c3dd709539b /libavcodec/dct-test.c
parentb88cc5cca111132b42c2ee99662bfefe7652e3da (diff)
downloadandroid_external_ffmpeg-880e2aa23645ed9871c66ee1cbd00f93c72d2d73.tar.gz
android_external_ffmpeg-880e2aa23645ed9871c66ee1cbd00f93c72d2d73.tar.bz2
android_external_ffmpeg-880e2aa23645ed9871c66ee1cbd00f93c72d2d73.zip
Remove all Blackfin architecture optimizations
Blackfin is a painful platform to work with, no test machines are available and the range of multimedia applications is dubious. Thus it only represents a maintenance burden.
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 74a420615c..d0177f588f 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 }
};
@@ -116,10 +108,6 @@ static const struct algo idct_tab[] = {
{ "XVID-SSE2", ff_idct_xvid_sse2, SSE2_PERM, AV_CPU_FLAG_SSE2, 1 },
#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 },