|
|
|
@ -2915,13 +2915,20 @@ av_cold void ff_dsputil_init(DSPContext* c, AVCodecContext *avctx) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ARCH_X86) ff_dsputil_init_x86 (c, avctx); |
|
|
|
|
if (ARCH_ARM) ff_dsputil_init_arm (c, avctx); |
|
|
|
|
if (HAVE_VIS) ff_dsputil_init_vis (c, avctx); |
|
|
|
|
if (ARCH_ALPHA) ff_dsputil_init_alpha (c, avctx); |
|
|
|
|
if (ARCH_PPC) ff_dsputil_init_ppc (c, avctx); |
|
|
|
|
if (ARCH_SH4) ff_dsputil_init_sh4 (c, avctx); |
|
|
|
|
if (ARCH_BFIN) ff_dsputil_init_bfin (c, avctx); |
|
|
|
|
if (ARCH_ALPHA) |
|
|
|
|
ff_dsputil_init_alpha(c, avctx); |
|
|
|
|
if (ARCH_ARM) |
|
|
|
|
ff_dsputil_init_arm(c, avctx); |
|
|
|
|
if (ARCH_BFIN) |
|
|
|
|
ff_dsputil_init_bfin(c, avctx); |
|
|
|
|
if (ARCH_PPC) |
|
|
|
|
ff_dsputil_init_ppc(c, avctx); |
|
|
|
|
if (ARCH_SH4) |
|
|
|
|
ff_dsputil_init_sh4(c, avctx); |
|
|
|
|
if (HAVE_VIS) |
|
|
|
|
ff_dsputil_init_vis(c, avctx); |
|
|
|
|
if (ARCH_X86) |
|
|
|
|
ff_dsputil_init_x86(c, avctx); |
|
|
|
|
|
|
|
|
|
ff_init_scantable_permutation(c->idct_permutation, |
|
|
|
|
c->idct_permutation_type); |
|
|
|
|