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 */
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define DISABLE_FAULT_HANDLER
|
|
|
|
#endif
|
|
|
|
|
2000-08-28 20:20:55 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.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 */
|
2004-01-13 13:44:10 +00:00
|
|
|
#include "gst/gst-i18n-app.h"
|
2003-08-19 08:11:58 +00:00
|
|
|
|
2002-03-30 17:06:45 +00:00
|
|
|
#include <gst/gst.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);
|
2004-05-07 02:36:28 +00:00
|
|
|
#endif
|
2003-07-01 03:45:19 +00:00
|
|
|
|
2003-07-14 08:25:16 +00:00
|
|
|
static gint max_iterations = 0;
|
2003-07-01 03:45:19 +00:00
|
|
|
static GstElement *pipeline;
|
|
|
|
gboolean caught_intr = FALSE;
|
2004-08-12 09:12:13 +00:00
|
|
|
gboolean caught_error = FALSE;
|
2004-12-08 17:40:37 +00:00
|
|
|
gboolean tags = FALSE;
|
2001-12-24 12:30:09 +00:00
|
|
|
|
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 ();
|
2004-03-13 15:27:01 +00:00
|
|
|
err = gst_xml_parse_file (xml, arg, NULL);
|
|
|
|
|
2002-01-14 07:18:43 +00:00
|
|
|
if (err != TRUE) {
|
2004-01-13 13:44:10 +00:00
|
|
|
fprintf (stderr, _("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) {
|
2004-03-13 15:27:01 +00:00
|
|
|
fprintf (stderr, _("ERROR: no toplevel pipeline element in file '%s'.\n"),
|
2004-03-15 19:27:17 +00:00
|
|
|
arg);
|
2002-01-15 05:57:14 +00:00
|
|
|
exit (1);
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-01-15 05:57:14 +00:00
|
|
|
if (l->next)
|
2004-03-13 15:27:01 +00:00
|
|
|
fprintf (stderr,
|
2004-03-15 19:27:17 +00:00
|
|
|
_("WARNING: only one toplevel element is supported at this time."));
|
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)) {
|
2004-03-13 15:27:01 +00:00
|
|
|
fprintf (stderr,
|
2004-03-15 19:27:17 +00:00
|
|
|
_("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) {
|
2004-01-13 14:23:44 +00:00
|
|
|
fprintf (stderr, _("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;
|
|
|
|
else
|
|
|
|
return l->data;
|
|
|
|
}
|
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
|
|
|
|
2003-08-19 05:43:55 +00:00
|
|
|
switch (signum) {
|
|
|
|
case SIGSEGV:
|
|
|
|
g_print ("Caught SIGSEGV\n");
|
|
|
|
break;
|
|
|
|
case SIGQUIT:
|
|
|
|
g_print ("Caught SIGQUIT\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_print ("signo: %d\n", signum);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +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
|
|
|
|
2003-08-19 05:43:55 +00:00
|
|
|
switch (si->si_signo) {
|
|
|
|
case SIGSEGV:
|
|
|
|
g_print ("Caught SIGSEGV accessing address %p\n", si->si_addr);
|
|
|
|
break;
|
|
|
|
case SIGQUIT:
|
|
|
|
g_print ("Caught SIGQUIT\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_print ("signo: %d\n", si->si_signo);
|
|
|
|
g_print ("errno: %d\n", si->si_errno);
|
|
|
|
g_print ("code: %d\n", si->si_code);
|
|
|
|
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
|
|
|
}
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +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? */
|
|
|
|
g_print ("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
|
|
|
}
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +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 ();
|
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) {
|
|
|
|
g_print ("%15s: %s\n", gst_tag_get_nick (tag), str);
|
|
|
|
} else {
|
|
|
|
g_print (" : %s\n", str);
|
|
|
|
}
|
|
|
|
|
|
|
|
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-02-11 16:56:31 +00:00
|
|
|
g_print ("Caught interrupt -- ");
|
2004-01-13 13:44:10 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
sigint_restore ();
|
2003-07-01 03:45:19 +00:00
|
|
|
|
|
|
|
caught_intr = TRUE;
|
|
|
|
}
|
|
|
|
|
2005-02-11 16:56:31 +00:00
|
|
|
static gboolean
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
check_intr (GstElement * pipeline)
|
2005-02-11 16:56:31 +00:00
|
|
|
{
|
|
|
|
if (!caught_intr) {
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
caught_intr = FALSE;
|
2005-02-11 16:56:31 +00:00
|
|
|
g_print ("Pausing pipeline.\n");
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
|
2005-02-11 16:56:31 +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:
|
2004-01-13 13:44:10 +00:00
|
|
|
g_print ("Caught SIGUSR1 - Play request.\n");
|
2003-08-19 05:43:55 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
|
|
break;
|
|
|
|
case SIGUSR2:
|
2004-01-13 13:44:10 +00:00
|
|
|
g_print ("Caught SIGUSR2 - Stop request.\n");
|
2003-08-19 05:43:55 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
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
|
|
|
}
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
#endif /* DISABLE_FAULT_HANDLER */
|
2003-07-01 03:45:19 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
static gboolean
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
event_loop (GstElement * pipeline, gboolean blocking)
|
2004-12-08 17:40:37 +00:00
|
|
|
{
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
GstBus *bus;
|
|
|
|
GstMessageType revent;
|
|
|
|
GstMessage *message = NULL;
|
|
|
|
GstElementState old, new;
|
|
|
|
|
|
|
|
bus = gst_element_get_bus (GST_ELEMENT (pipeline));
|
|
|
|
|
|
|
|
g_timeout_add (50, (GSourceFunc) check_intr, pipeline);
|
|
|
|
|
|
|
|
while (TRUE) {
|
|
|
|
revent = gst_bus_poll (bus, GST_MESSAGE_ANY, blocking ? -1 : 0);
|
|
|
|
|
|
|
|
/* if the poll timed out, only when !blocking */
|
|
|
|
if (revent == GST_MESSAGE_UNKNOWN)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
message = gst_bus_pop (bus);
|
|
|
|
g_return_val_if_fail (message != NULL, TRUE);
|
|
|
|
|
|
|
|
switch (revent) {
|
|
|
|
case GST_MESSAGE_EOS:
|
|
|
|
gst_message_unref (message);
|
|
|
|
return FALSE;
|
|
|
|
case GST_MESSAGE_TAG:
|
|
|
|
if (tags) {
|
|
|
|
g_print (_("FOUND TAG : found by element \"%s\".\n"),
|
|
|
|
GST_STR_NULL (GST_ELEMENT_NAME (GST_MESSAGE_SRC (message))));
|
|
|
|
gst_tag_list_foreach (GST_MESSAGE_TAG_LIST (message), print_tag,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
gst_message_unref (message);
|
|
|
|
break;
|
|
|
|
case GST_MESSAGE_ERROR:
|
|
|
|
gst_object_default_error (GST_MESSAGE_SRC (message),
|
|
|
|
GST_MESSAGE_ERROR_GERROR (message),
|
|
|
|
GST_MESSAGE_ERROR_DEBUG (message));
|
|
|
|
gst_message_unref (message);
|
|
|
|
return TRUE;
|
|
|
|
case GST_MESSAGE_STATE_CHANGED:
|
|
|
|
GST_MESSAGE_PARSE_STATE_CHANGED (message, &old, &new);
|
|
|
|
gst_message_unref (message);
|
|
|
|
if (!(old == GST_STATE_PLAYING && new == GST_STATE_PAUSED))
|
|
|
|
break;
|
|
|
|
g_print (_
|
|
|
|
("Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"),
|
2004-12-08 17:40:37 +00:00
|
|
|
GST_STR_NULL (GST_ELEMENT_NAME (GST_MESSAGE_SRC (message))));
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
/* cut out of the event loop if check_intr set us to PAUSED */
|
|
|
|
return FALSE;
|
|
|
|
default:
|
|
|
|
/* just be quiet by default */
|
|
|
|
gst_message_unref (message);
|
|
|
|
break;
|
|
|
|
}
|
2004-12-08 17:40:37 +00:00
|
|
|
}
|
|
|
|
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
g_assert_not_reached ();
|
2004-12-08 17:40:37 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2003-04-04 20:33:05 +00:00
|
|
|
gint i, j;
|
2004-03-13 15:27:01 +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;
|
2002-04-07 23:32:16 +00:00
|
|
|
gchar *savefile = NULL;
|
2002-04-16 14:45:53 +00:00
|
|
|
gchar *exclude_args = NULL;
|
2002-02-24 17:08:07 +00:00
|
|
|
struct poptOption options[] = {
|
2004-03-13 15:27:01 +00:00
|
|
|
{"tags", 't', POPT_ARG_NONE | POPT_ARGFLAG_STRIP, &tags, 0,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Output tags (also known as metadata)"), NULL},
|
2004-03-13 15:27:01 +00:00
|
|
|
{"verbose", 'v', POPT_ARG_NONE | POPT_ARGFLAG_STRIP, &verbose, 0,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Output status information and property notifications"), NULL},
|
2004-03-13 15:27:01 +00:00
|
|
|
{"exclude", 'X', POPT_ARG_STRING | POPT_ARGFLAG_STRIP, &exclude_args, 0,
|
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
|
2004-03-13 15:27:01 +00:00
|
|
|
{"output", 'o', POPT_ARG_STRING | POPT_ARGFLAG_STRIP, &savefile, 0,
|
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
|
2004-03-13 15:27:01 +00:00
|
|
|
{"no-fault", 'f', POPT_ARG_NONE | POPT_ARGFLAG_STRIP, &no_fault, 0,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Do not install a fault handler"), NULL},
|
2004-03-13 15:27:01 +00:00
|
|
|
{"trace", 'T', POPT_ARG_NONE | POPT_ARGFLAG_STRIP, &trace, 0,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Print alloc trace (if enabled at compile time)"), NULL},
|
2004-03-13 15:27:01 +00:00
|
|
|
{"iterations", 'i', POPT_ARG_INT | POPT_ARGFLAG_STRIP, &max_iterations, 0,
|
2004-03-15 19:27:17 +00:00
|
|
|
N_("Number of times to iterate pipeline"), NULL},
|
2002-02-24 17:08:07 +00:00
|
|
|
POPT_TABLEEND
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
#ifdef GETTEXT_PACKAGE
|
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
|
|
|
|
2003-02-02 19:22:31 +00:00
|
|
|
gst_alloc_trace_set_flags_all (GST_ALLOC_TRACE_LIVE);
|
2004-01-13 13:44:10 +00:00
|
|
|
|
2003-01-07 20:49:46 +00:00
|
|
|
gst_init_with_popt_table (&argc, &argv, options);
|
2003-04-04 20:33:05 +00:00
|
|
|
|
|
|
|
/* FIXpopt: strip short args, too. We do it ourselves for now */
|
|
|
|
j = 1;
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
if (*(argv[i]) == '-') {
|
|
|
|
if (strlen (argv[i]) == 2) {
|
2004-03-15 19:27:17 +00:00
|
|
|
gchar *c = argv[i];
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2004-03-15 19:27:17 +00:00
|
|
|
c++;
|
|
|
|
if (*c == 'X' || *c == 'o') {
|
|
|
|
i++;
|
|
|
|
}
|
2003-04-04 20:33:05 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
argv[j] = argv[i];
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc = j;
|
2003-01-07 20:49:46 +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
|
|
|
}
|
2003-02-02 19:22:31 +00:00
|
|
|
gst_alloc_trace_print_all ();
|
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) {
|
2004-03-13 15:27:01 +00:00
|
|
|
fprintf (stderr, _("ERROR: pipeline could not be constructed: %s.\n"),
|
2004-03-15 19:27:17 +00:00
|
|
|
error->message);
|
2003-04-10 01:40:03 +00:00
|
|
|
g_error_free (error);
|
|
|
|
} else {
|
2004-03-13 15:27:01 +00:00
|
|
|
fprintf (stderr, _("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) {
|
2004-03-13 15:27:01 +00:00
|
|
|
fprintf (stderr, _("WARNING: erroneous pipeline: %s\n"), error->message);
|
|
|
|
fprintf (stderr, _(" Trying to run anyway.\n"));
|
2003-04-10 01:40:03 +00:00
|
|
|
g_error_free (error);
|
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;
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_connect (pipeline, "deep_notify",
|
2004-12-08 17:40:37 +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) {
|
2004-12-08 17:40:37 +00:00
|
|
|
GstElementState state, pending;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-04-28 17:01:44 +00:00
|
|
|
if (!GST_IS_BIN (pipeline)) {
|
|
|
|
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) {
|
2004-03-15 19:27:17 +00:00
|
|
|
fprintf (stderr, _("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;
|
|
|
|
}
|
2002-07-08 19:23:59 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
fprintf (stderr, _("PREROLL pipeline ...\n"));
|
|
|
|
if (gst_element_set_state (pipeline, GST_STATE_PAUSED) == GST_STATE_FAILURE) {
|
|
|
|
fprintf (stderr, _("ERROR: pipeline doesn't want to pause.\n"));
|
2002-11-20 21:29:29 +00:00
|
|
|
res = -1;
|
|
|
|
goto end;
|
2001-12-12 18:31:25 +00:00
|
|
|
}
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
gst_element_get_state (pipeline, &state, &pending, NULL);
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
caught_error = event_loop (pipeline, FALSE);
|
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
/* see if we got any messages */
|
|
|
|
while (g_main_context_iteration (NULL, FALSE));
|
2001-01-21 16:06:42 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
if (caught_error) {
|
|
|
|
fprintf (stderr, _("ERROR: pipeline doesn't want to preroll.\n"));
|
2002-03-18 04:41:37 +00:00
|
|
|
} else {
|
2004-12-08 17:40:37 +00:00
|
|
|
GTimeVal tfthen, tfnow;
|
|
|
|
GstClockTimeDiff diff;
|
|
|
|
|
|
|
|
fprintf (stderr, _("RUNNING pipeline ...\n"));
|
|
|
|
if (gst_element_set_state (pipeline,
|
|
|
|
GST_STATE_PLAYING) == GST_STATE_FAILURE) {
|
|
|
|
fprintf (stderr, _("ERROR: pipeline doesn't want to play.\n"));
|
|
|
|
res = -1;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_get_current_time (&tfthen);
|
gst/gstmessage.h (GstMessageType): Turned into flags. Added
Original commit message from CVS:
2005-02-21 Andy Wingo <wingo@pobox.com>
* gst/gstmessage.h (GstMessageType): Turned into flags. Added
GST_MESSAGE_ANY as an OR of all flags.
(GST_MESSAGE_PARSE_STATE_CHANGED): New terrible macro. Will be
made into a function soon.
(GstMessage): Add a state_changed structure to the union. The
union will die soon in favor of a single GstStructure tho.
(gst_message_new_state_changed): New API.
* gst/gstmessage.c (gst_message_new_state_changed): New API.
* tools/gst-launch.c (check_intr): Set the state of the pipeline
to PAUSED here; the poll will catch the state change.
(event_loop): New function, polls the pipeline bus for events. Can
block until eos/error/state change, or just handle the pending
events.
(main): Changed to use event_loop instead of running a main loop.
* gst/gstbus.h (gst_bus_poll): Added.
(gst_bus_peek): Return non-const; the message is refcounted
anyway.
* gst/gstbus.c (gst_bus_init): Replace the GAsyncQueue with a
GQueue+mutex to allow for _peek. (The wake-up functionality
provided by GAsyncQueue is already done by our socketpair.) All
queue users changed to lock, operate, and unlock.
(gst_bus_post): Check the retval of write(2) and handle errno.
(gst_bus_peek): Implemented.
(gst_bus_pop, gst_bus_peek, bus_callback): Because the socketpair
is used to wake up the GSource, read off the character in the
GSource handler and not in pop/peek. This is because a peek will
require a pop in the future, and you can't read off the char
twice. Deal with errno in the read.
(bus_callback): Interpret the handler return value as whether or
not to pop the message from the bus.
(poll_handler, poll_timeout, gst_bus_poll): New API. gst_bus_poll
is meant to replace the while(gst_bin_iterate()) idiom.
2005-02-21 11:54:55 +00:00
|
|
|
caught_error = event_loop (pipeline, TRUE);
|
2004-12-08 17:40:37 +00:00
|
|
|
g_get_current_time (&tfnow);
|
|
|
|
|
|
|
|
diff = GST_TIMEVAL_TO_TIME (tfnow) - GST_TIMEVAL_TO_TIME (tfthen);
|
|
|
|
|
|
|
|
g_print (_("Execution ended after %" G_GUINT64_FORMAT " ns.\n"), diff);
|
2002-03-18 04:41:37 +00:00
|
|
|
}
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2001-06-19 10:34:15 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
}
|
2002-11-20 21:29:29 +00:00
|
|
|
|
|
|
|
end:
|
|
|
|
|
More MT fixes, added design document describing refcounting policies used in GStreamer and locking involved.
Original commit message from CVS:
* docs/design/part-MT-refcounting.txt:
* docs/design/part-conventions.txt:
* gst/gstbin.c: (gst_bin_set_index), (gst_bin_set_clock),
(gst_bin_add_func), (gst_bin_remove_func),
(gst_bin_iterate_elements), (gst_bin_change_state),
(gst_bin_dispose), (gst_bin_get_by_name_recurse_up):
* gst/gstcaps.c:
* gst/gstelement.c: (gst_element_add_pad),
(gst_element_remove_pad), (pad_compare_name),
(gst_element_get_static_pad), (gst_element_get_request_pad),
(gst_element_get_pad), (gst_element_iterate_pads),
(gst_element_class_get_pad_template_list),
(gst_element_class_get_pad_template), (gst_element_get_random_pad),
(gst_element_get_event_masks), (gst_element_send_event),
(gst_element_seek), (gst_element_get_query_types),
(gst_element_query), (gst_element_get_formats),
(gst_element_convert), (gst_element_post_message),
(gst_element_set_locked_state), (gst_element_get_state),
(gst_element_set_state), (gst_element_pads_activate),
(gst_element_dispose), (gst_element_set_manager_func),
(gst_element_get_manager):
* gst/gstelement.h:
* gst/gstiterator.c: (gst_iterator_new), (gst_list_iterator_next),
(gst_list_iterator_resync), (gst_list_iterator_free),
(gst_iterator_new_list):
* gst/gstiterator.h:
* gst/gstmessage.c: (_gst_message_copy):
* gst/gstobject.c: (gst_object_class_init), (gst_object_init),
(gst_object_ref), (gst_object_unref), (gst_object_sink),
(gst_object_replace), (gst_object_dispose),
(gst_object_dispatch_properties_changed), (gst_object_set_name),
(gst_object_set_parent), (gst_object_get_parent),
(gst_object_unparent), (gst_object_check_uniqueness),
(gst_object_get_path_string):
* gst/gstobject.h:
* gst/gstpad.c: (gst_pad_dispose), (gst_pad_set_active),
(gst_pad_is_active), (gst_pad_set_blocked_async),
(gst_pad_is_blocked), (gst_pad_unlink), (gst_pad_is_linked),
(gst_pad_link_prepare_filtered), (gst_pad_link_filtered),
(gst_pad_get_real_parent), (gst_pad_relink_filtered),
(gst_pad_get_peer), (gst_pad_realize), (gst_pad_get_allowed_caps),
(gst_pad_alloc_buffer), (gst_pad_push), (gst_pad_pull),
(gst_pad_pull_range), (gst_pad_push_event):
* gst/gstpad.h:
* gst/gstpipeline.c: (gst_pipeline_init), (gst_pipeline_dispose),
(is_eos), (pipeline_bus_handler):
* gst/gstutils.c: (gst_element_get_compatible_pad_filtered),
(gst_element_link_pads_filtered), (gst_element_unlink):
* gst/parse/grammar.y:
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_pad_info):
* tools/gst-launch.c: (main):
* tools/gst-xmlinspect.c: (print_element_info):
More MT fixes, added design document describing refcounting
policies used in GStreamer and locking involved.
Fixed unsafe ghostpad dereffing.
Removed old unsafe methods.
2004-12-13 11:33:55 +00:00
|
|
|
fprintf (stderr, _("FREEING pipeline ...\n"));
|
2001-12-19 19:23:51 +00:00
|
|
|
gst_object_unref (GST_OBJECT (pipeline));
|
2000-08-28 20:20:55 +00:00
|
|
|
|
2003-02-02 19:22:31 +00:00
|
|
|
if (trace)
|
|
|
|
gst_alloc_trace_print_all ();
|
|
|
|
|
2002-11-20 21:29:29 +00:00
|
|
|
return res;
|
2000-01-30 10:44:33 +00:00
|
|
|
}
|