changeset 2188:226d0a39347d libavcodec

typo fix by (Marcin 'Morgoth' Kurek <morgoth6 at box43 dot pl>)
author michael
date Wed, 25 Aug 2004 22:35:04 +0000
parents eedd352930b2
children 70b27300a496
files libpostproc/postprocess.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpostproc/postprocess.c	Wed Aug 25 00:26:01 2004 +0000
+++ b/libpostproc/postprocess.c	Wed Aug 25 22:35:04 2004 +0000
@@ -696,7 +696,7 @@
 #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