diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-20 18:24:27 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-29 11:24:14 +0200 |
commit | 67e6a9f558fbf7a72137abd0034a3f11249ab8bb (patch) | |
tree | 482ae485e8eb1ea303c21e309f50c57b83cd2327 /libavcodec/dsputil.c | |
parent | f0389eb777b1ab4291329d4f709098cdfa7384dc (diff) | |
download | ffmpeg-67e6a9f558fbf7a72137abd0034a3f11249ab8bb.tar.gz |
cosmetics: Place arch initialization calls in alphabetical order
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index f031b9b7d3..6d93706fb0 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2745,13 +2745,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); |