------------------------------------------------------------------------ r29256 | michael | 2009-05-05 03:34:16 +0200 (Di, 05. Mai 2009) | 3 Zeilen 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. ------------------------------------------------------------------------ Index: swscale_internal.h =================================================================== --- swscale_internal.h (Revision 29255) +++ swscale_internal.h (Revision 29256) @@ -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