diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-08-25 22:35:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-08-25 22:35:04 +0000 |
commit | 714872547db409728e914916f5e070b2f18e5f8c (patch) | |
tree | ddc31268d52f3b57406c11c63609c63b7f234d71 /libavcodec/libpostproc/postprocess.c | |
parent | 64886072f56a143e5c61dc0faab26f5f43c7c19f (diff) | |
download | ffmpeg-714872547db409728e914916f5e070b2f18e5f8c.tar.gz |
typo fix by (Marcin 'Morgoth' Kurek <morgoth6 at box43 dot pl>)
Originally committed as revision 3415 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libpostproc/postprocess.c')
-rw-r--r-- | libavcodec/libpostproc/postprocess.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libpostproc/postprocess.c b/libavcodec/libpostproc/postprocess.c index 9dc0491d2d..82bf628480 100644 --- a/libavcodec/libpostproc/postprocess.c +++ b/libavcodec/libpostproc/postprocess.c @@ -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 |