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:
authorRonald S. Bultje <rsbultje@gmail.com>2013-03-11 03:51:25 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-13 07:09:43 +0400
commit6802c701063ef5cc85a09f9282a72c1cc578f54c (patch)
tree10799c7321b747e5579bdd96a2ed734543d0eb20 /libavcodec/hpeldsp.c
parenta0565a2b656f51a942c0113b7591e7f2d255a173 (diff)
Move sparc/vis half-pel assembly from dsputil to hpeldsp.
Diffstat (limited to 'libavcodec/hpeldsp.c')
-rw-r--r--libavcodec/hpeldsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hpeldsp.c b/libavcodec/hpeldsp.c
index b55d036070..31645fdf23 100644
--- a/libavcodec/hpeldsp.c
+++ b/libavcodec/hpeldsp.c
@@ -55,8 +55,8 @@ av_cold void ff_hpeldsp_init(HpelDSPContext* c, int flags)
if (ARCH_X86) ff_hpeldsp_init_x86 (c, flags);
if (ARCH_ARM) ff_hpeldsp_init_arm (c, flags);
-#if 0
if (HAVE_VIS) ff_hpeldsp_init_vis (c, flags);
+#if 0
if (ARCH_ALPHA) ff_hpeldsp_init_alpha (c, flags);
#endif
if (ARCH_PPC) ff_hpeldsp_init_ppc (c, flags);