Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-01-07 14:00:46 +0400
committerDiego Biurrun <diego@biurrun.de>2014-03-13 16:50:28 +0400
commitb4dd424d96f09f9bafb88e47f37df65dc4529143 (patch)
tree35ed851c0180f7d2c1ba6a858f7729b4efa3ddb4 /libavcodec/hpeldsp.c
parentd6096a67422534918405abb46dafbbac4608cbc3 (diff)
Remove all SPARC architecture optimizations
SPARC is no longer being used in any multimedia-related fields and the VIS optimizations only represent a maintenance burden.
Diffstat (limited to 'libavcodec/hpeldsp.c')
-rw-r--r--libavcodec/hpeldsp.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/hpeldsp.c b/libavcodec/hpeldsp.c
index f8b90e43d6..9fee199869 100644
--- a/libavcodec/hpeldsp.c
+++ b/libavcodec/hpeldsp.c
@@ -62,8 +62,6 @@ av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags)
ff_hpeldsp_init_bfin(c, flags);
if (ARCH_PPC)
ff_hpeldsp_init_ppc(c, flags);
- if (HAVE_VIS)
- ff_hpeldsp_init_vis(c, flags);
if (ARCH_X86)
ff_hpeldsp_init_x86(c, flags);
}