diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-20 13:52:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-20 13:52:58 +0200 |
commit | 055e5c8e01c57783207861c96a5affbcd9e40160 (patch) | |
tree | 7d6f1377c330a8ea1df29aca76e6c3b4ed01fc4d /libavcodec/hpeldsp.c | |
parent | d0aa60da10229d79aaa087d47dff92fc7518f1e8 (diff) | |
parent | 47e5a98174eb9c07ad17be71df129719d60ec8b7 (diff) | |
download | ffmpeg-055e5c8e01c57783207861c96a5affbcd9e40160.tar.gz |
Merge commit '47e5a98174eb9c07ad17be71df129719d60ec8b7'
* commit '47e5a98174eb9c07ad17be71df129719d60ec8b7':
ppc: hpeldsp: Move half-pel assembly from dsputil to hpeldsp
Conflicts:
libavcodec/hpeldsp.h
libavcodec/ppc/hpeldsp_altivec.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hpeldsp.c')
-rw-r--r-- | libavcodec/hpeldsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/hpeldsp.c b/libavcodec/hpeldsp.c index 512767492d..2c2d298cd2 100644 --- a/libavcodec/hpeldsp.c +++ b/libavcodec/hpeldsp.c @@ -54,6 +54,8 @@ av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags) hpel_funcs(avg, [3], 2); hpel_funcs(avg_no_rnd,, 16); + if (ARCH_PPC) + ff_hpeldsp_init_ppc(c, flags); if (ARCH_X86) ff_hpeldsp_init_x86(c, flags); if (ARCH_ARM) ff_hpeldsp_init_arm (c, flags); |