summaryrefslogtreecommitdiff
path: root/postproc/swscale.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-06-27 18:00:47 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-06-27 18:00:47 +0000
commitcf7d1c1a73f1243d6294a3df672d6ca7c470988b (patch)
tree9dd2527f02cd72d7b0dea9528f0e1dceb48a5c2e /postproc/swscale.h
parent7c307827298e42cb71eba8146efafd82e6e0b4d7 (diff)
use unified yuv2rgb init
{RGB,BGR}{1,4,8,15,16,24,32} output supported Originally committed as revision 6579 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale.h')
-rw-r--r--postproc/swscale.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/postproc/swscale.h b/postproc/swscale.h
index 4ef752f932..59e9160ec5 100644
--- a/postproc/swscale.h
+++ b/postproc/swscale.h
@@ -88,6 +88,11 @@ typedef struct SwsContext{
int chrBufIndex;
int dstY;
int flags;
+ void * yuvTable;
+ void * table_rV[256];
+ void * table_gU[256];
+ int table_gV[256];
+ void * table_bU[256];
void (*swScale)(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,
int srcSliceH, uint8_t* dst[], int dstStride[]);