comparison libswscale/swscale_internal.h @ 26177:9ca242299b22

define VOF as double of VOFW.
author benoit
date Mon, 10 Mar 2008 14:28:25 +0000
parents 5884743208b6
children 5ba88511ec0a
comparison
equal deleted inserted replaced
26176:303dfa60a7b8 26177:9ca242299b22
29 29
30 #include "avutil.h" 30 #include "avutil.h"
31 31
32 #define MAX_FILTER_SIZE 256 32 #define MAX_FILTER_SIZE 256
33 33
34 #define VOF 4096
35 #define VOFW 2048 34 #define VOFW 2048
35 #define VOF (VOFW*2)
36 36
37 typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY, 37 typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
38 int srcSliceH, uint8_t* dst[], int dstStride[]); 38 int srcSliceH, uint8_t* dst[], int dstStride[]);
39 39
40 /* this struct should be aligned on at least 32-byte boundary */ 40 /* this struct should be aligned on at least 32-byte boundary */