2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
4 * 2004 Thomas Vander Stichele <thomas@apestaart.org>
6 * gst-launch.c: tool to launch GStreamer pipelines from the command line
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
28 /* FIXME: hack alert */
30 #define DISABLE_FAULT_HANDLER
39 #ifndef DISABLE_FAULT_HANDLER
42 #include <locale.h> /* for LC_ALL */
45 /* FIXME: This is just a temporary hack. We should have a better
46 * check for siginfo handling. */
51 extern volatile gboolean glib_on_error_halt;
53 #ifndef DISABLE_FAULT_HANDLER
54 static void fault_restore (void);
55 static void fault_spin (void);
56 static void sigint_restore (void);
57 static gboolean caught_intr = FALSE;
60 /* event_loop return codes */
61 typedef enum _EventLoopResult
68 static GstElement *pipeline;
69 static EventLoopResult caught_error = ELR_NO_ERROR;
70 static gboolean quiet = FALSE;
71 static gboolean tags = FALSE;
72 static gboolean messages = FALSE;
73 static gboolean is_live = FALSE;
74 static gboolean waiting_eos = FALSE;
76 /* convenience macro so we don't have to litter the code with if(!quiet) */
77 #define PRINT if(!quiet)g_print
79 #ifndef DISABLE_FAULT_HANDLER
82 fault_handler_sighandler (int signum)
86 /* printf is used instead of g_print(), since it's less likely to
90 fprintf (stderr, "Caught SIGSEGV\n");
94 printf ("Caught SIGQUIT\n");
97 fprintf (stderr, "signo: %d\n", signum);
104 #else /* USE_SIGINFO */
107 fault_handler_sigaction (int signum, siginfo_t * si, void *misc)
111 /* printf is used instead of g_print(), since it's less likely to
113 switch (si->si_signo) {
115 fprintf (stderr, "Caught SIGSEGV accessing address %p\n", si->si_addr);
119 printf ("Caught SIGQUIT\n");
122 fprintf (stderr, "signo: %d\n", si->si_signo);
123 fprintf (stderr, "errno: %d\n", si->si_errno);
124 fprintf (stderr, "code: %d\n", si->si_code);
130 #endif /* USE_SIGINFO */
137 glib_on_error_halt = FALSE;
138 g_on_error_stack_trace ("gst-launch");
142 /* FIXME how do we know if we were run by libtool? */
144 "Spinning. Please run 'gdb gst-launch %d' to continue debugging, "
145 "Ctrl-C to quit, or Ctrl-\\ to dump core.\n", (gint) getpid ());
153 struct sigaction action;
155 memset (&action, 0, sizeof (action));
156 action.sa_handler = SIG_DFL;
158 sigaction (SIGSEGV, &action, NULL);
159 sigaction (SIGQUIT, &action, NULL);
165 struct sigaction action;
167 memset (&action, 0, sizeof (action));
169 action.sa_sigaction = fault_handler_sigaction;
170 action.sa_flags = SA_SIGINFO;
172 action.sa_handler = fault_handler_sighandler;
175 sigaction (SIGSEGV, &action, NULL);
176 sigaction (SIGQUIT, &action, NULL);
178 #endif /* DISABLE_FAULT_HANDLER */
180 typedef struct _GstIndexStats
188 GstClockTime last_keyframe;
189 GstClockTime last_dltframe;
190 GstClockTime min_keyframe_gap;
191 GstClockTime max_keyframe_gap;
192 GstClockTime avg_keyframe_gap;
196 entry_added (GstIndex * index, GstIndexEntry * entry, gpointer user_data)
198 GPtrArray *index_stats = (GPtrArray *) user_data;
201 switch (entry->type) {
202 case GST_INDEX_ENTRY_ID:
203 /* we have a new writer */
204 GST_DEBUG_OBJECT (index, "id %d: describes writer %s", entry->id,
205 GST_INDEX_ID_DESCRIPTION (entry));
206 if (entry->id >= index_stats->len) {
207 g_ptr_array_set_size (index_stats, entry->id + 1);
209 s = g_new (GstIndexStats, 1);
211 s->desc = g_strdup (GST_INDEX_ID_DESCRIPTION (entry));
212 s->num_frames = s->num_keyframes = s->num_dltframes = 0;
213 s->last_keyframe = s->last_dltframe = GST_CLOCK_TIME_NONE;
214 s->min_keyframe_gap = s->max_keyframe_gap = s->avg_keyframe_gap =
216 g_ptr_array_index (index_stats, entry->id) = s;
218 case GST_INDEX_ENTRY_FORMAT:
219 /* have not found any code calling this */
220 GST_DEBUG_OBJECT (index, "id %d: registered format %d for %s\n",
221 entry->id, GST_INDEX_FORMAT_FORMAT (entry),
222 GST_INDEX_FORMAT_KEY (entry));
224 case GST_INDEX_ENTRY_ASSOCIATION:
227 GstAssocFlags flags = GST_INDEX_ASSOC_FLAGS (entry);
229 s = g_ptr_array_index (index_stats, entry->id);
230 gst_index_entry_assoc_map (entry, GST_FORMAT_TIME, &ts);
232 if (flags & GST_ASSOCIATION_FLAG_KEY_UNIT) {
235 if (GST_CLOCK_TIME_IS_VALID (ts)) {
236 if (GST_CLOCK_TIME_IS_VALID (s->last_keyframe)) {
237 GstClockTimeDiff d = GST_CLOCK_DIFF (s->last_keyframe, ts);
239 if (G_UNLIKELY (d < 0)) {
240 GST_WARNING ("received out-of-order keyframe at %"
241 GST_TIME_FORMAT, GST_TIME_ARGS (ts));
242 /* FIXME: does it still make sense to use that for the statistics */
243 d = GST_CLOCK_DIFF (ts, s->last_keyframe);
246 if (GST_CLOCK_TIME_IS_VALID (s->min_keyframe_gap)) {
247 if (d < s->min_keyframe_gap)
248 s->min_keyframe_gap = d;
250 s->min_keyframe_gap = d;
252 if (GST_CLOCK_TIME_IS_VALID (s->max_keyframe_gap)) {
253 if (d > s->max_keyframe_gap)
254 s->max_keyframe_gap = d;
256 s->max_keyframe_gap = d;
258 if (GST_CLOCK_TIME_IS_VALID (s->avg_keyframe_gap)) {
259 s->avg_keyframe_gap = (d + s->num_frames * s->avg_keyframe_gap) /
262 s->avg_keyframe_gap = d;
265 s->last_keyframe = ts;
268 if (flags & GST_ASSOCIATION_FLAG_DELTA_UNIT) {
270 if (GST_CLOCK_TIME_IS_VALID (ts)) {
271 s->last_dltframe = ts;
283 /* print statistics from the entry_added callback, free the entries */
285 print_index_stats (GPtrArray * index_stats)
289 if (index_stats->len) {
290 g_print ("%s:\n", _("Index statistics"));
293 for (i = 0; i < index_stats->len; i++) {
294 GstIndexStats *s = g_ptr_array_index (index_stats, i);
296 g_print ("id %d, %s\n", s->id, s->desc);
298 GstClockTime last_frame = s->last_keyframe;
300 if (GST_CLOCK_TIME_IS_VALID (s->last_dltframe)) {
301 if (!GST_CLOCK_TIME_IS_VALID (last_frame) ||
302 (s->last_dltframe > last_frame))
303 last_frame = s->last_dltframe;
306 if (GST_CLOCK_TIME_IS_VALID (last_frame)) {
307 g_print (" total time = %" GST_TIME_FORMAT "\n",
308 GST_TIME_ARGS (last_frame));
310 g_print (" frame/keyframe rate = %u / %u = ", s->num_frames,
312 if (s->num_keyframes)
313 g_print ("%lf\n", s->num_frames / (gdouble) s->num_keyframes);
316 if (s->num_keyframes) {
317 g_print (" min/avg/max keyframe gap = %" GST_TIME_FORMAT ", %"
318 GST_TIME_FORMAT ", %" GST_TIME_FORMAT "\n",
319 GST_TIME_ARGS (s->min_keyframe_gap),
320 GST_TIME_ARGS (s->avg_keyframe_gap),
321 GST_TIME_ARGS (s->max_keyframe_gap));
324 g_print (" no stats\n");
333 /* Kids, use the functions from libgstpbutils in gst-plugins-base in your
334 * own code (we can't do that here because it would introduce a circular
337 gst_is_missing_plugin_message (GstMessage * msg)
339 if (GST_MESSAGE_TYPE (msg) != GST_MESSAGE_ELEMENT
340 || gst_message_get_structure (msg) == NULL)
343 return gst_structure_has_name (gst_message_get_structure (msg),
348 gst_missing_plugin_message_get_description (GstMessage * msg)
350 return gst_structure_get_string (gst_message_get_structure (msg), "name");
354 print_error_message (GstMessage * msg)
357 gchar *name, *debug = NULL;
359 name = gst_object_get_path_string (msg->src);
360 gst_message_parse_error (msg, &err, &debug);
362 g_printerr (_("ERROR: from element %s: %s\n"), name, err->message);
364 g_printerr (_("Additional debug info:\n%s\n"), debug);
372 print_tag (const GstTagList * list, const gchar * tag, gpointer unused)
376 count = gst_tag_list_get_tag_size (list, tag);
378 for (i = 0; i < count; i++) {
381 if (gst_tag_get_type (tag) == G_TYPE_STRING) {
382 if (!gst_tag_list_get_string_index (list, tag, i, &str))
383 g_assert_not_reached ();
384 } else if (gst_tag_get_type (tag) == GST_TYPE_BUFFER) {
387 img = gst_value_get_buffer (gst_tag_list_get_value_index (list, tag, i));
391 caps_str = g_strdup ("unknown");
392 str = g_strdup_printf ("buffer of %" G_GSIZE_FORMAT " bytes, type: %s",
393 gst_buffer_get_size (img), caps_str);
396 str = g_strdup ("NULL buffer");
398 } else if (gst_tag_get_type (tag) == GST_TYPE_DATE_TIME) {
399 GstDateTime *dt = NULL;
401 gst_tag_list_get_date_time_index (list, tag, i, &dt);
402 if (gst_date_time_get_hour (dt) < 0) {
403 str = g_strdup_printf ("%02u-%02u-%04u", gst_date_time_get_day (dt),
404 gst_date_time_get_month (dt), gst_date_time_get_year (dt));
406 gdouble tz_offset = gst_date_time_get_time_zone_offset (dt);
409 if (tz_offset != 0.0) {
410 g_snprintf (tz_str, sizeof (tz_str), "(UTC %s%gh)",
411 (tz_offset > 0.0) ? "+" : "", tz_offset);
413 g_snprintf (tz_str, sizeof (tz_str), "(UTC)");
416 str = g_strdup_printf ("%04u-%02u-%02u %02u:%02u:%02u %s",
417 gst_date_time_get_year (dt), gst_date_time_get_month (dt),
418 gst_date_time_get_day (dt), gst_date_time_get_hour (dt),
419 gst_date_time_get_minute (dt), gst_date_time_get_second (dt),
422 gst_date_time_unref (dt);
425 g_strdup_value_contents (gst_tag_list_get_value_index (list, tag, i));
429 PRINT ("%16s: %s\n", gst_tag_get_nick (tag), str);
431 PRINT ("%16s: %s\n", "", str);
438 #ifndef DISABLE_FAULT_HANDLER
439 /* we only use sighandler here because the registers are not important */
441 sigint_handler_sighandler (int signum)
443 PRINT ("Caught interrupt -- ");
445 /* If we were waiting for an EOS, we still want to catch
446 * the next signal to shutdown properly (and the following one
447 * will quit the program). */
453 /* we set a flag that is checked by the mainloop, we cannot do much in the
454 * interrupt handler (no mutex or other blocking stuff) */
458 /* is called every 250 milliseconds (4 times a second), the interrupt handler
459 * will set a flag for us. We react to this by posting a message. */
461 check_intr (GstElement * pipeline)
467 PRINT ("handling interrupt.\n");
469 /* post an application specific message */
470 gst_element_post_message (GST_ELEMENT (pipeline),
471 gst_message_new_application (GST_OBJECT (pipeline),
472 gst_structure_new ("GstLaunchInterrupt",
473 "message", G_TYPE_STRING, "Pipeline interrupted", NULL)));
475 /* remove timeout handler */
483 struct sigaction action;
485 memset (&action, 0, sizeof (action));
486 action.sa_handler = sigint_handler_sighandler;
488 sigaction (SIGINT, &action, NULL);
492 sigint_restore (void)
494 struct sigaction action;
496 memset (&action, 0, sizeof (action));
497 action.sa_handler = SIG_DFL;
499 sigaction (SIGINT, &action, NULL);
501 #endif /* DISABLE_FAULT_HANDLER */
503 /* returns ELR_ERROR if there was an error
504 * or ELR_INTERRUPT if we caught a keyboard interrupt
505 * or ELR_NO_ERROR otherwise. */
506 static EventLoopResult
507 event_loop (GstElement * pipeline, gboolean blocking, GstState target_state)
509 #ifndef DISABLE_FAULT_HANDLER
513 GstMessage *message = NULL;
514 EventLoopResult res = ELR_NO_ERROR;
515 gboolean buffering = FALSE;
517 bus = gst_element_get_bus (GST_ELEMENT (pipeline));
519 #ifndef DISABLE_FAULT_HANDLER
520 timeout_id = g_timeout_add (250, (GSourceFunc) check_intr, pipeline);
524 message = gst_bus_poll (bus, GST_MESSAGE_ANY, blocking ? -1 : 0);
526 /* if the poll timed out, only when !blocking */
530 /* check if we need to dump messages to the console */
533 const GstStructure *s;
536 seqnum = gst_message_get_seqnum (message);
538 s = gst_message_get_structure (message);
540 src_obj = GST_MESSAGE_SRC (message);
542 if (GST_IS_ELEMENT (src_obj)) {
543 PRINT (_("Got message #%u from element \"%s\" (%s): "),
544 (guint) seqnum, GST_ELEMENT_NAME (src_obj),
545 GST_MESSAGE_TYPE_NAME (message));
546 } else if (GST_IS_PAD (src_obj)) {
547 PRINT (_("Got message #%u from pad \"%s:%s\" (%s): "),
548 (guint) seqnum, GST_DEBUG_PAD_NAME (src_obj),
549 GST_MESSAGE_TYPE_NAME (message));
550 } else if (GST_IS_OBJECT (src_obj)) {
551 PRINT (_("Got message #%u from object \"%s\" (%s): "),
552 (guint) seqnum, GST_OBJECT_NAME (src_obj),
553 GST_MESSAGE_TYPE_NAME (message));
555 PRINT (_("Got message #%u (%s): "), (guint) seqnum,
556 GST_MESSAGE_TYPE_NAME (message));
562 sstr = gst_structure_to_string (s);
563 PRINT ("%s\n", sstr);
566 PRINT ("no message details\n");
570 switch (GST_MESSAGE_TYPE (message)) {
571 case GST_MESSAGE_NEW_CLOCK:
575 gst_message_parse_new_clock (message, &clock);
577 PRINT ("New clock: %s\n", (clock ? GST_OBJECT_NAME (clock) : "NULL"));
580 case GST_MESSAGE_CLOCK_LOST:
581 PRINT ("Clock lost, selecting a new one\n");
582 gst_element_set_state (pipeline, GST_STATE_PAUSED);
583 gst_element_set_state (pipeline, GST_STATE_PLAYING);
585 case GST_MESSAGE_EOS:{
587 PRINT (_("Got EOS from element \"%s\".\n"),
588 GST_MESSAGE_SRC_NAME (message));
591 case GST_MESSAGE_TAG:
595 if (GST_IS_ELEMENT (GST_MESSAGE_SRC (message))) {
596 PRINT (_("FOUND TAG : found by element \"%s\".\n"),
597 GST_MESSAGE_SRC_NAME (message));
598 } else if (GST_IS_PAD (GST_MESSAGE_SRC (message))) {
599 PRINT (_("FOUND TAG : found by pad \"%s:%s\".\n"),
600 GST_DEBUG_PAD_NAME (GST_MESSAGE_SRC (message)));
601 } else if (GST_IS_OBJECT (GST_MESSAGE_SRC (message))) {
602 PRINT (_("FOUND TAG : found by object \"%s\".\n"),
603 GST_MESSAGE_SRC_NAME (message));
605 PRINT (_("FOUND TAG\n"));
608 gst_message_parse_tag (message, &tags);
609 gst_tag_list_foreach (tags, print_tag, NULL);
610 gst_tag_list_free (tags);
613 case GST_MESSAGE_INFO:{
616 gchar *name = gst_object_get_path_string (GST_MESSAGE_SRC (message));
618 gst_message_parse_info (message, &gerror, &debug);
620 PRINT (_("INFO:\n%s\n"), debug);
622 g_error_free (gerror);
627 case GST_MESSAGE_WARNING:{
630 gchar *name = gst_object_get_path_string (GST_MESSAGE_SRC (message));
632 /* dump graph on warning */
633 GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
634 GST_DEBUG_GRAPH_SHOW_ALL, "gst-launch.warning");
636 gst_message_parse_warning (message, &gerror, &debug);
637 PRINT (_("WARNING: from element %s: %s\n"), name, gerror->message);
639 PRINT (_("Additional debug info:\n%s\n"), debug);
641 g_error_free (gerror);
646 case GST_MESSAGE_ERROR:{
647 /* dump graph on error */
648 GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
649 GST_DEBUG_GRAPH_SHOW_ALL, "gst-launch.error");
651 print_error_message (message);
653 /* we have an error */
657 case GST_MESSAGE_STATE_CHANGED:{
658 GstState old, new, pending;
660 /* we only care about pipeline state change messages */
661 if (GST_MESSAGE_SRC (message) != GST_OBJECT_CAST (pipeline))
664 /* ignore when we are buffering since then we mess with the states
667 PRINT (_("Prerolled, waiting for buffering to finish...\n"));
671 gst_message_parse_state_changed (message, &old, &new, &pending);
673 /* if we reached the final target state, exit */
674 if (target_state == GST_STATE_PAUSED && new == target_state)
677 /* else not an interesting message */
680 case GST_MESSAGE_BUFFERING:{
683 gst_message_parse_buffering (message, &percent);
684 PRINT ("%s %d%% \r", _("buffering..."), percent);
686 /* no state management needed for live pipelines */
690 if (percent == 100) {
691 /* a 100% message means buffering is done */
693 /* if the desired state is playing, go back */
694 if (target_state == GST_STATE_PLAYING) {
695 PRINT (_("Done buffering, setting pipeline to PLAYING ...\n"));
696 gst_element_set_state (pipeline, GST_STATE_PLAYING);
701 if (buffering == FALSE && target_state == GST_STATE_PLAYING) {
702 /* we were not buffering but PLAYING, PAUSE the pipeline. */
703 PRINT (_("Buffering, setting pipeline to PAUSED ...\n"));
704 gst_element_set_state (pipeline, GST_STATE_PAUSED);
710 case GST_MESSAGE_LATENCY:
712 PRINT (_("Redistribute latency...\n"));
713 gst_bin_recalculate_latency (GST_BIN (pipeline));
716 case GST_MESSAGE_REQUEST_STATE:
719 gchar *name = gst_object_get_path_string (GST_MESSAGE_SRC (message));
721 gst_message_parse_request_state (message, &state);
723 PRINT (_("Setting state to %s as requested by %s...\n"),
724 gst_element_state_get_name (state), name);
726 gst_element_set_state (pipeline, state);
731 case GST_MESSAGE_APPLICATION:{
732 const GstStructure *s;
734 s = gst_message_get_structure (message);
736 if (gst_structure_has_name (s, "GstLaunchInterrupt")) {
737 /* this application message is posted when we caught an interrupt and
738 * we need to stop the pipeline. */
739 PRINT (_("Interrupt: Stopping pipeline ...\n"));
745 case GST_MESSAGE_ELEMENT:{
746 if (gst_is_missing_plugin_message (message)) {
749 desc = gst_missing_plugin_message_get_description (message);
750 PRINT (_("Missing element: %s\n"), desc ? desc : "(no description)");
755 /* just be quiet by default */
759 gst_message_unref (message);
761 g_assert_not_reached ();
766 gst_message_unref (message);
767 gst_object_unref (bus);
768 #ifndef DISABLE_FAULT_HANDLER
769 g_source_remove (timeout_id);
775 static GstBusSyncReply
776 bus_sync_handler (GstBus * bus, GstMessage * message, gpointer data)
778 GstElement *pipeline = (GstElement *) data;
780 switch (GST_MESSAGE_TYPE (message)) {
781 case GST_MESSAGE_STATE_CHANGED:
782 /* we only care about pipeline state change messages */
783 if (GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (pipeline)) {
784 GstState old, new, pending;
785 gchar *state_transition_name;
787 gst_message_parse_state_changed (message, &old, &new, &pending);
789 state_transition_name = g_strdup_printf ("%s_%s",
790 gst_element_state_get_name (old), gst_element_state_get_name (new));
792 /* dump graph for (some) pipeline state changes */
794 gchar *dump_name = g_strconcat ("gst-launch.", state_transition_name,
796 GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
797 GST_DEBUG_GRAPH_SHOW_ALL, dump_name);
801 /* place a marker into e.g. strace logs */
803 gchar *access_name = g_strconcat (g_get_tmp_dir (), G_DIR_SEPARATOR_S,
804 "gst-launch", G_DIR_SEPARATOR_S, state_transition_name, NULL);
805 g_file_test (access_name, G_FILE_TEST_EXISTS);
806 g_free (access_name);
809 g_free (state_transition_name);
818 main (int argc, char *argv[])
821 gboolean verbose = FALSE;
822 gboolean no_fault = FALSE;
823 gboolean trace = FALSE;
824 gboolean eos_on_shutdown = FALSE;
825 gboolean check_index = FALSE;
826 gchar *savefile = NULL;
827 gchar *exclude_args = NULL;
828 #ifndef GST_DISABLE_OPTION_PARSING
829 GOptionEntry options[] = {
830 {"tags", 't', 0, G_OPTION_ARG_NONE, &tags,
831 N_("Output tags (also known as metadata)"), NULL},
832 {"verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose,
833 N_("Output status information and property notifications"), NULL},
834 {"quiet", 'q', 0, G_OPTION_ARG_NONE, &quiet,
835 N_("Do not print any progress information"), NULL},
836 {"messages", 'm', 0, G_OPTION_ARG_NONE, &messages,
837 N_("Output messages"), NULL},
838 {"exclude", 'X', 0, G_OPTION_ARG_NONE, &exclude_args,
839 N_("Do not output status information of TYPE"), N_("TYPE1,TYPE2,...")},
840 {"no-fault", 'f', 0, G_OPTION_ARG_NONE, &no_fault,
841 N_("Do not install a fault handler"), NULL},
842 {"trace", 'T', 0, G_OPTION_ARG_NONE, &trace,
843 N_("Print alloc trace (if enabled at compile time)"), NULL},
844 {"eos-on-shutdown", 'e', 0, G_OPTION_ARG_NONE, &eos_on_shutdown,
845 N_("Force EOS on sources before shutting the pipeline down"), NULL},
846 {"index", 'i', 0, G_OPTION_ARG_NONE, &check_index,
847 N_("Gather and print index statistics"), NULL},
848 GST_TOOLS_GOPTION_VERSION,
855 GPtrArray *index_stats = NULL;
857 GError *error = NULL;
860 free (malloc (8)); /* -lefence */
863 bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
864 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
865 textdomain (GETTEXT_PACKAGE);
868 g_thread_init (NULL);
870 gst_tools_set_prgname ("gst-launch");
872 #ifndef GST_DISABLE_OPTION_PARSING
873 ctx = g_option_context_new ("PIPELINE-DESCRIPTION");
874 g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
875 g_option_context_add_group (ctx, gst_init_get_option_group ());
876 if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
878 g_printerr ("Error initializing: %s\n", GST_STR_NULL (err->message));
880 g_printerr ("Error initializing: Unknown error!\n");
883 g_option_context_free (ctx);
885 gst_init (&argc, &argv);
888 gst_tools_print_version ("gst-launch");
890 #ifndef DISABLE_FAULT_HANDLER
898 if (!gst_alloc_trace_available ()) {
899 g_warning ("Trace not available (recompile with trace enabled).");
901 gst_alloc_trace_set_flags_all (GST_ALLOC_TRACE_LIVE |
902 GST_ALLOC_TRACE_MEM_LIVE);
903 gst_alloc_trace_print_live ();
906 /* make a null-terminated version of argv */
907 argvn = g_new0 (char *, argc);
908 memcpy (argvn, argv + 1, sizeof (char *) * (argc - 1));
911 (GstElement *) gst_parse_launchv ((const gchar **) argvn, &error);
917 g_printerr (_("ERROR: pipeline could not be constructed: %s.\n"),
918 GST_STR_NULL (error->message));
919 g_error_free (error);
921 g_printerr (_("ERROR: pipeline could not be constructed.\n"));
925 g_printerr (_("WARNING: erroneous pipeline: %s\n"),
926 GST_STR_NULL (error->message));
927 g_error_free (error);
932 gchar **exclude_list =
933 exclude_args ? g_strsplit (exclude_args, ",", 0) : NULL;
934 g_signal_connect (pipeline, "deep-notify",
935 G_CALLBACK (gst_object_default_deep_notify), exclude_list);
939 GstState state, pending;
940 GstStateChangeReturn ret;
943 /* If the top-level object is not a pipeline, place it in a pipeline. */
944 if (!GST_IS_PIPELINE (pipeline)) {
945 GstElement *real_pipeline = gst_element_factory_make ("pipeline", NULL);
947 if (real_pipeline == NULL) {
948 g_printerr (_("ERROR: the 'pipeline' element wasn't found.\n"));
951 gst_bin_add (GST_BIN (real_pipeline), pipeline);
952 pipeline = real_pipeline;
956 /* gst_index_new() creates a null-index, it does not store anything, but
957 * the entry-added signal works and this is what we use to build the
959 index = gst_index_new ();
961 index_stats = g_ptr_array_new ();
962 g_signal_connect (G_OBJECT (index), "entry-added",
963 G_CALLBACK (entry_added), index_stats);
964 g_object_set (G_OBJECT (index), "resolver", GST_INDEX_RESOLVER_GTYPE,
966 gst_element_set_index (pipeline, index);
970 bus = gst_element_get_bus (pipeline);
971 gst_bus_set_sync_handler (bus, bus_sync_handler, (gpointer) pipeline);
972 gst_object_unref (bus);
974 PRINT (_("Setting pipeline to PAUSED ...\n"));
975 ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
978 case GST_STATE_CHANGE_FAILURE:
979 g_printerr (_("ERROR: Pipeline doesn't want to pause.\n"));
981 event_loop (pipeline, FALSE, GST_STATE_VOID_PENDING);
983 case GST_STATE_CHANGE_NO_PREROLL:
984 PRINT (_("Pipeline is live and does not need PREROLL ...\n"));
987 case GST_STATE_CHANGE_ASYNC:
988 PRINT (_("Pipeline is PREROLLING ...\n"));
989 caught_error = event_loop (pipeline, TRUE, GST_STATE_PAUSED);
991 g_printerr (_("ERROR: pipeline doesn't want to preroll.\n"));
994 state = GST_STATE_PAUSED;
996 case GST_STATE_CHANGE_SUCCESS:
997 PRINT (_("Pipeline is PREROLLED ...\n"));
1001 caught_error = event_loop (pipeline, FALSE, GST_STATE_PLAYING);
1004 g_printerr (_("ERROR: pipeline doesn't want to preroll.\n"));
1006 GstClockTime tfthen, tfnow;
1007 GstClockTimeDiff diff;
1009 PRINT (_("Setting pipeline to PLAYING ...\n"));
1011 if (gst_element_set_state (pipeline,
1012 GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) {
1013 GstMessage *err_msg;
1016 g_printerr (_("ERROR: pipeline doesn't want to play.\n"));
1017 bus = gst_element_get_bus (pipeline);
1018 if ((err_msg = gst_bus_poll (bus, GST_MESSAGE_ERROR, 0))) {
1019 print_error_message (err_msg);
1020 gst_message_unref (err_msg);
1022 gst_object_unref (bus);
1027 tfthen = gst_util_get_timestamp ();
1028 caught_error = event_loop (pipeline, TRUE, GST_STATE_PLAYING);
1029 if (eos_on_shutdown && caught_error == ELR_INTERRUPT) {
1030 PRINT (_("EOS on shutdown enabled -- Forcing EOS on the pipeline\n"));
1032 gst_element_send_event (pipeline, gst_event_new_eos ());
1033 PRINT (_("Waiting for EOS...\n"));
1034 caught_error = event_loop (pipeline, TRUE, GST_STATE_PLAYING);
1036 if (caught_error == ELR_NO_ERROR) {
1038 PRINT (_("EOS received - stopping pipeline...\n"));
1039 } else if (caught_error == ELR_ERROR) {
1040 PRINT (_("An error happened while waiting for EOS\n"));
1043 tfnow = gst_util_get_timestamp ();
1045 diff = GST_CLOCK_DIFF (tfthen, tfnow);
1047 PRINT (_("Execution ended after %" G_GUINT64_FORMAT " ns.\n"), diff);
1050 PRINT (_("Setting pipeline to PAUSED ...\n"));
1051 gst_element_set_state (pipeline, GST_STATE_PAUSED);
1052 if (caught_error == ELR_NO_ERROR)
1053 gst_element_get_state (pipeline, &state, &pending, GST_CLOCK_TIME_NONE);
1055 /* iterate mainloop to process pending stuff */
1056 while (g_main_context_iteration (NULL, FALSE));
1058 PRINT (_("Setting pipeline to READY ...\n"));
1059 gst_element_set_state (pipeline, GST_STATE_READY);
1060 gst_element_get_state (pipeline, &state, &pending, GST_CLOCK_TIME_NONE);
1063 print_index_stats (index_stats);
1064 g_ptr_array_free (index_stats, TRUE);
1068 PRINT (_("Setting pipeline to NULL ...\n"));
1069 gst_element_set_state (pipeline, GST_STATE_NULL);
1070 gst_element_get_state (pipeline, &state, &pending, GST_CLOCK_TIME_NONE);
1073 PRINT (_("Freeing pipeline ...\n"));
1074 gst_object_unref (pipeline);
1078 gst_alloc_trace_print_live ();