diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-10 15:37:59 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-13 03:59:23 +0100 |
commit | 3ced55d51c2e65b37e50d500dff88bcd80e01b9c (patch) | |
tree | 4a7c6ae22a0d37e270bebbc50e78c2e297141b09 /libavcodec/hpeldsp.c | |
parent | e0a8f315911ccd12d1e2eeef6a921b942e0063ab (diff) | |
download | ffmpeg-3ced55d51c2e65b37e50d500dff88bcd80e01b9c.tar.gz |
Move x86 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 3705d436f8..de3cd76747 100644 --- a/libavcodec/hpeldsp.c +++ b/libavcodec/hpeldsp.c @@ -53,8 +53,8 @@ av_cold void ff_hpeldsp_init(HpelDSPContext* c, int flags) hpel_funcs(avg, [3], 2); hpel_funcs(avg_no_rnd,, 16); -#if 0 if (ARCH_X86) ff_hpeldsp_init_x86 (c, flags); +#if 0 if (ARCH_ARM) ff_hpeldsp_init_arm (c, flags); if (HAVE_VIS) ff_hpeldsp_init_vis (c, flags); if (ARCH_ALPHA) ff_hpeldsp_init_alpha (c, flags); |