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 02:37:59 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-13 06:59:23 +0400
commit3ced55d51c2e65b37e50d500dff88bcd80e01b9c (patch)
tree4a7c6ae22a0d37e270bebbc50e78c2e297141b09 /libavcodec/hpeldsp.c
parente0a8f315911ccd12d1e2eeef6a921b942e0063ab (diff)
Move x86 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 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);