summaryrefslogtreecommitdiffstats
path: root/postproc/swscale.h
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-27 18:00:47 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-27 18:00:47 +0000
commit21b3ff056a5af5644dad763484b3d33c9cd78af9 (patch)
tree48e65ed6b4bb6217318a4d14403825ff75f4a2e9 /postproc/swscale.h
parent2cb2f05956fb8ed9551cd4da9b7d775b95a1a70d (diff)
downloadmpv-21b3ff056a5af5644dad763484b3d33c9cd78af9.tar.bz2
mpv-21b3ff056a5af5644dad763484b3d33c9cd78af9.tar.xz
use unified yuv2rgb init
{RGB,BGR}{1,4,8,15,16,24,32} output supported git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6579 b3059339-0415-0410-9bf9-f77b7e298cf2
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[]);