diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-11 01:06:04 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-29 10:23:41 +0200 |
commit | c2503d9c8ab42ea55922e9f5a10c8bfbbbfeaf19 (patch) | |
tree | 9ee2bc7b2c538a06cc613b0e5f18bc490179461f /libswscale/yuv2rgb.c | |
parent | 6af2c351b3ae61e4478950ffddd0dfcad06188b8 (diff) | |
download | ffmpeg-c2503d9c8ab42ea55922e9f5a10c8bfbbbfeaf19.tar.gz |
swscale: ppc: Hide arch-specific initialization details
Also give consistent names to init functions.
Diffstat (limited to 'libswscale/yuv2rgb.c')
-rw-r--r-- | libswscale/yuv2rgb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index 7e17fcc0e3..84e3e9c50e 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -564,10 +564,10 @@ SwsFunc ff_yuv2rgb_get_func_ptr(SwsContext *c) t = ff_yuv2rgb_init_x86(c); else if (HAVE_VIS) t = ff_yuv2rgb_init_vis(c); - else if (HAVE_ALTIVEC) - t = ff_yuv2rgb_init_altivec(c); else if (ARCH_BFIN) t = ff_yuv2rgb_get_func_ptr_bfin(c); + else if (ARCH_PPC) + t = ff_yuv2rgb_init_ppc(c); if (t) return t; |