mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 20:59:44 +00:00
gst/avi/gstavidemux.c: Erm, the buffer-size is just guint, no need for the special format specifier.
Original commit message from CVS: * gst/avi/gstavidemux.c: Erm, the buffer-size is just guint, no need for the special format specifier.
This commit is contained in:
parent
a146872167
commit
fbb779216c
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-03-16 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* gst/avi/gstavidemux.c:
|
||||||
|
Erm, the buffer-size is just guint, no need for the special format
|
||||||
|
specifier.
|
||||||
|
|
||||||
2008-03-16 Tim-Philipp Müller <tim at centricular dot net>
|
2008-03-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/goom/plugin_info.c:
|
* gst/goom/plugin_info.c:
|
||||||
|
|
|
@ -1767,7 +1767,7 @@ gst_avi_demux_stream_index (GstAviDemux * avi,
|
||||||
avi->sinkpad, &offset, &tag, &buf) != GST_FLOW_OK)
|
avi->sinkpad, &offset, &tag, &buf) != GST_FLOW_OK)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
GST_INFO ("will parse index chunk size %" G_GUINT32_FORMAT " for tag %"
|
GST_INFO ("will parse index chunk size %u for tag %"
|
||||||
GST_FOURCC_FORMAT, GST_BUFFER_SIZE (buf), GST_FOURCC_ARGS (tag));
|
GST_FOURCC_FORMAT, GST_BUFFER_SIZE (buf), GST_FOURCC_ARGS (tag));
|
||||||
|
|
||||||
gst_avi_demux_parse_index (avi, buf, index);
|
gst_avi_demux_parse_index (avi, buf, index);
|
||||||
|
|
Loading…
Reference in a new issue