mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
avi/wav: Fix some compiler warnings about incompatible pointers.
This commit is contained in:
parent
db6af4bd57
commit
cdb0b68e21
2 changed files with 2 additions and 2 deletions
|
@ -4166,7 +4166,7 @@ gst_avi_demux_chain (GstPad * pad, GstBuffer * buf)
|
|||
if (G_UNLIKELY (avi->abort_buffering)) {
|
||||
avi->abort_buffering = FALSE;
|
||||
res = GST_FLOW_ERROR;
|
||||
GST_ELEMENT_ERROR (avi, STREAM, DEMUX, NULL, ("unhandled buffer size"));
|
||||
GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL), ("unhandled buffer size"));
|
||||
}
|
||||
|
||||
return res;
|
||||
|
|
|
@ -2097,7 +2097,7 @@ done:
|
|||
wav->abort_buffering = FALSE;
|
||||
ret = GST_FLOW_ERROR;
|
||||
/* sort of demux/parse error */
|
||||
GST_ELEMENT_ERROR (wav, STREAM, DEMUX, NULL, ("unhandled buffer size"));
|
||||
GST_ELEMENT_ERROR (wav, STREAM, DEMUX, (NULL), ("unhandled buffer size"));
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue