]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/hpeldsp.c
sh4: hpeldsp: Move half-pel assembly from dsputil to hpeldsp
[ffmpeg] / libavcodec / hpeldsp.c
index 09e457677408928e431f348b487b7c559351c87f..c5e7a04faa872d071fcbc91e6c0eabbe64cc0c2a 100644 (file)
@@ -54,8 +54,14 @@ av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags)
     hpel_funcs(avg, [3],  2);
     hpel_funcs(avg_no_rnd,, 16);
 
+    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 (ARCH_X86)
         ff_hpeldsp_init_x86(c, flags);
 }