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 /libswscale | |
parent | f0389eb777b1ab4291329d4f709098cdfa7384dc (diff) | |
download | ffmpeg-67e6a9f558fbf7a72137abd0034a3f11249ab8bb.tar.gz |
cosmetics: Place arch initialization calls in alphabetical order
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/yuv2rgb.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index 00af4ee836..f939bbebd0 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -560,14 +560,14 @@ SwsFunc ff_yuv2rgb_get_func_ptr(SwsContext *c) { SwsFunc t = NULL; - if (ARCH_X86) - t = ff_yuv2rgb_init_x86(c); - else if (HAVE_VIS) - t = ff_yuv2rgb_init_vis(c); - else if (ARCH_BFIN) + if (ARCH_BFIN) t = ff_yuv2rgb_init_bfin(c); - else if (ARCH_PPC) + if (ARCH_PPC) t = ff_yuv2rgb_init_ppc(c); + if (HAVE_VIS) + t = ff_yuv2rgb_init_vis(c); + if (ARCH_X86) + t = ff_yuv2rgb_init_x86(c); if (t) return t; |