summaryrefslogtreecommitdiff
path: root/src/video_out/video_out_raw.c
diff options
context:
space:
mode:
authorPetri Hintukainen <phintuka@users.sourceforge.net>2012-01-12 14:54:08 +0200
committerPetri Hintukainen <phintuka@users.sourceforge.net>2012-01-12 14:54:08 +0200
commit2f4591b336883490ee3d14ad397de91f98fe376e (patch)
treed322768339003b73034e9da8f4b29e39bff4c66f /src/video_out/video_out_raw.c
parent9c673be406d023c46e816a0a89bf8171a5be7e79 (diff)
downloadxine-lib-2f4591b336883490ee3d14ad397de91f98fe376e.tar.gz
xine-lib-2f4591b336883490ee3d14ad397de91f98fe376e.tar.bz2
Fixed pointer type
Diffstat (limited to 'src/video_out/video_out_raw.c')
-rw-r--r--src/video_out/video_out_raw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_raw.c b/src/video_out/video_out_raw.c
index 860efdfb7..456b3392f 100644
--- a/src/video_out/video_out_raw.c
+++ b/src/video_out/video_out_raw.c
@@ -61,7 +61,7 @@ typedef struct {
int width, height, format, flags;
double ratio;
- uint8_t *chunk[4]; /* mem alloc by xmalloc_aligned */
+ void *chunk[4]; /* mem alloc by xmalloc_aligned */
uint8_t *rgb, *rgb_dst;
yuv2rgb_t *yuv2rgb; /* yuv2rgb converter set up for this frame */