mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
tools/gst-launch.c: Change the printing of the 'buffering...' output to avoid putting a \r in a translateable string ...
Original commit message from CVS: * tools/gst-launch.c: Change the printing of the 'buffering...' output to avoid putting a \r in a translateable string (flagged by the TP).
This commit is contained in:
parent
e6543e71ef
commit
ba074c3689
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-10-12 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* tools/gst-launch.c:
|
||||
Change the printing of the 'buffering...' output to avoid putting
|
||||
a \r in a translateable string (flagged by the TP).
|
||||
|
||||
2008-10-10 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
* gst/gstxml.c:
|
||||
|
|
|
@ -518,7 +518,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, "%s %d%% \r", _("buffering..."), percent);
|
||||
|
||||
/* no state management needed for live pipelines */
|
||||
if (is_live)
|
||||
|
|
Loading…
Reference in a new issue