Printf format and missing argument fixes.

Original commit message from CVS:
* ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
* ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
* gst/playback/gstdecodebin2.c:
(gst_decode_group_check_if_blocked):
Printf format and missing argument fixes.
This commit is contained in:
Tim-Philipp Müller 2007-01-05 19:43:55 +00:00
parent fca23cea51
commit 4e3fc9611f
4 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
* ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
* ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
* gst/playback/gstdecodebin2.c:
(gst_decode_group_check_if_blocked):
Printf format and missing argument fixes.
2007-01-05 Jan Schmidt <thaytan@mad.scientist.com>
* ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),

View file

@ -1238,7 +1238,7 @@ gst_ogg_pad_stream_out (GstOggPad * pad, gint npackets)
gst_ogg_chain_mark_discont (pad->chain);
break;
case 1:
GST_LOG_OBJECT (ogg, "packetout gave packet of size %u", packet.bytes);
GST_LOG_OBJECT (ogg, "packetout gave packet of size %ld", packet.bytes);
result = gst_ogg_pad_submit_packet (pad, &packet);
if (GST_FLOW_IS_FATAL (result))
goto could_not_submit;

View file

@ -1032,7 +1032,7 @@ done:
vorbis_synthesis_read (&vd->vd, sample_count);
GST_DEBUG_OBJECT (vd,
"decoded %d bytes into %d samples, ts %" GST_TIME_FORMAT, packet->bytes,
"decoded %ld bytes into %d samples, ts %" GST_TIME_FORMAT, packet->bytes,
sample_count, GST_TIME_ARGS (timestamp));
/* granulepos is the last sample in the packet */

View file

@ -1392,7 +1392,7 @@ gst_decode_group_check_if_blocked (GstDecodeGroup * group)
GList *tmp;
gboolean blocked = TRUE;
GST_LOG ("group : %p");
GST_LOG ("group : %p", group);
/* 1. don't do anything if group is not complete */
if (!group->complete) {