summaryrefslogtreecommitdiff
path: root/src/video_out/yuv2rgb.h
diff options
context:
space:
mode:
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);
} ;