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
release/0.6
Michael Niedermayer 16 years ago
parent 3737dd1cd3
commit 9507d91150
  1. 7
      libswscale/swscale_internal.h

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

Loading…
Cancel
Save