diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-10 16:51:25 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-13 04:09:43 +0100 |
commit | 6802c701063ef5cc85a09f9282a72c1cc578f54c (patch) | |
tree | 10799c7321b747e5579bdd96a2ed734543d0eb20 /libavcodec/hpeldsp.c | |
parent | a0565a2b656f51a942c0113b7591e7f2d255a173 (diff) | |
download | ffmpeg-6802c701063ef5cc85a09f9282a72c1cc578f54c.tar.gz |
Move sparc/vis half-pel assembly from dsputil to hpeldsp.
Diffstat (limited to 'libavcodec/hpeldsp.c')
-rw-r--r-- | libavcodec/hpeldsp.c | 2 |
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); |