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:53:07 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-13 07:11:27 +0400
commit94b77678dcdf26cd91b20e8182f07af5f237ad27 (patch)
treec26167390918627e8a7167a0a6914e9d5d172b77 /libavcodec/hpeldsp.c
parent6802c701063ef5cc85a09f9282a72c1cc578f54c (diff)
Move alpha half-pel assembly from dsputil to hpeldsp.
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 31645fdf23..a9139bf9c3 100644
--- a/libavcodec/hpeldsp.c
+++ b/libavcodec/hpeldsp.c
@@ -56,9 +56,7 @@ 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 (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);
if (ARCH_SH4) ff_hpeldsp_init_sh4 (c, flags);
if (ARCH_BFIN) ff_hpeldsp_init_bfin (c, flags);