diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-10 16:48:31 -0700 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-04-19 23:29:21 +0300 |
commit | 278bd2054ca61ab70dfe38f1774409cda2da5359 (patch) | |
tree | 5059ba9a112a0d3599c525d6e0cf88352b8cec05 /libavcodec/hpeldsp.c | |
parent | bfb41b5039e36b7f873d6ea7d24b31bf3e1a8075 (diff) | |
download | ffmpeg-278bd2054ca61ab70dfe38f1774409cda2da5359.tar.gz |
sh4: hpeldsp: Move half-pel assembly from dsputil to hpeldsp
Signed-off-by: Martin Storsjö <martin@martin.st>
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 29dd9e3b9b..c5e7a04faa 100644 --- a/libavcodec/hpeldsp.c +++ b/libavcodec/hpeldsp.c @@ -60,6 +60,8 @@ av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags) ff_hpeldsp_init_bfin(c, flags); if (ARCH_PPC) ff_hpeldsp_init_ppc(c, flags); + if (ARCH_SH4) + ff_hpeldsp_init_sh4(c, flags); if (ARCH_X86) ff_hpeldsp_init_x86(c, flags); } |