diff libpostproc/postprocess.c @ 2041:b996fbe0a7e7 libavcodec

Newer version, using a vectorized version of the new organisation of code in doVertLowPass. it seems to be faster in AltiVec also... Also includes a compile fix for the new do_a_deblock when using AltiVec. patch by (Romain Dolbeau <dolbeau at irisa dot fr>)
author michael
date Fri, 28 May 2004 13:31:38 +0000
parents 5de466b3360e
children 703b80c99891
line wrap: on
line diff
--- a/libpostproc/postprocess.c	Fri May 28 13:23:53 2004 +0000
+++ b/libpostproc/postprocess.c	Fri May 28 13:31:38 2004 +0000
@@ -92,6 +92,10 @@
 
 #include "mangle.h" //FIXME should be supressed
 
+#ifdef HAVE_ALTIVEC_H
+#include <altivec.h>
+#endif
+
 #ifndef HAVE_MEMALIGN
 #define memalign(a,b) malloc(b)
 #endif