Commit ad2c9ab6 authored by siretart's avatar siretart

Fix compilation on powerpc with --disable-altivec

in case altivec is disabled, even compilation of code using altivec
keywords or asm must be avoided.



git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@30869 b3059339-0415-0410-9bf9-f77b7e298cf2
parent 527bf4bb
......@@ -1142,7 +1142,7 @@ static inline void monoblack2Y(uint8_t *dst, const uint8_t *src, long width, uin
#endif
#if ARCH_PPC
#if HAVE_ALTIVEC || CONFIG_RUNTIME_CPUDETECT
#if HAVE_ALTIVEC
#define COMPILE_ALTIVEC
#endif
#endif //ARCH_PPC
......@@ -1245,7 +1245,7 @@ SwsFunc ff_getSwsFunc(SwsContext *c)
}
#else
#if ARCH_PPC
#if ARCH_PPC && COMPILE_ALTIVEC
if (flags & SWS_CPU_CAPS_ALTIVEC) {
sws_init_swScale_altivec(c);
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