From: Wim Taymans Date: Thu, 24 May 2007 15:00:55 +0000 (+0000) Subject: tools/gst-launch.c: When buffering goes from a two digit to a single digit number... X-Git-Tag: RELEASE-0_10_13~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51c72cdd13af715081bc10919ee3a27bffba0649;p=platform%2Fupstream%2Fgstreamer.git tools/gst-launch.c: When buffering goes from a two digit to a single digit number, make sure to remove the old second... Original commit message from CVS: * tools/gst-launch.c: (event_loop): When buffering goes from a two digit to a single digit number, make sure to remove the old second digit by writing a blank over it. --- diff --git a/ChangeLog b/ChangeLog index da3f752..6f17358 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-05-24 Wim Taymans + + * tools/gst-launch.c: (event_loop): + When buffering goes from a two digit to a single digit number, make sure + to remove the old second digit by writing a blank over it. + 2007-05-24 Tim-Philipp Müller * libs/gst/base/gstdataqueue.c: diff --git a/tools/gst-launch.c b/tools/gst-launch.c index fb276f3..6a583b1 100644 --- a/tools/gst-launch.c +++ b/tools/gst-launch.c @@ -499,7 +499,7 @@ event_loop (GstElement * pipeline, gboolean blocking, GstState target_state) gint percent; gst_message_parse_buffering (message, &percent); - fprintf (stderr, "buffering... %d\r", percent); + fprintf (stderr, "buffering... %d \r", percent); if (percent == 100) { /* a 100% message means buffering is done */