mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 08:08:22 +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>
|
2006-02-14 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/gstregistry.c: (gst_registry_get_default),
|
* gst/gstregistry.c: (gst_registry_get_default),
|
||||||
|
|
|
@ -639,7 +639,7 @@ main (int argc, char *argv[])
|
||||||
event_loop (pipeline, FALSE, GST_STATE_VOID_PENDING);
|
event_loop (pipeline, FALSE, GST_STATE_VOID_PENDING);
|
||||||
goto end;
|
goto end;
|
||||||
case GST_STATE_CHANGE_NO_PREROLL:
|
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;
|
break;
|
||||||
case GST_STATE_CHANGE_ASYNC:
|
case GST_STATE_CHANGE_ASYNC:
|
||||||
fprintf (stderr, _("Pipeline is PREROLLING ...\n"));
|
fprintf (stderr, _("Pipeline is PREROLLING ...\n"));
|
||||||
|
|
Loading…
Reference in a new issue