comparison libpostproc/postprocess.c @ 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 1c019179525c
children 15cfba1b97b5
comparison
equal deleted inserted replaced
2187:eedd352930b2 2188:226d0a39347d
694 else 694 else
695 postProcess_C(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c); 695 postProcess_C(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c);
696 #else 696 #else
697 #ifdef ARCH_POWERPC 697 #ifdef ARCH_POWERPC
698 #ifdef HAVE_ALTIVEC 698 #ifdef HAVE_ALTIVEC
699 else if(c->cpuCaps & PP_CPU_CAPS_ALTIVEC) 699 if(c->cpuCaps & PP_CPU_CAPS_ALTIVEC)
700 postProcess_altivec(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c); 700 postProcess_altivec(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c);
701 else 701 else
702 #endif 702 #endif
703 #endif 703 #endif
704 postProcess_C(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c); 704 postProcess_C(src, srcStride, dst, dstStride, width, height, QPs, QPStride, isColor, c);