1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-07 01:54:17 +02:00

typo fix by (Marcin 'Morgoth' Kurek <morgoth6 at box43 dot pl>)

Originally committed as revision 3415 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2004-08-25 22:35:04 +00:00
parent 64886072f5
commit 714872547d

View File

@ -696,7 +696,7 @@ static inline void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int
#else
#ifdef ARCH_POWERPC
#ifdef HAVE_ALTIVEC
else if(c->cpuCaps & PP_CPU_CAPS_ALTIVEC)
if(c->cpuCaps & PP_CPU_CAPS_ALTIVEC)
postProcess_altivec(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c);
else
#endif