summaryrefslogtreecommitdiffstats
path: root/libavcodec/hpeldsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/hpeldsp.c')
-rw-r--r--libavcodec/hpeldsp.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/libavcodec/hpeldsp.c b/libavcodec/hpeldsp.c
index a01b322..bff779d 100644
--- a/libavcodec/hpeldsp.c
+++ b/libavcodec/hpeldsp.c
@@ -54,14 +54,18 @@ av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags)
hpel_funcs(avg, [3], 2);
hpel_funcs(avg_no_rnd,, 16);
+ if (ARCH_ALPHA)
+ ff_hpeldsp_init_alpha(c, 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_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);
- if (HAVE_VIS) ff_hpeldsp_init_vis (c, flags);
- if (ARCH_ALPHA) ff_hpeldsp_init_alpha (c, flags);
- if (ARCH_SH4) ff_hpeldsp_init_sh4 (c, flags);
- if (ARCH_BFIN) ff_hpeldsp_init_bfin (c, flags);
}
OpenPOWER on IntegriCloud