2004-01-20 14:09:42 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
* 2004 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
*
|
|
|
|
* gst-launch.c: tool to launch GStreamer pipelines from the command line
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
/* FIXME: hack alert */
|
2009-12-02 06:37:51 +00:00
|
|
|
#ifdef HAVE_WIN32
|
2004-05-07 02:36:28 +00:00
|
|
|
#define DISABLE_FAULT_HANDLER
|
|
|
|
#endif
|
|
|
|
|
2009-10-07 07:00:05 +00:00
|
|
|
#include <stdio.h>
|
2000-08-28 20:20:55 +00:00
|
|
|
#include <string.h>
|
2002-11-14 02:49:16 +00:00
|
|
|
#include <signal.h>
|
2004-05-07 02:36:28 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2003-06-29 14:05:49 +00:00
|
|
|
#include <unistd.h>
|
2004-05-07 02:36:28 +00:00
|
|
|
#endif
|
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
2002-11-14 02:49:16 +00:00
|
|
|
#include <sys/wait.h>
|
2004-05-07 02:36:28 +00:00
|
|
|
#endif
|
2004-03-15 19:27:17 +00:00
|
|
|
#include <locale.h> /* for LC_ALL */
|
2006-05-05 17:07:42 +00:00
|
|
|
#include "tools.h"
|
2000-01-30 10:44:33 +00:00
|
|
|
|
2003-07-01 03:45:19 +00:00
|
|
|
/* FIXME: This is just a temporary hack. We should have a better
|
|
|
|
* check for siginfo handling. */
|
|
|
|
#ifdef SA_SIGINFO
|
|
|
|
#define USE_SIGINFO
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern volatile gboolean glib_on_error_halt;
|
2004-05-07 02:36:28 +00:00
|
|
|
|
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
2003-07-01 03:45:19 +00:00
|
|
|
static void fault_restore (void);
|
|
|
|
static void fault_spin (void);
|
|
|
|
static void sigint_restore (void);
|
2005-10-11 16:05:16 +00:00
|
|
|
static gboolean caught_intr = FALSE;
|
2004-05-07 02:36:28 +00:00
|
|
|
#endif
|
2003-07-01 03:45:19 +00:00
|
|
|
|
2009-03-26 16:08:01 +00:00
|
|
|
/* event_loop return codes */
|
|
|
|
typedef enum _EventLoopResult
|
|
|
|
{
|
|
|
|
ELR_NO_ERROR = 0,
|
|
|
|
ELR_ERROR,
|
|
|
|
ELR_INTERRUPT
|
|
|
|
} EventLoopResult;
|
|
|
|
|
2003-07-01 03:45:19 +00:00
|
|
|
static GstElement *pipeline;
|
2009-03-26 16:08:01 +00:00
|
|
|
static EventLoopResult caught_error = ELR_NO_ERROR;
|
2009-02-09 20:49:05 +00:00
|
|
|
static gboolean quiet = FALSE;
|
2005-07-15 10:30:49 +00:00
|
|
|
static gboolean tags = FALSE;
|
|
|
|
static gboolean messages = FALSE;
|
2007-08-17 13:48:24 +00:00
|
|
|
static gboolean is_live = FALSE;
|
2009-03-31 21:14:08 +00:00
|
|
|
static gboolean waiting_eos = FALSE;
|
2005-01-06 03:31:17 +00:00
|
|
|
|
2009-02-19 12:45:53 +00:00
|
|
|
/* convenience macro so we don't have to litter the code with if(!quiet) */
|
2009-02-19 12:57:17 +00:00
|
|
|
#define PRINT if(!quiet)g_print
|
2001-07-23 00:57:06 +00:00
|
|
|
|
2003-02-10 20:32:32 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2004-03-13 15:27:01 +00:00
|
|
|
static GstElement *
|
|
|
|
xmllaunch_parse_cmdline (const gchar ** argv)
|
2002-01-14 07:18:43 +00:00
|
|
|
{
|
2002-01-15 05:57:14 +00:00
|
|
|
GstElement *pipeline = NULL, *e;
|
2002-01-14 07:18:43 +00:00
|
|
|
GstXML *xml;
|
|
|
|
gboolean err;
|
2002-01-15 05:57:14 +00:00
|
|
|
const gchar *arg;
|
|
|
|
gchar *element, *property, *value;
|
2002-01-14 07:18:43 +00:00
|
|
|
GList *l;
|
2002-01-15 05:57:14 +00:00
|
|
|
gint i = 0;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-15 05:57:14 +00:00
|
|
|
if (!(arg = argv[0])) {
|
2004-03-13 15:27:01 +00:00
|
|
|
g_print (_
|
2004-03-15 19:27:17 +00:00
|
|
|
("Usage: gst-xmllaunch <file.xml> [ element.property=value ... ]\n"));
|
2002-01-14 07:18:43 +00:00
|
|
|
exit (1);
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-14 07:18:43 +00:00
|
|
|
xml = gst_xml_new ();
|
GCC 4 fixen.
Original commit message from CVS:
2005-05-04 Andy Wingo <wingo@pobox.com>
* check/Makefile.am:
* docs/gst/tmpl/gstatomic.sgml:
* docs/gst/tmpl/gstplugin.sgml:
* gst/base/gstbasesink.c: (gst_basesink_activate):
* gst/base/gstbasesrc.c: (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
(gst_basesrc_query), (gst_basesrc_set_property),
(gst_basesrc_get_property), (gst_basesrc_check_get_range),
(gst_basesrc_activate):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
(gst_base_transform_src_activate):
* gst/elements/gstelements.c:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_set_property), (gst_fakesrc_get_property):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/elements/gsttypefindelement.c: (find_element_get_length),
(gst_type_find_element_checkgetrange),
(gst_type_find_element_activate):
* gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
* gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
(gst_caps_load_thyself):
* gst/gstelement.c: (gst_element_pads_activate),
(gst_element_save_thyself), (gst_element_restore_thyself):
* gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
(gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
* gst/gstpad.h:
* gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
(gst_xml_parse_file), (gst_xml_parse_memory),
(gst_xml_get_element), (gst_xml_make_element):
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(_file_index_id_save_xml), (gst_file_index_commit):
* gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
(read_enum), (load_pad_template), (load_feature), (load_plugin),
(load_paths):
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
(gst_dp_packet_from_event), (gst_dp_caps_from_packet):
* tools/gst-complete.c: (main):
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_element_properties_info):
* tools/gst-launch.c: (xmllaunch_parse_cmdline):
* tools/gst-xmlinspect.c: (print_element_properties):
GCC 4 fixen.
2005-05-04 21:29:44 +00:00
|
|
|
/* FIXME guchar from gstxml.c */
|
|
|
|
err = gst_xml_parse_file (xml, (guchar *) arg, NULL);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-14 07:18:43 +00:00
|
|
|
if (err != TRUE) {
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("ERROR: parse of xml file '%s' failed.\n"), arg);
|
2002-01-14 07:18:43 +00:00
|
|
|
exit (1);
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-14 07:18:43 +00:00
|
|
|
l = gst_xml_get_topelements (xml);
|
2002-01-15 05:57:14 +00:00
|
|
|
if (!l) {
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("ERROR: no toplevel pipeline element in file '%s'.\n"), arg);
|
2002-01-15 05:57:14 +00:00
|
|
|
exit (1);
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2009-02-19 12:45:53 +00:00
|
|
|
if (l->next) {
|
|
|
|
g_printerr ("%s",
|
|
|
|
_("WARNING: only one toplevel element is supported at this time.\n"));
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-15 05:57:14 +00:00
|
|
|
pipeline = GST_ELEMENT (l->data);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-15 05:57:14 +00:00
|
|
|
while ((arg = argv[++i])) {
|
|
|
|
element = g_strdup (arg);
|
|
|
|
property = strchr (element, '.');
|
|
|
|
value = strchr (element, '=');
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-15 05:57:14 +00:00
|
|
|
if (!(element < property && property < value)) {
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("ERROR: could not parse command line argument %d: %s.\n"),
|
|
|
|
i, element);
|
2002-01-15 05:57:14 +00:00
|
|
|
g_free (element);
|
|
|
|
exit (1);
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-15 05:57:14 +00:00
|
|
|
*property++ = '\0';
|
|
|
|
*value++ = '\0';
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-15 05:57:14 +00:00
|
|
|
e = gst_bin_get_by_name (GST_BIN (pipeline), element);
|
|
|
|
if (!e) {
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("WARNING: element named '%s' not found.\n"), element);
|
2002-01-15 05:57:14 +00:00
|
|
|
} else {
|
|
|
|
gst_util_set_object_arg (G_OBJECT (e), property, value);
|
|
|
|
}
|
2002-01-15 05:58:45 +00:00
|
|
|
g_free (element);
|
2002-01-15 05:57:14 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-14 07:18:43 +00:00
|
|
|
if (!l)
|
|
|
|
return NULL;
|
2006-08-21 15:19:40 +00:00
|
|
|
|
|
|
|
gst_object_ref (pipeline);
|
|
|
|
gst_object_unref (xml);
|
|
|
|
return pipeline;
|
2002-01-14 07:18:43 +00:00
|
|
|
}
|
2003-02-10 20:32:32 +00:00
|
|
|
#endif
|
2002-01-14 07:18:43 +00:00
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
2003-04-13 21:11:12 +00:00
|
|
|
#ifndef USE_SIGINFO
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
2003-04-13 21:11:12 +00:00
|
|
|
fault_handler_sighandler (int signum)
|
2002-11-14 02:49:16 +00:00
|
|
|
{
|
2003-04-13 21:11:12 +00:00
|
|
|
fault_restore ();
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2005-01-06 03:31:17 +00:00
|
|
|
/* printf is used instead of g_print(), since it's less likely to
|
|
|
|
* deadlock */
|
2003-08-19 05:43:55 +00:00
|
|
|
switch (signum) {
|
|
|
|
case SIGSEGV:
|
2005-01-06 03:31:17 +00:00
|
|
|
printf ("Caught SIGSEGV\n");
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
|
|
|
case SIGQUIT:
|
2005-01-06 03:31:17 +00:00
|
|
|
printf ("Caught SIGQUIT\n");
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
2005-01-06 03:31:17 +00:00
|
|
|
printf ("signo: %d\n", signum);
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
2003-04-13 21:11:12 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
fault_spin ();
|
2003-04-13 21:11:12 +00:00
|
|
|
}
|
|
|
|
|
2005-03-10 12:51:45 +00:00
|
|
|
#else /* USE_SIGINFO */
|
2003-04-13 21:11:12 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
fault_handler_sigaction (int signum, siginfo_t * si, void *misc)
|
2003-04-13 21:11:12 +00:00
|
|
|
{
|
2002-12-19 20:59:48 +00:00
|
|
|
fault_restore ();
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2005-01-06 03:31:17 +00:00
|
|
|
/* printf is used instead of g_print(), since it's less likely to
|
|
|
|
* deadlock */
|
2003-08-19 05:43:55 +00:00
|
|
|
switch (si->si_signo) {
|
|
|
|
case SIGSEGV:
|
2005-01-06 03:31:17 +00:00
|
|
|
printf ("Caught SIGSEGV accessing address %p\n", si->si_addr);
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
|
|
|
case SIGQUIT:
|
2005-01-06 03:31:17 +00:00
|
|
|
printf ("Caught SIGQUIT\n");
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
2005-01-06 03:31:17 +00:00
|
|
|
printf ("signo: %d\n", si->si_signo);
|
|
|
|
printf ("errno: %d\n", si->si_errno);
|
|
|
|
printf ("code: %d\n", si->si_code);
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
2002-12-19 20:59:48 +00:00
|
|
|
}
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
fault_spin ();
|
2003-04-13 21:11:12 +00:00
|
|
|
}
|
2005-03-10 12:51:45 +00:00
|
|
|
#endif /* USE_SIGINFO */
|
2003-04-13 21:11:12 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
fault_spin (void)
|
|
|
|
{
|
|
|
|
int spinning = TRUE;
|
|
|
|
|
2002-12-19 20:59:48 +00:00
|
|
|
glib_on_error_halt = FALSE;
|
|
|
|
g_on_error_stack_trace ("gst-launch");
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2002-12-19 20:59:48 +00:00
|
|
|
wait (NULL);
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2002-12-19 20:59:48 +00:00
|
|
|
/* FIXME how do we know if we were run by libtool? */
|
2005-01-06 03:31:17 +00:00
|
|
|
printf ("Spinning. Please run 'gdb gst-launch %d' to continue debugging, "
|
2004-03-13 15:27:01 +00:00
|
|
|
"Ctrl-C to quit, or Ctrl-\\ to dump core.\n", (gint) getpid ());
|
|
|
|
while (spinning)
|
|
|
|
g_usleep (1000000);
|
2002-11-14 02:49:16 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
2002-12-19 20:59:48 +00:00
|
|
|
fault_restore (void)
|
2002-11-14 02:49:16 +00:00
|
|
|
{
|
2002-12-19 20:59:48 +00:00
|
|
|
struct sigaction action;
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2002-12-19 20:59:48 +00:00
|
|
|
memset (&action, 0, sizeof (action));
|
|
|
|
action.sa_handler = SIG_DFL;
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2003-08-19 05:43:55 +00:00
|
|
|
sigaction (SIGSEGV, &action, NULL);
|
|
|
|
sigaction (SIGQUIT, &action, NULL);
|
2002-11-14 02:49:16 +00:00
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
2002-12-19 20:59:48 +00:00
|
|
|
fault_setup (void)
|
2002-11-14 02:49:16 +00:00
|
|
|
{
|
2002-12-19 20:59:48 +00:00
|
|
|
struct sigaction action;
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2002-12-19 20:59:48 +00:00
|
|
|
memset (&action, 0, sizeof (action));
|
2003-04-13 21:11:12 +00:00
|
|
|
#ifdef USE_SIGINFO
|
|
|
|
action.sa_sigaction = fault_handler_sigaction;
|
2002-12-19 20:59:48 +00:00
|
|
|
action.sa_flags = SA_SIGINFO;
|
2003-04-13 21:11:12 +00:00
|
|
|
#else
|
|
|
|
action.sa_handler = fault_handler_sighandler;
|
|
|
|
#endif
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2002-12-19 20:59:48 +00:00
|
|
|
sigaction (SIGSEGV, &action, NULL);
|
|
|
|
sigaction (SIGQUIT, &action, NULL);
|
2002-11-14 02:49:16 +00:00
|
|
|
}
|
2005-03-10 12:51:45 +00:00
|
|
|
#endif /* DISABLE_FAULT_HANDLER */
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2003-11-24 02:09:23 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
print_tag (const GstTagList * list, const gchar * tag, gpointer unused)
|
2003-11-24 02:09:23 +00:00
|
|
|
{
|
|
|
|
gint i, count;
|
|
|
|
|
|
|
|
count = gst_tag_list_get_tag_size (list, tag);
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++) {
|
2003-11-24 22:10:06 +00:00
|
|
|
gchar *str;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-11-24 22:10:06 +00:00
|
|
|
if (gst_tag_get_type (tag) == G_TYPE_STRING) {
|
2004-08-03 14:29:31 +00:00
|
|
|
if (!gst_tag_list_get_string_index (list, tag, i, &str))
|
|
|
|
g_assert_not_reached ();
|
2006-05-12 16:50:37 +00:00
|
|
|
} else if (gst_tag_get_type (tag) == GST_TYPE_BUFFER) {
|
|
|
|
GstBuffer *img;
|
|
|
|
|
|
|
|
img = gst_value_get_buffer (gst_tag_list_get_value_index (list, tag, i));
|
|
|
|
if (img) {
|
|
|
|
gchar *caps_str;
|
|
|
|
|
|
|
|
caps_str = GST_BUFFER_CAPS (img) ?
|
|
|
|
gst_caps_to_string (GST_BUFFER_CAPS (img)) : g_strdup ("unknown");
|
|
|
|
str = g_strdup_printf ("buffer of %u bytes, type: %s",
|
|
|
|
GST_BUFFER_SIZE (img), caps_str);
|
|
|
|
g_free (caps_str);
|
2006-05-13 17:50:11 +00:00
|
|
|
} else {
|
|
|
|
str = g_strdup ("NULL buffer");
|
2006-05-12 16:50:37 +00:00
|
|
|
}
|
2003-11-24 22:10:06 +00:00
|
|
|
} else {
|
2004-03-13 15:27:01 +00:00
|
|
|
str =
|
2004-03-15 19:27:17 +00:00
|
|
|
g_strdup_value_contents (gst_tag_list_get_value_index (list, tag, i));
|
2003-11-24 22:10:06 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-11-24 02:09:23 +00:00
|
|
|
if (i == 0) {
|
2006-08-15 10:08:34 +00:00
|
|
|
g_print ("%16s: %s\n", gst_tag_get_nick (tag), str);
|
2003-11-24 02:09:23 +00:00
|
|
|
} else {
|
2006-08-15 10:08:34 +00:00
|
|
|
g_print ("%16s: %s\n", "", str);
|
2003-11-24 02:09:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free (str);
|
|
|
|
}
|
|
|
|
}
|
2004-08-12 09:12:13 +00:00
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
2003-07-01 03:45:19 +00:00
|
|
|
/* we only use sighandler here because the registers are not important */
|
2004-01-13 13:44:10 +00:00
|
|
|
static void
|
2003-07-01 03:45:19 +00:00
|
|
|
sigint_handler_sighandler (int signum)
|
|
|
|
{
|
2005-03-10 12:51:45 +00:00
|
|
|
g_print ("Caught interrupt -- ");
|
|
|
|
|
2009-03-26 16:08:01 +00:00
|
|
|
/* If we were waiting for an EOS, we still want to catch
|
|
|
|
* the next signal to shutdown properly (and the following one
|
|
|
|
* will quit the program). */
|
|
|
|
if (waiting_eos) {
|
|
|
|
waiting_eos = FALSE;
|
|
|
|
} else {
|
|
|
|
sigint_restore ();
|
|
|
|
}
|
2006-09-15 10:43:16 +00:00
|
|
|
/* we set a flag that is checked by the mainloop, we cannot do much in the
|
|
|
|
* interrupt handler (no mutex or other blocking stuff) */
|
2003-07-01 03:45:19 +00:00
|
|
|
caught_intr = TRUE;
|
|
|
|
}
|
|
|
|
|
2009-11-07 20:22:49 +00:00
|
|
|
/* is called every 250 milliseconds (4 times a second), the interrupt handler
|
2006-09-15 10:43:16 +00:00
|
|
|
* will set a flag for us. We react to this by posting a message. */
|
2005-03-21 17:34:02 +00:00
|
|
|
static gboolean
|
|
|
|
check_intr (GstElement * pipeline)
|
|
|
|
{
|
|
|
|
if (!caught_intr) {
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
caught_intr = FALSE;
|
2006-09-15 10:43:16 +00:00
|
|
|
g_print ("handling interrupt.\n");
|
2005-06-25 17:51:12 +00:00
|
|
|
|
2006-09-15 10:43:16 +00:00
|
|
|
/* post an application specific message */
|
|
|
|
gst_element_post_message (GST_ELEMENT (pipeline),
|
|
|
|
gst_message_new_application (GST_OBJECT (pipeline),
|
|
|
|
gst_structure_new ("GstLaunchInterrupt",
|
|
|
|
"message", G_TYPE_STRING, "Pipeline interrupted", NULL)));
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2006-09-15 10:43:16 +00:00
|
|
|
/* remove timeout handler */
|
2005-03-21 17:34:02 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-01 03:45:19 +00:00
|
|
|
static void
|
|
|
|
sigint_setup (void)
|
|
|
|
{
|
|
|
|
struct sigaction action;
|
|
|
|
|
|
|
|
memset (&action, 0, sizeof (action));
|
|
|
|
action.sa_handler = sigint_handler_sighandler;
|
|
|
|
|
|
|
|
sigaction (SIGINT, &action, NULL);
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
2003-07-01 03:45:19 +00:00
|
|
|
sigint_restore (void)
|
|
|
|
{
|
|
|
|
struct sigaction action;
|
|
|
|
|
|
|
|
memset (&action, 0, sizeof (action));
|
|
|
|
action.sa_handler = SIG_DFL;
|
|
|
|
|
2003-08-19 05:43:55 +00:00
|
|
|
sigaction (SIGINT, &action, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
play_handler (int signum)
|
|
|
|
{
|
|
|
|
switch (signum) {
|
|
|
|
case SIGUSR1:
|
2005-03-21 17:34:02 +00:00
|
|
|
g_print ("Caught SIGUSR1 - Play request.\n");
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
|
|
|
case SIGUSR2:
|
2005-03-21 17:34:02 +00:00
|
|
|
g_print ("Caught SIGUSR2 - Stop request.\n");
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
play_signal_setup (void)
|
2003-08-19 05:43:55 +00:00
|
|
|
{
|
|
|
|
struct sigaction action;
|
|
|
|
|
|
|
|
memset (&action, 0, sizeof (action));
|
|
|
|
action.sa_handler = play_handler;
|
|
|
|
sigaction (SIGUSR1, &action, NULL);
|
|
|
|
sigaction (SIGUSR2, &action, NULL);
|
2003-07-01 03:45:19 +00:00
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
#endif /* DISABLE_FAULT_HANDLER */
|
|
|
|
|
2009-03-26 16:08:01 +00:00
|
|
|
/* returns ELR_ERROR if there was an error
|
|
|
|
* or ELR_INTERRUPT if we caught a keyboard interrupt
|
|
|
|
* or ELR_NO_ERROR otherwise. */
|
|
|
|
static EventLoopResult
|
2006-02-04 11:56:18 +00:00
|
|
|
event_loop (GstElement * pipeline, gboolean blocking, GstState target_state)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
|
|
|
GstBus *bus;
|
|
|
|
GstMessage *message = NULL;
|
2009-03-26 16:08:01 +00:00
|
|
|
EventLoopResult res = ELR_NO_ERROR;
|
2006-09-15 10:43:16 +00:00
|
|
|
gboolean buffering = FALSE;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
bus = gst_element_get_bus (GST_ELEMENT (pipeline));
|
|
|
|
|
2005-10-07 15:13:25 +00:00
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
2009-11-07 20:22:49 +00:00
|
|
|
g_timeout_add (250, (GSourceFunc) check_intr, pipeline);
|
2005-10-07 15:13:25 +00:00
|
|
|
#endif
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
while (TRUE) {
|
GstBusHandler -> GstBusFunc, return value has the same meaning as any other GSource (FALSE == remove source).
Original commit message from CVS:
* check/gst/gstbin.c: (pop_messages), (GST_START_TEST):
* check/gst/gstbus.c: (message_func_eos), (message_func_app),
(send_messages), (GST_START_TEST), (gstbus_suite):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/cleanup.c: (run_pipeline):
* check/pipelines/simple_launch_lines.c: (run_pipeline),
(GST_START_TEST):
* gst/gstbus.c: (gst_bus_have_pending), (gst_bus_source_prepare),
(gst_bus_source_check), (gst_bus_source_dispatch),
(gst_bus_create_watch), (gst_bus_add_watch_full),
(gst_bus_add_watch), (poll_func), (poll_timeout), (gst_bus_poll):
* gst/gstbus.h:
* tools/gst-launch.c: (event_loop):
* tools/gst-md5sum.c: (event_loop):
GstBusHandler -> GstBusFunc, return value has the same meaning as
any other GSource (FALSE == remove source).
_add_watch() and _add_watch_full() now take a MessageType mask to
only handle specific types of messages.
_poll() returns the GstMessage instead of the message type to avoid
race conditions.
_have_pending() takes a MessageType mask now too.
Added testsuite for multiple bus watches.
Fix testsuites and applications for new bus API.
2005-09-19 11:18:03 +00:00
|
|
|
message = gst_bus_poll (bus, GST_MESSAGE_ANY, blocking ? -1 : 0);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
/* if the poll timed out, only when !blocking */
|
2006-09-15 10:43:16 +00:00
|
|
|
if (message == NULL)
|
|
|
|
goto exit;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2006-09-15 10:43:16 +00:00
|
|
|
/* check if we need to dump messages to the console */
|
2005-07-15 10:30:49 +00:00
|
|
|
if (messages) {
|
2009-06-03 23:29:31 +00:00
|
|
|
GstObject *src_obj;
|
2005-07-15 10:30:49 +00:00
|
|
|
const GstStructure *s;
|
2008-11-04 15:52:09 +00:00
|
|
|
guint32 seqnum;
|
|
|
|
|
|
|
|
seqnum = gst_message_get_seqnum (message);
|
2005-07-15 10:30:49 +00:00
|
|
|
|
|
|
|
s = gst_message_get_structure (message);
|
2005-10-08 09:38:19 +00:00
|
|
|
|
2009-06-03 23:29:31 +00:00
|
|
|
src_obj = GST_MESSAGE_SRC (message);
|
|
|
|
|
|
|
|
if (GST_IS_ELEMENT (src_obj)) {
|
|
|
|
g_print (_("Got message #%u from element \"%s\" (%s): "),
|
|
|
|
(guint) seqnum, GST_ELEMENT_NAME (src_obj),
|
|
|
|
GST_MESSAGE_TYPE_NAME (message));
|
|
|
|
} else if (GST_IS_PAD (src_obj)) {
|
|
|
|
g_print (_("Got message #%u from pad \"%s:%s\" (%s): "),
|
|
|
|
(guint) seqnum, GST_DEBUG_PAD_NAME (src_obj),
|
|
|
|
GST_MESSAGE_TYPE_NAME (message));
|
|
|
|
} else if (GST_IS_OBJECT (src_obj)) {
|
|
|
|
g_print (_("Got message #%u from object \"%s\" (%s): "),
|
|
|
|
(guint) seqnum, GST_OBJECT_NAME (src_obj),
|
|
|
|
GST_MESSAGE_TYPE_NAME (message));
|
|
|
|
} else {
|
|
|
|
g_print (_("Got message #%u (%s): "), (guint) seqnum,
|
|
|
|
GST_MESSAGE_TYPE_NAME (message));
|
|
|
|
}
|
2009-05-14 10:30:04 +00:00
|
|
|
|
2005-08-15 18:15:38 +00:00
|
|
|
if (s) {
|
|
|
|
gchar *sstr;
|
|
|
|
|
|
|
|
sstr = gst_structure_to_string (s);
|
|
|
|
g_print ("%s\n", sstr);
|
|
|
|
g_free (sstr);
|
2005-10-08 09:38:19 +00:00
|
|
|
} else {
|
|
|
|
g_print ("no message details\n");
|
2005-08-15 18:15:38 +00:00
|
|
|
}
|
2005-07-15 10:30:49 +00:00
|
|
|
}
|
|
|
|
|
GstBusHandler -> GstBusFunc, return value has the same meaning as any other GSource (FALSE == remove source).
Original commit message from CVS:
* check/gst/gstbin.c: (pop_messages), (GST_START_TEST):
* check/gst/gstbus.c: (message_func_eos), (message_func_app),
(send_messages), (GST_START_TEST), (gstbus_suite):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/cleanup.c: (run_pipeline):
* check/pipelines/simple_launch_lines.c: (run_pipeline),
(GST_START_TEST):
* gst/gstbus.c: (gst_bus_have_pending), (gst_bus_source_prepare),
(gst_bus_source_check), (gst_bus_source_dispatch),
(gst_bus_create_watch), (gst_bus_add_watch_full),
(gst_bus_add_watch), (poll_func), (poll_timeout), (gst_bus_poll):
* gst/gstbus.h:
* tools/gst-launch.c: (event_loop):
* tools/gst-md5sum.c: (event_loop):
GstBusHandler -> GstBusFunc, return value has the same meaning as
any other GSource (FALSE == remove source).
_add_watch() and _add_watch_full() now take a MessageType mask to
only handle specific types of messages.
_poll() returns the GstMessage instead of the message type to avoid
race conditions.
_have_pending() takes a MessageType mask now too.
Added testsuite for multiple bus watches.
Fix testsuites and applications for new bus API.
2005-09-19 11:18:03 +00:00
|
|
|
switch (GST_MESSAGE_TYPE (message)) {
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
case GST_MESSAGE_NEW_CLOCK:
|
|
|
|
{
|
|
|
|
GstClock *clock;
|
|
|
|
|
|
|
|
gst_message_parse_new_clock (message, &clock);
|
|
|
|
|
2007-02-23 17:42:06 +00:00
|
|
|
g_print ("New clock: %s\n", (clock ? GST_OBJECT_NAME (clock) : "NULL"));
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-04-10 12:15:36 +00:00
|
|
|
case GST_MESSAGE_CLOCK_LOST:
|
2009-04-16 10:01:50 +00:00
|
|
|
#if 0
|
|
|
|
/* disabled for now as it caused problems with rtspsrc. We need to fix
|
|
|
|
* rtspsrc first, then release -good before we can reenable this again
|
|
|
|
*/
|
2009-04-10 12:15:36 +00:00
|
|
|
g_print ("Clock lost, selecting a new one\n");
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
2009-04-16 10:01:50 +00:00
|
|
|
#endif
|
2009-04-10 12:15:36 +00:00
|
|
|
break;
|
2009-05-14 10:30:04 +00:00
|
|
|
case GST_MESSAGE_EOS:{
|
2009-03-31 21:14:08 +00:00
|
|
|
waiting_eos = FALSE;
|
2009-06-03 23:29:31 +00:00
|
|
|
g_print (_("Got EOS from element \"%s\".\n"),
|
|
|
|
GST_MESSAGE_SRC_NAME (message));
|
2006-09-15 10:43:16 +00:00
|
|
|
goto exit;
|
2009-05-14 10:30:04 +00:00
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
case GST_MESSAGE_TAG:
|
|
|
|
if (tags) {
|
|
|
|
GstTagList *tags;
|
2009-06-03 23:29:31 +00:00
|
|
|
|
|
|
|
if (GST_IS_ELEMENT (GST_MESSAGE_SRC (message))) {
|
|
|
|
g_print (_("FOUND TAG : found by element \"%s\".\n"),
|
|
|
|
GST_MESSAGE_SRC_NAME (message));
|
|
|
|
} else if (GST_IS_PAD (GST_MESSAGE_SRC (message))) {
|
|
|
|
g_print (_("FOUND TAG : found by pad \"%s:%s\".\n"),
|
|
|
|
GST_DEBUG_PAD_NAME (GST_MESSAGE_SRC (message)));
|
|
|
|
} else if (GST_IS_OBJECT (GST_MESSAGE_SRC (message))) {
|
|
|
|
g_print (_("FOUND TAG : found by object \"%s\".\n"),
|
|
|
|
GST_MESSAGE_SRC_NAME (message));
|
|
|
|
} else {
|
|
|
|
g_print (_("FOUND TAG\n"));
|
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
gst_message_parse_tag (message, &tags);
|
|
|
|
gst_tag_list_foreach (tags, print_tag, NULL);
|
|
|
|
gst_tag_list_free (tags);
|
|
|
|
}
|
|
|
|
break;
|
2007-03-08 16:26:44 +00:00
|
|
|
case GST_MESSAGE_INFO:{
|
|
|
|
GError *gerror;
|
|
|
|
gchar *debug;
|
|
|
|
gchar *name = gst_object_get_path_string (GST_MESSAGE_SRC (message));
|
|
|
|
|
|
|
|
gst_message_parse_info (message, &gerror, &debug);
|
|
|
|
if (debug) {
|
|
|
|
g_print (_("INFO:\n%s\n"), debug);
|
|
|
|
}
|
|
|
|
g_error_free (gerror);
|
|
|
|
g_free (debug);
|
|
|
|
g_free (name);
|
|
|
|
break;
|
|
|
|
}
|
2005-06-25 17:51:12 +00:00
|
|
|
case GST_MESSAGE_WARNING:{
|
|
|
|
GError *gerror;
|
|
|
|
gchar *debug;
|
2007-02-21 15:30:53 +00:00
|
|
|
gchar *name = gst_object_get_path_string (GST_MESSAGE_SRC (message));
|
2005-06-25 17:51:12 +00:00
|
|
|
|
2007-10-17 12:58:23 +00:00
|
|
|
/* dump graph on warning */
|
|
|
|
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
|
2007-10-29 13:46:25 +00:00
|
|
|
GST_DEBUG_GRAPH_SHOW_ALL, "gst-launch.warning");
|
2007-10-17 12:58:23 +00:00
|
|
|
|
2005-06-25 17:51:12 +00:00
|
|
|
gst_message_parse_warning (message, &gerror, &debug);
|
2007-02-21 15:30:53 +00:00
|
|
|
g_print (_("WARNING: from element %s: %s\n"), name, gerror->message);
|
2005-06-25 17:51:12 +00:00
|
|
|
if (debug) {
|
2007-02-21 15:30:53 +00:00
|
|
|
g_print (_("Additional debug info:\n%s\n"), debug);
|
2005-06-25 17:51:12 +00:00
|
|
|
}
|
2007-02-21 15:30:53 +00:00
|
|
|
g_error_free (gerror);
|
2005-06-25 17:51:12 +00:00
|
|
|
g_free (debug);
|
2007-02-21 15:30:53 +00:00
|
|
|
g_free (name);
|
2005-06-25 17:51:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
case GST_MESSAGE_ERROR:{
|
|
|
|
GError *gerror;
|
|
|
|
gchar *debug;
|
|
|
|
|
2007-10-17 12:58:23 +00:00
|
|
|
/* dump graph on error */
|
|
|
|
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
|
2007-10-29 13:46:25 +00:00
|
|
|
GST_DEBUG_GRAPH_SHOW_ALL, "gst-launch.error");
|
2007-10-17 12:58:23 +00:00
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
gst_message_parse_error (message, &gerror, &debug);
|
Revert unpopular change for GST_MESSAGE_SRC to GObject.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* gst/gstbin.c: (bin_bus_handler):
* gst/gstmessage.c: (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_custom):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
* tools/gst-md5sum.c: (event_loop):
Revert unpopular change for GST_MESSAGE_SRC to GObject.
2005-08-25 10:51:14 +00:00
|
|
|
gst_object_default_error (GST_MESSAGE_SRC (message), gerror, debug);
|
2007-02-21 15:30:53 +00:00
|
|
|
g_error_free (gerror);
|
2005-03-21 17:34:02 +00:00
|
|
|
g_free (debug);
|
2006-09-15 10:43:16 +00:00
|
|
|
/* we have an error */
|
2009-03-26 16:08:01 +00:00
|
|
|
res = ELR_ERROR;
|
2006-09-15 10:43:16 +00:00
|
|
|
goto exit;
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
case GST_MESSAGE_STATE_CHANGED:{
|
2005-10-08 08:58:45 +00:00
|
|
|
GstState old, new, pending;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
Seriously, this is better than a previous commit as we only need to notify the fact that an element changed state in ...
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstmessage.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_new_state_dirty), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_parse_state_changed),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
Seriously, this is better than a previous commit as we only need
to notify the fact that an element changed state in a streaming
thread, marking the state of the parents dirty, hence the
STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
message.
2005-10-18 16:25:38 +00:00
|
|
|
gst_message_parse_state_changed (message, &old, &new, &pending);
|
2006-09-15 10:43:16 +00:00
|
|
|
|
|
|
|
/* we only care about pipeline state change messages */
|
|
|
|
if (GST_MESSAGE_SRC (message) != GST_OBJECT_CAST (pipeline))
|
|
|
|
break;
|
|
|
|
|
2008-02-05 09:24:18 +00:00
|
|
|
/* dump graph for pipeline state changes */
|
|
|
|
{
|
|
|
|
gchar *dump_name = g_strdup_printf ("gst-launch.%s_%s",
|
|
|
|
gst_element_state_get_name (old),
|
|
|
|
gst_element_state_get_name (new));
|
|
|
|
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
|
|
|
|
GST_DEBUG_GRAPH_SHOW_ALL, dump_name);
|
|
|
|
g_free (dump_name);
|
|
|
|
}
|
2007-10-17 12:58:23 +00:00
|
|
|
|
2006-09-15 10:43:16 +00:00
|
|
|
/* ignore when we are buffering since then we mess with the states
|
|
|
|
* ourselves. */
|
2007-05-12 15:38:02 +00:00
|
|
|
if (buffering) {
|
2009-02-19 12:57:17 +00:00
|
|
|
PRINT (_("Prerolled, waiting for buffering to finish...\n"));
|
2005-03-21 17:34:02 +00:00
|
|
|
break;
|
2007-05-12 15:38:02 +00:00
|
|
|
}
|
2006-09-15 10:43:16 +00:00
|
|
|
|
|
|
|
/* if we reached the final target state, exit */
|
|
|
|
if (target_state == GST_STATE_PAUSED && new == target_state)
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
/* else not an interesting message */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_MESSAGE_BUFFERING:{
|
|
|
|
gint percent;
|
|
|
|
|
|
|
|
gst_message_parse_buffering (message, &percent);
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT ("%s %d%% \r", _("buffering..."), percent);
|
2007-08-17 13:48:24 +00:00
|
|
|
|
|
|
|
/* no state management needed for live pipelines */
|
|
|
|
if (is_live)
|
|
|
|
break;
|
2006-09-15 10:43:16 +00:00
|
|
|
|
|
|
|
if (percent == 100) {
|
|
|
|
/* a 100% message means buffering is done */
|
|
|
|
buffering = FALSE;
|
|
|
|
/* if the desired state is playing, go back */
|
|
|
|
if (target_state == GST_STATE_PLAYING) {
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Done buffering, setting pipeline to PLAYING ...\n"));
|
2006-09-15 10:43:16 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
|
|
} else
|
|
|
|
goto exit;
|
|
|
|
} else {
|
|
|
|
/* buffering busy */
|
|
|
|
if (buffering == FALSE && target_state == GST_STATE_PLAYING) {
|
|
|
|
/* we were not buffering but PLAYING, PAUSE the pipeline. */
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Buffering, setting pipeline to PAUSED ...\n"));
|
2006-09-15 10:43:16 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
|
|
|
}
|
2007-05-12 15:38:02 +00:00
|
|
|
buffering = TRUE;
|
2006-09-15 10:43:16 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-11-21 08:09:00 +00:00
|
|
|
case GST_MESSAGE_LATENCY:
|
|
|
|
{
|
2009-02-19 12:57:17 +00:00
|
|
|
PRINT (_("Redistribute latency...\n"));
|
2008-11-21 08:09:00 +00:00
|
|
|
gst_bin_recalculate_latency (GST_BIN (pipeline));
|
|
|
|
break;
|
|
|
|
}
|
2009-02-18 14:31:55 +00:00
|
|
|
case GST_MESSAGE_REQUEST_STATE:
|
|
|
|
{
|
|
|
|
GstState state;
|
|
|
|
gchar *name = gst_object_get_path_string (GST_MESSAGE_SRC (message));
|
|
|
|
|
|
|
|
gst_message_parse_request_state (message, &state);
|
|
|
|
|
2009-02-19 12:57:17 +00:00
|
|
|
PRINT (_("Setting state to %s as requested by %s...\n"),
|
2009-02-18 14:31:55 +00:00
|
|
|
gst_element_state_get_name (state), name);
|
|
|
|
|
|
|
|
gst_element_set_state (pipeline, state);
|
|
|
|
|
|
|
|
g_free (name);
|
|
|
|
break;
|
|
|
|
}
|
2006-09-15 10:43:16 +00:00
|
|
|
case GST_MESSAGE_APPLICATION:{
|
|
|
|
const GstStructure *s;
|
|
|
|
|
|
|
|
s = gst_message_get_structure (message);
|
|
|
|
|
|
|
|
if (gst_structure_has_name (s, "GstLaunchInterrupt")) {
|
|
|
|
/* this application message is posted when we caught an interrupt and
|
|
|
|
* we need to stop the pipeline. */
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Interrupt: Stopping pipeline ...\n"));
|
2009-03-26 16:08:01 +00:00
|
|
|
res = ELR_INTERRUPT;
|
2006-09-15 10:43:16 +00:00
|
|
|
goto exit;
|
2005-05-17 10:41:51 +00:00
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
/* just be quiet by default */
|
|
|
|
break;
|
|
|
|
}
|
2006-09-15 10:43:16 +00:00
|
|
|
if (message)
|
|
|
|
gst_message_unref (message);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
g_assert_not_reached ();
|
2006-09-15 10:43:16 +00:00
|
|
|
|
|
|
|
exit:
|
|
|
|
{
|
|
|
|
if (message)
|
|
|
|
gst_message_unref (message);
|
|
|
|
gst_object_unref (bus);
|
|
|
|
return res;
|
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
2003-07-01 03:45:19 +00:00
|
|
|
|
2001-01-21 16:06:42 +00:00
|
|
|
int
|
2004-03-13 15:27:01 +00:00
|
|
|
main (int argc, char *argv[])
|
2001-01-21 16:06:42 +00:00
|
|
|
{
|
2002-04-16 14:45:53 +00:00
|
|
|
/* options */
|
2003-02-03 20:30:59 +00:00
|
|
|
gboolean verbose = FALSE;
|
2002-12-30 18:29:16 +00:00
|
|
|
gboolean no_fault = FALSE;
|
2003-02-02 19:22:31 +00:00
|
|
|
gboolean trace = FALSE;
|
2009-03-26 16:08:01 +00:00
|
|
|
gboolean eos_on_shutdown = FALSE;
|
2002-04-07 23:32:16 +00:00
|
|
|
gchar *savefile = NULL;
|
2002-04-16 14:45:53 +00:00
|
|
|
gchar *exclude_args = NULL;
|
2009-07-08 13:15:04 +00:00
|
|
|
#ifndef GST_DISABLE_OPTION_PARSING
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
GOptionEntry options[] = {
|
|
|
|
{"tags", 't', 0, G_OPTION_ARG_NONE, &tags,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Output tags (also known as metadata)"), NULL},
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
{"verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Output status information and property notifications"), NULL},
|
2009-02-09 20:49:05 +00:00
|
|
|
{"quiet", 'q', 0, G_OPTION_ARG_NONE, &quiet,
|
|
|
|
N_("Do not print any progress information"), NULL},
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
{"messages", 'm', 0, G_OPTION_ARG_NONE, &messages,
|
|
|
|
N_("Output messages"), NULL},
|
|
|
|
{"exclude", 'X', 0, G_OPTION_ARG_NONE, &exclude_args,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Do not output status information of TYPE"), N_("TYPE1,TYPE2,...")},
|
2003-02-10 20:32:32 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
{"output", 'o', 0, G_OPTION_ARG_STRING, &savefile,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Save xml representation of pipeline to FILE and exit"), N_("FILE")},
|
2003-02-10 20:32:32 +00:00
|
|
|
#endif
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
{"no-fault", 'f', 0, G_OPTION_ARG_NONE, &no_fault,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Do not install a fault handler"), NULL},
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
{"trace", 'T', 0, G_OPTION_ARG_NONE, &trace,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Print alloc trace (if enabled at compile time)"), NULL},
|
2009-03-26 16:08:01 +00:00
|
|
|
{"eos-on-shutdown", 'e', 0, G_OPTION_ARG_NONE, &eos_on_shutdown,
|
|
|
|
N_("Force EOS on sources before shutting the pipeline down"), NULL},
|
2006-05-05 17:07:42 +00:00
|
|
|
GST_TOOLS_GOPTION_VERSION,
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
{NULL}
|
2002-02-24 17:08:07 +00:00
|
|
|
};
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
GOptionContext *ctx;
|
|
|
|
GError *err = NULL;
|
2009-07-08 13:15:04 +00:00
|
|
|
#endif
|
2002-01-15 05:57:14 +00:00
|
|
|
gchar **argvn;
|
2002-04-07 23:32:16 +00:00
|
|
|
GError *error = NULL;
|
2002-11-20 21:29:29 +00:00
|
|
|
gint res = 0;
|
2001-01-09 04:39:35 +00:00
|
|
|
|
2004-03-15 19:27:17 +00:00
|
|
|
free (malloc (8)); /* -lefence */
|
2001-12-14 14:28:27 +00:00
|
|
|
|
2005-10-11 16:05:16 +00:00
|
|
|
#ifdef ENABLE_NLS
|
2004-01-13 13:44:10 +00:00
|
|
|
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
2004-03-13 15:27:01 +00:00
|
|
|
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
2004-01-13 13:44:10 +00:00
|
|
|
textdomain (GETTEXT_PACKAGE);
|
2004-05-07 02:36:28 +00:00
|
|
|
#endif
|
2003-08-19 08:11:58 +00:00
|
|
|
|
2007-01-05 15:55:16 +00:00
|
|
|
if (!g_thread_supported ())
|
|
|
|
g_thread_init (NULL);
|
|
|
|
|
2009-12-03 11:31:19 +00:00
|
|
|
gst_tools_print_version ("gst-launch");
|
|
|
|
|
2009-07-08 13:15:04 +00:00
|
|
|
#ifndef GST_DISABLE_OPTION_PARSING
|
2006-05-05 17:45:41 +00:00
|
|
|
ctx = g_option_context_new ("PIPELINE-DESCRIPTION");
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
|
|
|
|
g_option_context_add_group (ctx, gst_init_get_option_group ());
|
|
|
|
if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
|
2006-07-08 13:22:32 +00:00
|
|
|
if (err)
|
|
|
|
g_print ("Error initializing: %s\n", GST_STR_NULL (err->message));
|
|
|
|
else
|
|
|
|
g_print ("Error initializing: Unknown error!\n");
|
Merged in popt removal + GOption addition patch from Ronald, bug #169772.
Original commit message from CVS:
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug
#169772.
* docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
GstElement macros around, remove popt-related symbols, add goption
stuff.
* configure.ac: Remove popt checks, require GLib 2.6 for GOption.
* docs/gst/Makefile.am:
* docs/libs/Makefile.am: No POPT_CFLAGS.
* examples/manual/Makefile.am:
* docs/manual/basics-init.xml: Doc updates with an example.
* gst/gst.c: (gst_init_get_option_group), (gst_init_check),
(gst_init), (parse_one_option), (parse_goption_arg):
* gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
bit of hand merging and debugging to get the GOption stuff working
tho.
* tests/Makefile.am:
* tools/Makefile.am:
* tools/gst-inspect.c: (main):
* tools/gst-launch.c: (main):
* tools/gst-run.c: (main):
* tools/gst-xmlinspect.c: (main): Thanks Ronald!
2005-10-10 15:53:59 +00:00
|
|
|
exit (1);
|
|
|
|
}
|
2005-10-13 09:57:15 +00:00
|
|
|
g_option_context_free (ctx);
|
2009-07-08 13:15:04 +00:00
|
|
|
#else
|
|
|
|
gst_init (&argc, &argv);
|
|
|
|
#endif
|
2003-04-04 20:33:05 +00:00
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
2002-12-30 18:29:16 +00:00
|
|
|
if (!no_fault)
|
2004-03-13 15:27:01 +00:00
|
|
|
fault_setup ();
|
|
|
|
|
|
|
|
sigint_setup ();
|
|
|
|
play_signal_setup ();
|
2004-05-07 02:36:28 +00:00
|
|
|
#endif
|
2003-07-01 03:45:19 +00:00
|
|
|
|
2003-02-03 20:30:59 +00:00
|
|
|
if (trace) {
|
2004-03-13 15:27:01 +00:00
|
|
|
if (!gst_alloc_trace_available ()) {
|
2004-01-13 13:44:10 +00:00
|
|
|
g_warning ("Trace not available (recompile with trace enabled).");
|
2003-02-03 20:30:59 +00:00
|
|
|
}
|
2009-09-23 14:17:09 +00:00
|
|
|
gst_alloc_trace_set_flags_all (GST_ALLOC_TRACE_LIVE);
|
gst/base/gsttypefindhelper.c (gst_type_find_helper): Unref any remaining buffer.
Original commit message from CVS:
2005-06-27 Andy Wingo <wingo@pobox.com>
* gst/base/gsttypefindhelper.c (gst_type_find_helper): Unref any
remaining buffer.
* gst/gsttrace.c (gst_alloc_trace_list_sorted): New helper,
returns a sorted copy of the trace list.
(gst_alloc_trace_print_live): New API, only prints traces with
live objects. Sort the list.
(gst_alloc_trace_print_all): Sort the list.
(gst_alloc_trace_print): Align columns.
* gst/elements/gstttypefindelement.c:
* gst/elements/gsttee.c:
* gst/base/gstbasesrc.c:
* gst/base/gstbasesink.c:
* gst/base/gstbasetransform.c:
* gst/gstqueue.c: Adapt for pad activation changes.
* gst/gstpipeline.c (gst_pipeline_init): Unref after parenting
sched.
(gst_pipeline_dispose): Drop ref on sched.
* gst/gstpad.c (gst_pad_init): Set the default activate func.
(gst_pad_activate_default): Push mode by default.
(pre_activate_switch, post_activate_switch): New stubs, things to
do before and after switching activation modes on pads.
(gst_pad_set_active): Take a boolean and not a mode, dispatch to
the pad's activate function to choose which mode to activate.
Shortcut on deactivation and call the right function directly.
(gst_pad_activate_pull): New API, (de)activates a pad in pull
mode.
(gst_pad_activate_push): New API, same for push mode.
(gst_pad_set_activate_function)
(gst_pad_set_activatepull_function)
(gst_pad_set_activatepush_function): Setters for new API.
* gst/gstminiobject.c (gst_mini_object_new, gst_mini_object_free):
Trace all miniobjects.
(gst_mini_object_make_writable): Unref the arg if we copy, like
gst_caps_make_writable.
* gst/gstmessage.c (_gst_message_initialize): No trace init.
* gst/gstghostpad.c (gst_proxy_pad_do_activate)
(gst_proxy_pad_do_activatepull, gst_proxy_pad_do_activatepush):
Adapt for new pad API.
* gst/gstevent.c (_gst_event_initialize): Don't initialize trace.
* gst/gstelement.h:
* gst/gstelement.c (gst_element_iterate_src_pads)
(gst_element_iterate_sink_pads): New API functions.
* gst/gstelement.c (iterator_fold_with_resync): New utility,
should fold into gstiterator.c in some form.
(gst_element_pads_activate): Simplified via use of fold and
delegation of decisions to gstpad->activate.
* gst/gstbus.c (gst_bus_source_finalize): Set the bus to NULL,
help in debugging.
* gst/gstbuffer.c (_gst_buffer_initialize): Ref the buffer type
class once in init, like gstmessage. Didn't run into this issue
but it seems correct. Don't initialize a trace, gstminiobject does
that.
* check/pipelines/simple_launch_lines.c (test_stop_from_app): New
test, runs fakesrc ! fakesink, stopping on ::handoff via a message
to the bus.
(assert_live_count): New util function, uses alloc traces to check
cleanup.
* check/gst/gstghostpad.c (test_ghost_pads): More refcount checks.
To be modified when unlink drops the internal pad.
2005-06-27 18:35:05 +00:00
|
|
|
gst_alloc_trace_print_live ();
|
2003-02-03 20:30:59 +00:00
|
|
|
}
|
2003-02-02 19:22:31 +00:00
|
|
|
|
2002-01-15 05:57:14 +00:00
|
|
|
/* make a null-terminated version of argv */
|
2004-03-13 15:27:01 +00:00
|
|
|
argvn = g_new0 (char *, argc);
|
|
|
|
memcpy (argvn, argv + 1, sizeof (char *) * (argc - 1));
|
2003-02-10 20:32:32 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2002-01-14 04:09:56 +00:00
|
|
|
if (strstr (argv[0], "gst-xmllaunch")) {
|
2004-03-13 15:27:01 +00:00
|
|
|
pipeline = xmllaunch_parse_cmdline ((const gchar **) argvn);
|
|
|
|
} else
|
2003-02-10 20:32:32 +00:00
|
|
|
#endif
|
|
|
|
{
|
2004-03-13 15:27:01 +00:00
|
|
|
pipeline =
|
2004-03-15 19:27:17 +00:00
|
|
|
(GstElement *) gst_parse_launchv ((const gchar **) argvn, &error);
|
2001-06-02 18:26:25 +00:00
|
|
|
}
|
2002-09-17 21:32:26 +00:00
|
|
|
g_free (argvn);
|
2001-06-02 18:26:25 +00:00
|
|
|
|
2002-01-14 04:09:56 +00:00
|
|
|
if (!pipeline) {
|
2003-04-10 01:40:03 +00:00
|
|
|
if (error) {
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("ERROR: pipeline could not be constructed: %s.\n"),
|
2005-10-11 16:21:05 +00:00
|
|
|
GST_STR_NULL (error->message));
|
2003-04-10 01:40:03 +00:00
|
|
|
g_error_free (error);
|
|
|
|
} else {
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("ERROR: pipeline could not be constructed.\n"));
|
2003-04-10 01:40:03 +00:00
|
|
|
}
|
2004-08-12 09:12:13 +00:00
|
|
|
return 1;
|
2003-04-10 01:40:03 +00:00
|
|
|
} else if (error) {
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("WARNING: erroneous pipeline: %s\n"),
|
2005-10-11 16:21:05 +00:00
|
|
|
GST_STR_NULL (error->message));
|
2003-04-10 01:40:03 +00:00
|
|
|
g_error_free (error);
|
2005-10-04 11:51:37 +00:00
|
|
|
return 1;
|
2001-10-27 13:44:18 +00:00
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-02-03 20:30:59 +00:00
|
|
|
if (verbose) {
|
2004-03-13 15:27:01 +00:00
|
|
|
gchar **exclude_list =
|
2004-03-15 19:27:17 +00:00
|
|
|
exclude_args ? g_strsplit (exclude_args, ",", 0) : NULL;
|
2009-04-20 12:01:01 +00:00
|
|
|
g_signal_connect (pipeline, "deep-notify",
|
2005-03-21 17:34:02 +00:00
|
|
|
G_CALLBACK (gst_object_default_deep_notify), exclude_list);
|
2002-04-16 14:45:53 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2002-04-07 23:32:16 +00:00
|
|
|
if (savefile) {
|
2002-01-11 15:49:47 +00:00
|
|
|
gst_xml_write_file (GST_ELEMENT (pipeline), fopen (savefile, "w"));
|
2001-06-19 10:34:15 +00:00
|
|
|
}
|
2001-10-17 10:21:27 +00:00
|
|
|
#endif
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-04-07 23:32:16 +00:00
|
|
|
if (!savefile) {
|
2005-09-02 15:42:00 +00:00
|
|
|
GstState state, pending;
|
|
|
|
GstStateChangeReturn ret;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2006-09-18 13:44:12 +00:00
|
|
|
/* If the top-level object is not a pipeline, place it in a pipeline. */
|
|
|
|
if (!GST_IS_PIPELINE (pipeline)) {
|
2003-04-28 17:01:44 +00:00
|
|
|
GstElement *real_pipeline = gst_element_factory_make ("pipeline", NULL);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-04-28 17:01:44 +00:00
|
|
|
if (real_pipeline == NULL) {
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("ERROR: the 'pipeline' element wasn't found.\n"));
|
2004-08-12 09:12:13 +00:00
|
|
|
return 1;
|
2003-04-28 17:01:44 +00:00
|
|
|
}
|
|
|
|
gst_bin_add (GST_BIN (real_pipeline), pipeline);
|
|
|
|
pipeline = real_pipeline;
|
|
|
|
}
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Setting pipeline to PAUSED ...\n"));
|
2005-06-23 10:37:09 +00:00
|
|
|
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
|
|
|
|
|
|
|
switch (ret) {
|
2005-09-02 15:42:00 +00:00
|
|
|
case GST_STATE_CHANGE_FAILURE:
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("ERROR: Pipeline doesn't want to pause.\n"));
|
2005-06-23 10:37:09 +00:00
|
|
|
res = -1;
|
2006-02-04 11:56:18 +00:00
|
|
|
event_loop (pipeline, FALSE, GST_STATE_VOID_PENDING);
|
2005-06-23 10:37:09 +00:00
|
|
|
goto end;
|
2005-09-02 15:42:00 +00:00
|
|
|
case GST_STATE_CHANGE_NO_PREROLL:
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Pipeline is live and does not need PREROLL ...\n"));
|
2007-08-17 13:48:24 +00:00
|
|
|
is_live = TRUE;
|
2005-06-23 10:37:09 +00:00
|
|
|
break;
|
2005-09-02 15:42:00 +00:00
|
|
|
case GST_STATE_CHANGE_ASYNC:
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Pipeline is PREROLLING ...\n"));
|
2006-02-04 11:56:18 +00:00
|
|
|
caught_error = event_loop (pipeline, TRUE, GST_STATE_PAUSED);
|
|
|
|
if (caught_error) {
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("ERROR: pipeline doesn't want to preroll.\n"));
|
2006-02-04 11:56:18 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
state = GST_STATE_PAUSED;
|
2005-06-23 10:37:09 +00:00
|
|
|
/* fallthrough */
|
2005-09-02 15:42:00 +00:00
|
|
|
case GST_STATE_CHANGE_SUCCESS:
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Pipeline is PREROLLED ...\n"));
|
2005-06-23 10:37:09 +00:00
|
|
|
break;
|
2001-12-12 18:31:25 +00:00
|
|
|
}
|
2001-01-21 16:06:42 +00:00
|
|
|
|
2006-09-15 10:43:16 +00:00
|
|
|
caught_error = event_loop (pipeline, FALSE, GST_STATE_PLAYING);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
if (caught_error) {
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("ERROR: pipeline doesn't want to preroll.\n"));
|
2002-03-18 04:41:37 +00:00
|
|
|
} else {
|
2007-11-28 12:52:42 +00:00
|
|
|
GstClockTime tfthen, tfnow;
|
2005-03-21 17:34:02 +00:00
|
|
|
GstClockTimeDiff diff;
|
|
|
|
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Setting pipeline to PLAYING ...\n"));
|
2009-02-09 20:49:05 +00:00
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
if (gst_element_set_state (pipeline,
|
2005-09-02 15:42:00 +00:00
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) {
|
2007-09-23 10:16:49 +00:00
|
|
|
GstMessage *err_msg;
|
|
|
|
GstBus *bus;
|
|
|
|
|
2009-02-19 12:45:53 +00:00
|
|
|
g_printerr (_("ERROR: pipeline doesn't want to play.\n"));
|
2007-09-23 10:16:49 +00:00
|
|
|
bus = gst_element_get_bus (pipeline);
|
|
|
|
if ((err_msg = gst_bus_poll (bus, GST_MESSAGE_ERROR, 0))) {
|
|
|
|
GError *gerror;
|
|
|
|
gchar *debug;
|
|
|
|
|
|
|
|
gst_message_parse_error (err_msg, &gerror, &debug);
|
|
|
|
gst_object_default_error (GST_MESSAGE_SRC (err_msg), gerror, debug);
|
|
|
|
gst_message_unref (err_msg);
|
|
|
|
g_error_free (gerror);
|
|
|
|
g_free (debug);
|
|
|
|
}
|
|
|
|
gst_object_unref (bus);
|
2005-03-21 17:34:02 +00:00
|
|
|
res = -1;
|
|
|
|
goto end;
|
|
|
|
}
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2007-12-11 20:23:58 +00:00
|
|
|
tfthen = gst_util_get_timestamp ();
|
2006-09-15 10:43:16 +00:00
|
|
|
caught_error = event_loop (pipeline, TRUE, GST_STATE_PLAYING);
|
2009-03-26 16:08:01 +00:00
|
|
|
if (eos_on_shutdown && caught_error == ELR_INTERRUPT) {
|
|
|
|
PRINT (_("EOS on shutdown enabled -- Forcing EOS on the pipeline\n"));
|
|
|
|
waiting_eos = TRUE;
|
|
|
|
gst_element_send_event (pipeline, gst_event_new_eos ());
|
|
|
|
PRINT (_("Waiting for EOS...\n"));
|
|
|
|
caught_error = event_loop (pipeline, TRUE, GST_STATE_PLAYING);
|
|
|
|
|
|
|
|
if (caught_error == ELR_NO_ERROR) {
|
|
|
|
/* we got EOS */
|
|
|
|
PRINT (_("EOS received - stopping pipeline...\n"));
|
|
|
|
} else if (caught_error == ELR_ERROR) {
|
|
|
|
PRINT (_("An error happened while waiting for EOS\n"));
|
|
|
|
}
|
|
|
|
}
|
2007-12-11 20:23:58 +00:00
|
|
|
tfnow = gst_util_get_timestamp ();
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2007-11-28 12:52:42 +00:00
|
|
|
diff = GST_CLOCK_DIFF (tfthen, tfnow);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
g_print (_("Execution ended after %" G_GUINT64_FORMAT " ns.\n"), diff);
|
|
|
|
}
|
2006-09-15 10:43:16 +00:00
|
|
|
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Setting pipeline to PAUSED ...\n"));
|
2005-03-21 17:34:02 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
2009-03-26 16:08:01 +00:00
|
|
|
if (caught_error == ELR_NO_ERROR)
|
2007-07-03 17:01:51 +00:00
|
|
|
gst_element_get_state (pipeline, &state, &pending, GST_CLOCK_TIME_NONE);
|
2009-06-02 20:45:52 +00:00
|
|
|
|
|
|
|
/* iterate mainloop to process pending stuff */
|
|
|
|
while (g_main_context_iteration (NULL, FALSE));
|
|
|
|
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Setting pipeline to READY ...\n"));
|
2005-03-21 17:34:02 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_READY);
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
gst_element_get_state (pipeline, &state, &pending, GST_CLOCK_TIME_NONE);
|
2005-07-12 17:17:34 +00:00
|
|
|
|
|
|
|
end:
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Setting pipeline to NULL ...\n"));
|
2001-06-19 10:34:15 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
Use GstClockTime in _get_state() instead of GTimeVal.
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstelement.c: (GST_START_TEST):
* check/gst/gstevent.c: (GST_START_TEST), (test_event):
* check/gst/gstghostpad.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST):
* check/pipelines/simple_launch_lines.c: (run_pipeline):
* check/states/sinks.c: (GST_START_TEST):
* gst/elements/gsttypefindelement.c: (stop_typefinding):
* gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
(gst_bin_remove_func), (gst_bin_get_state_func),
(gst_bin_recalc_state), (gst_bin_change_state_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_get_state_func),
(gst_element_get_state), (gst_element_abort_state),
(gst_element_commit_state), (gst_element_set_state),
(gst_element_change_state), (gst_element_change_state_func):
* gst/gstelement.h:
* gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
(gst_pipeline_provide_clock_func):
* gst/gstutils.c: (gst_element_link_pads_filtered):
* tools/gst-launch.c: (main):
* tools/gst-typefind.c: (main):
Use GstClockTime in _get_state() instead of GTimeVal.
Remove old code in gstutils.c
2005-10-12 12:18:48 +00:00
|
|
|
gst_element_get_state (pipeline, &state, &pending, GST_CLOCK_TIME_NONE);
|
2001-06-19 10:34:15 +00:00
|
|
|
}
|
2002-11-20 21:29:29 +00:00
|
|
|
|
2009-02-19 12:45:53 +00:00
|
|
|
PRINT (_("Freeing pipeline ...\n"));
|
2005-06-28 09:59:01 +00:00
|
|
|
gst_object_unref (pipeline);
|
2000-08-28 20:20:55 +00:00
|
|
|
|
2005-07-11 15:10:40 +00:00
|
|
|
gst_deinit ();
|
2003-02-02 19:22:31 +00:00
|
|
|
if (trace)
|
gst/base/gsttypefindhelper.c (gst_type_find_helper): Unref any remaining buffer.
Original commit message from CVS:
2005-06-27 Andy Wingo <wingo@pobox.com>
* gst/base/gsttypefindhelper.c (gst_type_find_helper): Unref any
remaining buffer.
* gst/gsttrace.c (gst_alloc_trace_list_sorted): New helper,
returns a sorted copy of the trace list.
(gst_alloc_trace_print_live): New API, only prints traces with
live objects. Sort the list.
(gst_alloc_trace_print_all): Sort the list.
(gst_alloc_trace_print): Align columns.
* gst/elements/gstttypefindelement.c:
* gst/elements/gsttee.c:
* gst/base/gstbasesrc.c:
* gst/base/gstbasesink.c:
* gst/base/gstbasetransform.c:
* gst/gstqueue.c: Adapt for pad activation changes.
* gst/gstpipeline.c (gst_pipeline_init): Unref after parenting
sched.
(gst_pipeline_dispose): Drop ref on sched.
* gst/gstpad.c (gst_pad_init): Set the default activate func.
(gst_pad_activate_default): Push mode by default.
(pre_activate_switch, post_activate_switch): New stubs, things to
do before and after switching activation modes on pads.
(gst_pad_set_active): Take a boolean and not a mode, dispatch to
the pad's activate function to choose which mode to activate.
Shortcut on deactivation and call the right function directly.
(gst_pad_activate_pull): New API, (de)activates a pad in pull
mode.
(gst_pad_activate_push): New API, same for push mode.
(gst_pad_set_activate_function)
(gst_pad_set_activatepull_function)
(gst_pad_set_activatepush_function): Setters for new API.
* gst/gstminiobject.c (gst_mini_object_new, gst_mini_object_free):
Trace all miniobjects.
(gst_mini_object_make_writable): Unref the arg if we copy, like
gst_caps_make_writable.
* gst/gstmessage.c (_gst_message_initialize): No trace init.
* gst/gstghostpad.c (gst_proxy_pad_do_activate)
(gst_proxy_pad_do_activatepull, gst_proxy_pad_do_activatepush):
Adapt for new pad API.
* gst/gstevent.c (_gst_event_initialize): Don't initialize trace.
* gst/gstelement.h:
* gst/gstelement.c (gst_element_iterate_src_pads)
(gst_element_iterate_sink_pads): New API functions.
* gst/gstelement.c (iterator_fold_with_resync): New utility,
should fold into gstiterator.c in some form.
(gst_element_pads_activate): Simplified via use of fold and
delegation of decisions to gstpad->activate.
* gst/gstbus.c (gst_bus_source_finalize): Set the bus to NULL,
help in debugging.
* gst/gstbuffer.c (_gst_buffer_initialize): Ref the buffer type
class once in init, like gstmessage. Didn't run into this issue
but it seems correct. Don't initialize a trace, gstminiobject does
that.
* check/pipelines/simple_launch_lines.c (test_stop_from_app): New
test, runs fakesrc ! fakesink, stopping on ::handoff via a message
to the bus.
(assert_live_count): New util function, uses alloc traces to check
cleanup.
* check/gst/gstghostpad.c (test_ghost_pads): More refcount checks.
To be modified when unlink drops the internal pad.
2005-06-27 18:35:05 +00:00
|
|
|
gst_alloc_trace_print_live ();
|
2003-02-02 19:22:31 +00:00
|
|
|
|
2002-11-20 21:29:29 +00:00
|
|
|
return res;
|
2000-01-30 10:44:33 +00:00
|
|
|
}
|