summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbenoit <benoit@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-10 14:28:25 +0000
committerbenoit <benoit@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-10 14:28:25 +0000
commit26f0d73d73936ce2bc8800931f1a5db4cfbffebb (patch)
tree67674e73aecba9e3f7b752f3f5c68268d81203fa
parent05854c17bb51ce929c80a970adcd894b7f263ef9 (diff)
downloadmpv-26f0d73d73936ce2bc8800931f1a5db4cfbffebb.tar.bz2
mpv-26f0d73d73936ce2bc8800931f1a5db4cfbffebb.tar.xz
define VOF as double of VOFW.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26209 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libswscale/swscale_internal.h2
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[]);