mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
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
This commit is contained in:
parent
7a39f142a8
commit
81bbd840fe
@ -1262,7 +1262,7 @@ SwsFunc ff_getSwsFunc(SwsContext *c)
|
||||
}
|
||||
|
||||
#else
|
||||
#if ARCH_PPC && COMPILE_ALTIVEC
|
||||
#if ARCH_PPC && defined(COMPILE_ALTIVEC)
|
||||
if (flags & SWS_CPU_CAPS_ALTIVEC) {
|
||||
sws_init_swScale_altivec(c);
|
||||
return swScale_altivec;
|
||||
|
Loading…
Reference in New Issue
Block a user