Commit 81bbd840 authored by Diego Biurrun's avatar Diego Biurrun

Check whether COMPILE_ALTIVEC is defined, not if it is set to a 0/1 value.

COMPILE_ALTIVEC is never set to 1, it is just #defined.

Originally committed as revision 30937 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
parent 7a39f142
...@@ -1262,7 +1262,7 @@ SwsFunc ff_getSwsFunc(SwsContext *c) ...@@ -1262,7 +1262,7 @@ SwsFunc ff_getSwsFunc(SwsContext *c)
} }
#else #else
#if ARCH_PPC && COMPILE_ALTIVEC #if ARCH_PPC && defined(COMPILE_ALTIVEC)
if (flags & SWS_CPU_CAPS_ALTIVEC) { if (flags & SWS_CPU_CAPS_ALTIVEC) {
sws_init_swScale_altivec(c); sws_init_swScale_altivec(c);
return swScale_altivec; return swScale_altivec;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment