diff options
Diffstat (limited to 'gst/vbidec/vbidata.c')
-rw-r--r-- | gst/vbidec/vbidata.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/vbidec/vbidata.c b/gst/vbidec/vbidata.c index 87b90ea4..b1be7893 100644 --- a/gst/vbidec/vbidata.c +++ b/gst/vbidec/vbidata.c @@ -1181,8 +1181,8 @@ vbidata_process_frame (vbidata_t * vbi, int printdebug) return; } - ProcessLine (vbi, &vbi->buf[DO_LINE * 2048], 0); - ProcessLine (vbi, &vbi->buf[(16 + DO_LINE) * 2048], 1); + ProcessLine (vbi, (unsigned char *) &vbi->buf[DO_LINE * 2048], 0); + ProcessLine (vbi, (unsigned char *) &vbi->buf[(16 + DO_LINE) * 2048], 1); } void |