diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2008-03-16 15:01:07 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-03-16 15:01:07 +0000 |
commit | fbb779216cd731ee27256f2d34aadbe56fd53ad0 (patch) | |
tree | f2c69fb729d4205ec5d28876f560fa909512569f | |
parent | a146872167e758b5c1d018014f742c4c3aa2f4fa (diff) |
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.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gst/avi/gstavidemux.c | 2 |
2 files changed, 7 insertions, 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> * gst/goom/plugin_info.c: diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c index b515e06c..99f6a2fb 100644 --- a/gst/avi/gstavidemux.c +++ b/gst/avi/gstavidemux.c @@ -1767,7 +1767,7 @@ gst_avi_demux_stream_index (GstAviDemux * avi, avi->sinkpad, &offset, &tag, &buf) != GST_FLOW_OK) 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_avi_demux_parse_index (avi, buf, index); |