# HG changeset patch # User michael # Date 1241487256 0 # Node ID a1abd8d51b814aa29e54b0c526fd62060be89a59 # Parent 45c5b14ab8c1fc0d0c5b47590b90c5829e48e6e8 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. diff -r 45c5b14ab8c1 -r a1abd8d51b81 libswscale/swscale_internal.h --- a/libswscale/swscale_internal.h Mon May 04 18:29:55 2009 +0000 +++ b/libswscale/swscale_internal.h Tue May 05 01:34:16 2009 +0000 @@ -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