mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 00:50:21 +00:00
457e99ab07
Original commit message from CVS: * gst/elements/gstfakesink.c: (gst_fakesink_event): * gst/elements/gstfakesrc.c: (gst_fakesrc_update_functions), (gst_fakesrc_loop), (gst_fakesrc_activate): * gst/elements/gstfilesrc.c: (gst_filesrc_init), (gst_filesrc_getrange), (gst_filesrc_get), (gst_filesrc_loop): * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index), (gst_bin_set_clock), (gst_bin_set_bus), (gst_bin_set_scheduler), (gst_bin_add_func), (gst_bin_iterate_elements), (gst_bin_change_state), (gst_bin_get_by_name_recurse_up): * gst/gstcaps.c: (gst_caps_intersect): * gst/gstelement.c: (gst_element_pads_activate), (gst_element_change_state), (gst_element_create_task): * gst/gstobject.c: (gst_object_class_init), (gst_object_ref), (gst_object_unref), (gst_object_sink), (gst_object_dispose), (gst_object_dispatch_properties_changed), (gst_object_set_name), (gst_object_set_parent), (gst_object_unparent), (gst_object_check_uniqueness), (gst_object_get_path_string): * gst/gstpad.c: (gst_real_pad_init), (gst_real_pad_get_property), (gst_pad_set_active), (gst_pad_is_active), (gst_pad_set_blocked_async), (gst_pad_set_loop_function), (gst_pad_set_getrange_function), (gst_pad_set_acceptcaps_function), (gst_pad_set_fixatecaps_function), (gst_pad_set_setcaps_function), (gst_pad_unlink), (gst_pad_link_prepare_filtered), (gst_pad_link_filtered), (gst_pad_relink_filtered), (gst_pad_get_caps), (gst_pad_set_caps), (gst_pad_configure_sink), (gst_pad_configure_src), (gst_pad_realize), (gst_pad_get_allowed_caps), (gst_pad_get_negotiated_caps), (gst_pad_get_filter_caps), (gst_pad_alloc_buffer), (gst_pad_push), (gst_pad_push_event): * gst/gstpad.h: * gst/gstpipeline.c: (gst_pipeline_init), (gst_pipeline_dispose), (is_eos), (pipeline_bus_handler), (gst_pipeline_change_state), (gst_pipeline_get_scheduler), (gst_pipeline_get_bus): * gst/gstpipeline.h: * gst/gstqueue.c: (gst_queue_init), (gst_queue_locked_flush), (gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop), (gst_queue_src_activate), (gst_queue_change_state): * gst/gsttask.h: * gst/gstutils.c: (gst_element_get_compatible_pad_filtered), (gst_element_link_pads_filtered), (gst_element_unlink), (gst_pad_can_link_filtered): * gst/schedulers/threadscheduler.c: (gst_thread_scheduler_func): * libs/gst/Makefile.am: * tools/gst-inspect.c: (print_pad_info): * tools/gst-launch.c: (main): * tools/gst-xmlinspect.c: (print_element_info): Correctly distribute clock/scheduler to elements Caps intersection improvement. MT fixes. Work on scheduling simplifications, get rid of _pull and prepare for scheduling setup. More work on capsnego.
543 lines
13 KiB
C
543 lines
13 KiB
C
/* 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.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
/* FIXME: hack alert */
|
|
#ifdef _MSC_VER
|
|
#define DISABLE_FAULT_HANDLER
|
|
#endif
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <signal.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#ifndef DISABLE_FAULT_HANDLER
|
|
#include <sys/wait.h>
|
|
#endif
|
|
#include <locale.h> /* for LC_ALL */
|
|
#include "gst/gst-i18n-app.h"
|
|
|
|
#include <gst/gst.h>
|
|
|
|
/* 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;
|
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
|
static void fault_restore (void);
|
|
static void fault_spin (void);
|
|
static void sigint_restore (void);
|
|
#endif
|
|
|
|
static gint max_iterations = 0;
|
|
static GstElement *pipeline;
|
|
gboolean caught_intr = FALSE;
|
|
gboolean caught_error = FALSE;
|
|
gboolean tags = FALSE;
|
|
GMainLoop *loop;
|
|
|
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
|
static GstElement *
|
|
xmllaunch_parse_cmdline (const gchar ** argv)
|
|
{
|
|
GstElement *pipeline = NULL, *e;
|
|
GstXML *xml;
|
|
gboolean err;
|
|
const gchar *arg;
|
|
gchar *element, *property, *value;
|
|
GList *l;
|
|
gint i = 0;
|
|
|
|
if (!(arg = argv[0])) {
|
|
g_print (_
|
|
("Usage: gst-xmllaunch <file.xml> [ element.property=value ... ]\n"));
|
|
exit (1);
|
|
}
|
|
|
|
xml = gst_xml_new ();
|
|
err = gst_xml_parse_file (xml, arg, NULL);
|
|
|
|
if (err != TRUE) {
|
|
fprintf (stderr, _("ERROR: parse of xml file '%s' failed.\n"), arg);
|
|
exit (1);
|
|
}
|
|
|
|
l = gst_xml_get_topelements (xml);
|
|
if (!l) {
|
|
fprintf (stderr, _("ERROR: no toplevel pipeline element in file '%s'.\n"),
|
|
arg);
|
|
exit (1);
|
|
}
|
|
|
|
if (l->next)
|
|
fprintf (stderr,
|
|
_("WARNING: only one toplevel element is supported at this time."));
|
|
|
|
pipeline = GST_ELEMENT (l->data);
|
|
|
|
while ((arg = argv[++i])) {
|
|
element = g_strdup (arg);
|
|
property = strchr (element, '.');
|
|
value = strchr (element, '=');
|
|
|
|
if (!(element < property && property < value)) {
|
|
fprintf (stderr,
|
|
_("ERROR: could not parse command line argument %d: %s.\n"), i,
|
|
element);
|
|
g_free (element);
|
|
exit (1);
|
|
}
|
|
|
|
*property++ = '\0';
|
|
*value++ = '\0';
|
|
|
|
e = gst_bin_get_by_name (GST_BIN (pipeline), element);
|
|
if (!e) {
|
|
fprintf (stderr, _("WARNING: element named '%s' not found.\n"), element);
|
|
} else {
|
|
gst_util_set_object_arg (G_OBJECT (e), property, value);
|
|
}
|
|
g_free (element);
|
|
}
|
|
|
|
if (!l)
|
|
return NULL;
|
|
else
|
|
return l->data;
|
|
}
|
|
#endif
|
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
|
#ifndef USE_SIGINFO
|
|
static void
|
|
fault_handler_sighandler (int signum)
|
|
{
|
|
fault_restore ();
|
|
|
|
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;
|
|
}
|
|
|
|
fault_spin ();
|
|
}
|
|
|
|
#else
|
|
|
|
static void
|
|
fault_handler_sigaction (int signum, siginfo_t * si, void *misc)
|
|
{
|
|
fault_restore ();
|
|
|
|
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;
|
|
}
|
|
|
|
fault_spin ();
|
|
}
|
|
#endif
|
|
|
|
static void
|
|
fault_spin (void)
|
|
{
|
|
int spinning = TRUE;
|
|
|
|
glib_on_error_halt = FALSE;
|
|
g_on_error_stack_trace ("gst-launch");
|
|
|
|
wait (NULL);
|
|
|
|
/* FIXME how do we know if we were run by libtool? */
|
|
g_print ("Spinning. Please run 'gdb gst-launch %d' to continue debugging, "
|
|
"Ctrl-C to quit, or Ctrl-\\ to dump core.\n", (gint) getpid ());
|
|
while (spinning)
|
|
g_usleep (1000000);
|
|
}
|
|
|
|
static void
|
|
fault_restore (void)
|
|
{
|
|
struct sigaction action;
|
|
|
|
memset (&action, 0, sizeof (action));
|
|
action.sa_handler = SIG_DFL;
|
|
|
|
sigaction (SIGSEGV, &action, NULL);
|
|
sigaction (SIGQUIT, &action, NULL);
|
|
}
|
|
|
|
static void
|
|
fault_setup (void)
|
|
{
|
|
struct sigaction action;
|
|
|
|
memset (&action, 0, sizeof (action));
|
|
#ifdef USE_SIGINFO
|
|
action.sa_sigaction = fault_handler_sigaction;
|
|
action.sa_flags = SA_SIGINFO;
|
|
#else
|
|
action.sa_handler = fault_handler_sighandler;
|
|
#endif
|
|
|
|
sigaction (SIGSEGV, &action, NULL);
|
|
sigaction (SIGQUIT, &action, NULL);
|
|
}
|
|
#endif
|
|
|
|
static void
|
|
print_tag (const GstTagList * list, const gchar * tag, gpointer unused)
|
|
{
|
|
gint i, count;
|
|
|
|
count = gst_tag_list_get_tag_size (list, tag);
|
|
|
|
for (i = 0; i < count; i++) {
|
|
gchar *str;
|
|
|
|
if (gst_tag_get_type (tag) == G_TYPE_STRING) {
|
|
if (!gst_tag_list_get_string_index (list, tag, i, &str))
|
|
g_assert_not_reached ();
|
|
} else {
|
|
str =
|
|
g_strdup_value_contents (gst_tag_list_get_value_index (list, tag, i));
|
|
}
|
|
|
|
if (i == 0) {
|
|
g_print ("%15s: %s\n", gst_tag_get_nick (tag), str);
|
|
} else {
|
|
g_print (" : %s\n", str);
|
|
}
|
|
|
|
g_free (str);
|
|
}
|
|
}
|
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
|
/* we only use sighandler here because the registers are not important */
|
|
static void
|
|
sigint_handler_sighandler (int signum)
|
|
{
|
|
g_print ("Caught interrupt.\n");
|
|
|
|
sigint_restore ();
|
|
|
|
caught_intr = TRUE;
|
|
}
|
|
|
|
static void
|
|
sigint_setup (void)
|
|
{
|
|
struct sigaction action;
|
|
|
|
memset (&action, 0, sizeof (action));
|
|
action.sa_handler = sigint_handler_sighandler;
|
|
|
|
sigaction (SIGINT, &action, NULL);
|
|
}
|
|
|
|
static void
|
|
sigint_restore (void)
|
|
{
|
|
struct sigaction action;
|
|
|
|
memset (&action, 0, sizeof (action));
|
|
action.sa_handler = SIG_DFL;
|
|
|
|
sigaction (SIGINT, &action, NULL);
|
|
}
|
|
|
|
static void
|
|
play_handler (int signum)
|
|
{
|
|
switch (signum) {
|
|
case SIGUSR1:
|
|
g_print ("Caught SIGUSR1 - Play request.\n");
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
break;
|
|
case SIGUSR2:
|
|
g_print ("Caught SIGUSR2 - Stop request.\n");
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
play_signal_setup (void)
|
|
{
|
|
struct sigaction action;
|
|
|
|
memset (&action, 0, sizeof (action));
|
|
action.sa_handler = play_handler;
|
|
sigaction (SIGUSR1, &action, NULL);
|
|
sigaction (SIGUSR2, &action, NULL);
|
|
}
|
|
#endif
|
|
|
|
static gboolean
|
|
message_received (GstBus * bus, GstMessage * message, GstPipeline * pipeline)
|
|
{
|
|
switch (GST_MESSAGE_TYPE (message)) {
|
|
case GST_MESSAGE_EOS:
|
|
if (g_main_loop_is_running (loop))
|
|
g_main_loop_quit (loop);
|
|
break;
|
|
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);
|
|
}
|
|
break;
|
|
case GST_MESSAGE_ERROR:
|
|
gst_object_default_error (GST_MESSAGE_SRC (message),
|
|
GST_MESSAGE_ERROR_GERROR (message),
|
|
GST_MESSAGE_ERROR_DEBUG (message));
|
|
caught_error = TRUE;
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
|
if (g_main_loop_is_running (loop))
|
|
g_main_loop_quit (loop);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
gst_message_unref (message);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
gint i, j;
|
|
|
|
/* options */
|
|
gboolean verbose = FALSE;
|
|
gboolean no_fault = FALSE;
|
|
gboolean trace = FALSE;
|
|
gchar *savefile = NULL;
|
|
gchar *exclude_args = NULL;
|
|
struct poptOption options[] = {
|
|
{"tags", 't', POPT_ARG_NONE | POPT_ARGFLAG_STRIP, &tags, 0,
|
|
N_("Output tags (also known as metadata)"), NULL},
|
|
{"verbose", 'v', POPT_ARG_NONE | POPT_ARGFLAG_STRIP, &verbose, 0,
|
|
N_("Output status information and property notifications"), NULL},
|
|
{"exclude", 'X', POPT_ARG_STRING | POPT_ARGFLAG_STRIP, &exclude_args, 0,
|
|
N_("Do not output status information of TYPE"), N_("TYPE1,TYPE2,...")},
|
|
#ifndef GST_DISABLE_LOADSAVE
|
|
{"output", 'o', POPT_ARG_STRING | POPT_ARGFLAG_STRIP, &savefile, 0,
|
|
N_("Save xml representation of pipeline to FILE and exit"), N_("FILE")},
|
|
#endif
|
|
{"no-fault", 'f', POPT_ARG_NONE | POPT_ARGFLAG_STRIP, &no_fault, 0,
|
|
N_("Do not install a fault handler"), NULL},
|
|
{"trace", 'T', POPT_ARG_NONE | POPT_ARGFLAG_STRIP, &trace, 0,
|
|
N_("Print alloc trace (if enabled at compile time)"), NULL},
|
|
{"iterations", 'i', POPT_ARG_INT | POPT_ARGFLAG_STRIP, &max_iterations, 0,
|
|
N_("Number of times to iterate pipeline"), NULL},
|
|
POPT_TABLEEND
|
|
};
|
|
|
|
gchar **argvn;
|
|
GError *error = NULL;
|
|
gint res = 0;
|
|
|
|
free (malloc (8)); /* -lefence */
|
|
|
|
#ifdef GETTEXT_PACKAGE
|
|
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
|
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
|
textdomain (GETTEXT_PACKAGE);
|
|
#endif
|
|
|
|
gst_alloc_trace_set_flags_all (GST_ALLOC_TRACE_LIVE);
|
|
|
|
gst_init_with_popt_table (&argc, &argv, options);
|
|
|
|
/* 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) {
|
|
gchar *c = argv[i];
|
|
|
|
c++;
|
|
if (*c == 'X' || *c == 'o') {
|
|
i++;
|
|
}
|
|
}
|
|
} else {
|
|
argv[j] = argv[i];
|
|
j++;
|
|
}
|
|
}
|
|
argc = j;
|
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
|
if (!no_fault)
|
|
fault_setup ();
|
|
|
|
sigint_setup ();
|
|
play_signal_setup ();
|
|
#endif
|
|
|
|
if (trace) {
|
|
if (!gst_alloc_trace_available ()) {
|
|
g_warning ("Trace not available (recompile with trace enabled).");
|
|
}
|
|
gst_alloc_trace_print_all ();
|
|
}
|
|
|
|
/* make a null-terminated version of argv */
|
|
argvn = g_new0 (char *, argc);
|
|
memcpy (argvn, argv + 1, sizeof (char *) * (argc - 1));
|
|
#ifndef GST_DISABLE_LOADSAVE
|
|
if (strstr (argv[0], "gst-xmllaunch")) {
|
|
pipeline = xmllaunch_parse_cmdline ((const gchar **) argvn);
|
|
} else
|
|
#endif
|
|
{
|
|
pipeline =
|
|
(GstElement *) gst_parse_launchv ((const gchar **) argvn, &error);
|
|
}
|
|
g_free (argvn);
|
|
|
|
if (!pipeline) {
|
|
if (error) {
|
|
fprintf (stderr, _("ERROR: pipeline could not be constructed: %s.\n"),
|
|
error->message);
|
|
g_error_free (error);
|
|
} else {
|
|
fprintf (stderr, _("ERROR: pipeline could not be constructed.\n"));
|
|
}
|
|
return 1;
|
|
} else if (error) {
|
|
fprintf (stderr, _("WARNING: erroneous pipeline: %s\n"), error->message);
|
|
fprintf (stderr, _(" Trying to run anyway.\n"));
|
|
g_error_free (error);
|
|
}
|
|
|
|
if (verbose) {
|
|
gchar **exclude_list =
|
|
exclude_args ? g_strsplit (exclude_args, ",", 0) : NULL;
|
|
g_signal_connect (pipeline, "deep_notify",
|
|
G_CALLBACK (gst_object_default_deep_notify), exclude_list);
|
|
}
|
|
|
|
loop = g_main_loop_new (NULL, FALSE);
|
|
gst_bus_add_watch (gst_element_get_bus (GST_ELEMENT (pipeline)),
|
|
(GstBusHandler) message_received, pipeline);
|
|
|
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
|
if (savefile) {
|
|
gst_xml_write_file (GST_ELEMENT (pipeline), fopen (savefile, "w"));
|
|
}
|
|
#endif
|
|
|
|
if (!savefile) {
|
|
GstElementState state, pending;
|
|
|
|
if (!GST_IS_BIN (pipeline)) {
|
|
GstElement *real_pipeline = gst_element_factory_make ("pipeline", NULL);
|
|
|
|
if (real_pipeline == NULL) {
|
|
fprintf (stderr, _("ERROR: the 'pipeline' element wasn't found.\n"));
|
|
return 1;
|
|
}
|
|
gst_bin_add (GST_BIN (real_pipeline), pipeline);
|
|
pipeline = real_pipeline;
|
|
}
|
|
|
|
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"));
|
|
res = -1;
|
|
goto end;
|
|
}
|
|
gst_element_get_state (pipeline, &state, &pending, NULL);
|
|
/* see if we got any messages */
|
|
while (g_main_context_iteration (NULL, FALSE));
|
|
|
|
if (caught_error) {
|
|
fprintf (stderr, _("ERROR: pipeline doesn't want to preroll.\n"));
|
|
} else {
|
|
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);
|
|
g_main_loop_run (loop);
|
|
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);
|
|
}
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
}
|
|
|
|
end:
|
|
|
|
fprintf (stderr, _("FREEING pipeline ...\n"));
|
|
gst_object_unref (GST_OBJECT (pipeline));
|
|
|
|
if (trace)
|
|
gst_alloc_trace_print_all ();
|
|
|
|
return res;
|
|
}
|