mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
tools/gst-launch.c: NO_PREROLL is not an ERROR so don't send confusing messages to the user.
Original commit message from CVS: * tools/gst-launch.c: (main): NO_PREROLL is not an ERROR so don't send confusing messages to the user.
This commit is contained in:
parent
6ebad92626
commit
5c8d6fdb6e
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-02-14 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* tools/gst-launch.c: (main):
|
||||
NO_PREROLL is not an ERROR so don't send confusing messages
|
||||
to the user.
|
||||
|
||||
2006-02-14 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/gstregistry.c: (gst_registry_get_default),
|
||||
|
|
|
@ -639,7 +639,7 @@ main (int argc, char *argv[])
|
|||
event_loop (pipeline, FALSE, GST_STATE_VOID_PENDING);
|
||||
goto end;
|
||||
case GST_STATE_CHANGE_NO_PREROLL:
|
||||
fprintf (stderr, _("ERROR: Pipeline can't PREROLL ...\n"));
|
||||
fprintf (stderr, _("Pipeline is live and does not need PREROLL ...\n"));
|
||||
break;
|
||||
case GST_STATE_CHANGE_ASYNC:
|
||||
fprintf (stderr, _("Pipeline is PREROLLING ...\n"));
|
||||
|
|
Loading…
Reference in a new issue