mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 20:42:30 +00:00
gst-libs/gst/audio/gstbaseaudiosrc.c: Fix debug statements (space between '%' and actual format).
Original commit message from CVS: * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_create): Fix debug statements (space between '%' and actual format).
This commit is contained in:
parent
fbeec41546
commit
57b0f5bef6
2 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-10-08 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* gst-libs/gst/audio/gstbaseaudiosrc.c:
|
||||
(gst_base_audio_src_create):
|
||||
Fix debug statements (space between '%' and actual format).
|
||||
|
||||
2008-10-08 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/playback/gstdecodebin2.c: (gst_decode_pad_activate):
|
||||
|
|
|
@ -862,8 +862,8 @@ gst_base_audio_src_create (GstBaseSrc * bsrc, guint64 offset, guint length,
|
|||
/* the skew we have between running_time and the ringbuffertime */
|
||||
segment_skew = running_time_segment - current_segment;
|
||||
|
||||
GST_DEBUG_OBJECT (bsrc, "\n running_time = % " GST_TIME_FORMAT
|
||||
"\n timestamp = % " GST_TIME_FORMAT
|
||||
GST_DEBUG_OBJECT (bsrc, "\n running_time = %" GST_TIME_FORMAT
|
||||
"\n timestamp = %" GST_TIME_FORMAT
|
||||
"\n running_time_segment = %d"
|
||||
"\n current_segment = %d"
|
||||
"\n segment_skew = %d",
|
||||
|
@ -933,8 +933,8 @@ gst_base_audio_src_create (GstBaseSrc * bsrc, guint64 offset, guint length,
|
|||
|
||||
GST_DEBUG_OBJECT (bsrc,
|
||||
"Timeshifted the ringbuffer with %d segments: "
|
||||
"Updating the timestamp to % " GST_TIME_FORMAT ", "
|
||||
"and src->next_sample to % " G_GUINT64_FORMAT, segment_diff,
|
||||
"Updating the timestamp to %" GST_TIME_FORMAT ", "
|
||||
"and src->next_sample to %" G_GUINT64_FORMAT, segment_diff,
|
||||
GST_TIME_ARGS (timestamp), src->next_sample);
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue