mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-25 04:09:57 +00:00
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:
parent
3737dd1cd3
commit
9507d91150
@ -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…
Reference in New Issue
Block a user