Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-08-20 20:24:27 +0400
committerDiego Biurrun <diego@biurrun.de>2013-08-29 13:24:14 +0400
commit67e6a9f558fbf7a72137abd0034a3f11249ab8bb (patch)
tree482ae485e8eb1ea303c21e309f50c57b83cd2327 /libswscale/yuv2rgb.c
parentf0389eb777b1ab4291329d4f709098cdfa7384dc (diff)
cosmetics: Place arch initialization calls in alphabetical order
Diffstat (limited to 'libswscale/yuv2rgb.c')
-rw-r--r--libswscale/yuv2rgb.c12
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;