summaryrefslogtreecommitdiff
path: root/libavcodec/hpeldsp.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-03-10 16:40:23 -0700
committerMartin Storsjö <martin@martin.st>2013-04-19 23:19:13 +0300
commitbfb41b5039e36b7f873d6ea7d24b31bf3e1a8075 (patch)
treef776fa24bd348bbe1b95e48e7c68349a0af2a14f /libavcodec/hpeldsp.c
parent7384b7a71338d960e421d6dc3d77da09b0a442cb (diff)
bfin: 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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/hpeldsp.c b/libavcodec/hpeldsp.c
index 9756645a14..29dd9e3b9b 100644
--- a/libavcodec/hpeldsp.c
+++ b/libavcodec/hpeldsp.c
@@ -56,6 +56,8 @@ av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags)
if (ARCH_ARM)
ff_hpeldsp_init_arm(c, flags);
+ if (ARCH_BFIN)
+ ff_hpeldsp_init_bfin(c, flags);
if (ARCH_PPC)
ff_hpeldsp_init_ppc(c, flags);
if (ARCH_X86)