gst/mpegaudioparse/gstmpegaudioparse.c: Remove trailing newlines from debug statements.

Original commit message from CVS:
* gst/mpegaudioparse/gstmpegaudioparse.c:
(gst_mp3parse_sink_event), (gst_mp3parse_chain):
Remove trailing newlines from debug statements.
This commit is contained in:
Wim Taymans 2008-03-10 15:13:10 +00:00
parent b1fe467289
commit 9142cfca7f
3 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2008-03-10 Wim Taymans <wim.taymans@collabora.co.uk>
* gst/mpegaudioparse/gstmpegaudioparse.c:
(gst_mp3parse_sink_event), (gst_mp3parse_chain):
Remove trailing newlines from debug statements.
2008-03-04 Jan Schmidt <jan.schmidt@sun.com> 2008-03-04 Jan Schmidt <jan.schmidt@sun.com>
* ext/dvdnav/dvdnavsrc.c: * ext/dvdnav/dvdnavsrc.c:

2
common

@ -1 +1 @@
Subproject commit e02bd43fe6b9e45536eccbf5b7a5f9eae62030fd Subproject commit 170f8e91adc7157f6e708ffa58ca22d10e4e45da

View file

@ -462,7 +462,7 @@ gst_mp3parse_sink_event (GstPad * pad, GstEvent * event)
GST_DEBUG_OBJECT (mp3parse, GST_DEBUG_OBJECT (mp3parse,
"Pushing accurate newseg rate %g, applied rate %g, " "Pushing accurate newseg rate %g, applied rate %g, "
"format %d, start %lld, stop %lld, pos %lld\n", rate, "format %d, start %lld, stop %lld, pos %lld", rate,
applied_rate, format, start, stop, pos); applied_rate, format, start, stop, pos);
g_free (seek); g_free (seek);
@ -518,7 +518,7 @@ gst_mp3parse_sink_event (GstPad * pad, GstEvent * event)
gst_event_parse_new_segment_full (event, &update, &rate, &applied_rate, gst_event_parse_new_segment_full (event, &update, &rate, &applied_rate,
&format, &start, &stop, &pos); &format, &start, &stop, &pos);
GST_DEBUG_OBJECT (mp3parse, "Pushing newseg rate %g, applied rate %g, " GST_DEBUG_OBJECT (mp3parse, "Pushing newseg rate %g, applied rate %g, "
"format %d, start %lld, stop %lld, pos %lld\n", "format %d, start %lld, stop %lld, pos %lld",
rate, applied_rate, format, start, stop, pos); rate, applied_rate, format, start, stop, pos);
gst_segment_set_newsegment_full (&mp3parse->segment, update, rate, gst_segment_set_newsegment_full (&mp3parse->segment, update, rate,
@ -1155,7 +1155,7 @@ gst_mp3parse_chain (GstPad * pad, GstBuffer * buf)
mp3parse->next_ts = timestamp; mp3parse->next_ts = timestamp;
GST_LOG_OBJECT (mp3parse, "Have pending ts %" GST_TIME_FORMAT GST_LOG_OBJECT (mp3parse, "Have pending ts %" GST_TIME_FORMAT
" to apply in %lld bytes (@ off %lld)\n", " to apply in %lld bytes (@ off %lld)",
GST_TIME_ARGS (mp3parse->pending_ts), avail, mp3parse->pending_offset); GST_TIME_ARGS (mp3parse->pending_ts), avail, mp3parse->pending_offset);
} }