diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2008-03-10 14:28:25 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-03-10 14:28:25 +0000 |
commit | 710af50e0c9723d856b330cfd297c82b5a76e946 (patch) | |
tree | f683cc2b723314dcecacc2dc18d2821e4a79c4ad /libswscale | |
parent | 3f0bc115f1d4551a0a44ea0f2d4ca6d9ce3532d2 (diff) | |
download | ffmpeg-710af50e0c9723d856b330cfd297c82b5a76e946.tar.gz |
define VOF as double of VOFW.
Originally committed as revision 26209 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index ee14fc33bc..0370068122 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -31,8 +31,8 @@ #define MAX_FILTER_SIZE 256 -#define VOF 4096 #define VOFW 2048 +#define VOF (VOFW*2) typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]); |