summaryrefslogtreecommitdiff
path: root/libavcodec/hpeldsp.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-03-10 16:51:25 -0700
committerMartin Storsjö <martin@martin.st>2013-04-19 23:29:22 +0300
commit78ce568e43a7f3993c33100aa8f5d56c4c4bd493 (patch)
tree830fdf5e1fe422bfc5911d29eb4a083ed58e2911 /libavcodec/hpeldsp.c
parent278bd2054ca61ab70dfe38f1774409cda2da5359 (diff)
sparc: hpeldsp: Move vis 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 c5e7a04faa..aed1cc982a 100644
--- a/libavcodec/hpeldsp.c
+++ b/libavcodec/hpeldsp.c
@@ -62,6 +62,8 @@ av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags)
ff_hpeldsp_init_ppc(c, flags);
if (ARCH_SH4)
ff_hpeldsp_init_sh4(c, flags);
+ if (HAVE_VIS)
+ ff_hpeldsp_init_vis(c, flags);
if (ARCH_X86)
ff_hpeldsp_init_x86(c, flags);
}