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:
Wim Taymans 2006-02-14 17:25:11 +00:00
parent 6ebad92626
commit 5c8d6fdb6e
2 changed files with 7 additions and 1 deletions

View file

@ -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),

View file

@ -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"));