diff --git a/ChangeLog b/ChangeLog index fcb395dbff..aba77a3630 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-01-05 Tim-Philipp Müller + + * 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 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header), diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c index 83f15cc4c8..7870efd830 100644 --- a/ext/ogg/gstoggdemux.c +++ b/ext/ogg/gstoggdemux.c @@ -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; diff --git a/ext/vorbis/vorbisdec.c b/ext/vorbis/vorbisdec.c index 678bd47462..e672ddae00 100644 --- a/ext/vorbis/vorbisdec.c +++ b/ext/vorbis/vorbisdec.c @@ -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 */ diff --git a/gst/playback/gstdecodebin2.c b/gst/playback/gstdecodebin2.c index 83477e3e24..7caae51757 100644 --- a/gst/playback/gstdecodebin2.c +++ b/gst/playback/gstdecodebin2.c @@ -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) {