[FFmpeg-cvslog] r29256 - trunk/libswscale/swscale_internal.h

michael subversion
Tue May 5 03:34:17 CEST 2009


Author: michael
Date: Tue May  5 03:34:16 2009
New Revision: 29256

Log:
Change VOFW for x86 to 5120, it allows larger images to be scaled and was
not slower. Other archs are not changed as the larger VOFW was slower on PPC.

Modified:
   trunk/libswscale/swscale_internal.h

Modified: trunk/libswscale/swscale_internal.h
==============================================================================
--- trunk/libswscale/swscale_internal.h	Mon May  4 20:29:55 2009	(r29255)
+++ trunk/libswscale/swscale_internal.h	Tue May  5 03:34:16 2009	(r29256)
@@ -33,7 +33,12 @@
 
 #define MAX_FILTER_SIZE 256
 
-#define VOFW 2048
+#if ARCH_X86
+#define VOFW 5120
+#else
+#define VOFW 2048 // faster on PPC and not tested on others
+#endif
+
 #define VOF  (VOFW*2)
 
 #ifdef WORDS_BIGENDIAN



More information about the ffmpeg-cvslog mailing list