summaryrefslogtreecommitdiff
path: root/src/video_out/yuv2rgb.h
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-06-21 17:34:23 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-06-21 17:34:23 +0000
commit436b928915f56a8bc56fc7065800fad7e474e158 (patch)
tree9d0680a8099f22e639058ce366e79032129f13f7 /src/video_out/yuv2rgb.h
parenta2c0482e17a5d1d0ea99d06b81e94c0e7b5cb4e2 (diff)
downloadxine-lib-436b928915f56a8bc56fc7065800fad7e474e158.tar.gz
xine-lib-436b928915f56a8bc56fc7065800fad7e474e158.tar.bz2
solaris and stability patches provided by Juergen Keil
CVS patchset: 211 CVS date: 2001/06/21 17:34:23
Diffstat (limited to 'src/video_out/yuv2rgb.h')
-rw-r--r--src/video_out/yuv2rgb.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/video_out/yuv2rgb.h b/src/video_out/yuv2rgb.h
index b966eca82..9a2e2fb0a 100644
--- a/src/video_out/yuv2rgb.h
+++ b/src/video_out/yuv2rgb.h
@@ -36,19 +36,17 @@ struct yuv2rgb_s {
int rgb_stride;
int step_dx, step_dy;
int do_scale;
- uint8_t *y_buffer, *y_chunk;
- uint8_t *u_buffer, *u_chunk;
- uint8_t *v_buffer, *v_chunk;
+ uint8_t *y_buffer;
+ uint8_t *u_buffer;
+ uint8_t *v_buffer;
+ void *y_chunk;
+ void *u_chunk;
+ void *v_chunk;
void *table_rV[256];
void *table_gU[256];
int table_gV[256];
void *table_bU[256];
-
- void (* yuv2rgb_c_internal) (yuv2rgb_t *this,
- uint8_t *, uint8_t *,
- uint8_t *, uint8_t *,
- void *, void *, int);
} ;