diff options
author | Ronald S. Bultje | 2013-03-10 16:16:45 -0700 |
---|---|---|
committer | Michael Niedermayer | 2013-03-13 04:04:13 +0100 |
commit | de99545f4641d7cb9d7d539bae376413b8a88a8d (patch) | |
tree | 09999d6e09cae97f24729966bfb4d4cfd49733f0 /libavcodec/hpeldsp.c | |
parent | 89f16ded9b747de8870ddee87176e105a5d75dcd (diff) |
Move arm 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 4bc7a8064b..a7ac681b69 100644 --- a/libavcodec/hpeldsp.c +++ b/libavcodec/hpeldsp.c @@ -54,8 +54,8 @@ av_cold void ff_hpeldsp_init(HpelDSPContext* c, int flags) hpel_funcs(avg_no_rnd,, 16); if (ARCH_X86) ff_hpeldsp_init_x86 (c, flags); -#if 0 if (ARCH_ARM) ff_hpeldsp_init_arm (c, flags); +#if 0 if (HAVE_VIS) ff_hpeldsp_init_vis (c, flags); if (ARCH_ALPHA) ff_hpeldsp_init_alpha (c, flags); #endif |