summaryrefslogtreecommitdiff
path: root/libswscale/yuv2rgb.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-29 15:10:09 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-29 15:10:09 +0200
commit5ff1b588eb4e639f0b3cfeff2118aadb2b43584a (patch)
tree3a23e041ee9ffa0e5c1f9e73f7c75e4dfae5f623 /libswscale/yuv2rgb.c
parent4399e727237316c6491d800b7053dd44322c0ee7 (diff)
parentc2503d9c8ab42ea55922e9f5a10c8bfbbbfeaf19 (diff)
Merge commit 'c2503d9c8ab42ea55922e9f5a10c8bfbbbfeaf19'
* commit 'c2503d9c8ab42ea55922e9f5a10c8bfbbbfeaf19': swscale: ppc: Hide arch-specific initialization details Conflicts: libswscale/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale/yuv2rgb.c')
-rw-r--r--libswscale/yuv2rgb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c
index ff6f4c13e0..bb33505e5a 100644
--- a/libswscale/yuv2rgb.c
+++ b/libswscale/yuv2rgb.c
@@ -605,10 +605,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;