diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-10 16:53:07 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-13 04:11:27 +0100 |
commit | 94b77678dcdf26cd91b20e8182f07af5f237ad27 (patch) | |
tree | c26167390918627e8a7167a0a6914e9d5d172b77 /libavcodec/hpeldsp.c | |
parent | 6802c701063ef5cc85a09f9282a72c1cc578f54c (diff) | |
download | ffmpeg-94b77678dcdf26cd91b20e8182f07af5f237ad27.tar.gz |
Move alpha half-pel assembly from dsputil to hpeldsp.
Diffstat (limited to 'libavcodec/hpeldsp.c')
-rw-r--r-- | libavcodec/hpeldsp.c | 2 |
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); |