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.

Originally committed as revision 29256 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
Michael Niedermayer 2009-05-05 01:34:16 +00:00
parent 3737dd1cd3
commit 9507d91150
1 changed files with 6 additions and 1 deletions

View File

@ -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