summaryrefslogtreecommitdiff
path: root/libavcodec/libpostproc
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-08-25 22:35:04 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-08-25 22:35:04 +0000
commit714872547db409728e914916f5e070b2f18e5f8c (patch)
treeddc31268d52f3b57406c11c63609c63b7f234d71 /libavcodec/libpostproc
parent64886072f56a143e5c61dc0faab26f5f43c7c19f (diff)
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')
-rw-r--r--libavcodec/libpostproc/postprocess.c2
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