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
|
|
|
|
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:
|
2010-06-15 00:15:54 +00:00
|
|
|
fprintf (stderr, "Caught SIGSEGV\n");
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
|
|
|
case SIGQUIT:
|
2010-06-15 00:15:54 +00:00
|
|
|
if (!quiet)
|
|
|
|
printf ("Caught SIGQUIT\n");
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
2010-06-15 00:15:54 +00:00
|
|
|
fprintf (stderr, "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:
|
2010-06-15 00:15:54 +00:00
|
|
|
fprintf (stderr, "Caught SIGSEGV accessing address %p\n", si->si_addr);
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
|
|
|
case SIGQUIT:
|
2010-06-15 00:15:54 +00:00
|
|
|
if (!quiet)
|
|
|
|
printf ("Caught SIGQUIT\n");
|
2003-08-19 05:43:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
2010-06-15 00:15:54 +00:00
|
|
|
fprintf (stderr, "signo: %d\n", si->si_signo);
|
|
|
|
fprintf (stderr, "errno: %d\n", si->si_errno);
|
|
|
|
fprintf (stderr, "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? */
|
2010-06-15 00:15:54 +00:00
|
|
|
fprintf (stderr,
|
|
|
|
"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
|
|
|
|
2011-02-21 09:24:45 +00:00
|
|
|
typedef struct _GstIndexStats
|
|
|
|
{
|
|
|
|
gint id;
|
|
|
|
gchar *desc;
|
|
|
|
|
|
|
|
guint num_frames;
|
|
|
|
guint num_keyframes;
|
|
|
|
guint num_dltframes;
|
|
|
|
GstClockTime last_keyframe;
|
|
|
|
GstClockTime last_dltframe;
|
|
|
|
GstClockTime min_keyframe_gap;
|
|
|
|
GstClockTime max_keyframe_gap;
|
|
|
|
GstClockTime avg_keyframe_gap;
|
|
|
|
} GstIndexStats;
|
|
|
|
|
|
|
|
static void
|
|
|
|
entry_added (GstIndex * index, GstIndexEntry * entry, gpointer user_data)
|
|
|
|
{
|
|
|
|
GPtrArray *index_stats = (GPtrArray *) user_data;
|
|
|
|
GstIndexStats *s;
|
|
|
|
|
|
|
|
switch (entry->type) {
|
|
|
|
case GST_INDEX_ENTRY_ID:
|
|
|
|
/* we have a new writer */
|
|
|
|
GST_DEBUG_OBJECT (index, "id %d: describes writer %s", entry->id,
|
|
|
|
GST_INDEX_ID_DESCRIPTION (entry));
|
|
|
|
if (entry->id >= index_stats->len) {
|
|
|
|
g_ptr_array_set_size (index_stats, entry->id + 1);
|
|
|
|
}
|
|
|
|
s = g_new (GstIndexStats, 1);
|
|
|
|
s->id = entry->id;
|
|
|
|
s->desc = g_strdup (GST_INDEX_ID_DESCRIPTION (entry));
|
|
|
|
s->num_frames = s->num_keyframes = s->num_dltframes = 0;
|
|
|
|
s->last_keyframe = s->last_dltframe = GST_CLOCK_TIME_NONE;
|
|
|
|
s->min_keyframe_gap = s->max_keyframe_gap = s->avg_keyframe_gap =
|
|
|
|
GST_CLOCK_TIME_NONE;
|
|
|
|
g_ptr_array_index (index_stats, entry->id) = s;
|
|
|
|
break;
|
|
|
|
case GST_INDEX_ENTRY_FORMAT:
|
|
|
|
/* have not found any code calling this */
|
|
|
|
GST_DEBUG_OBJECT (index, "id %d: registered format %d for %s\n",
|
|
|
|
entry->id, GST_INDEX_FORMAT_FORMAT (entry),
|
|
|
|
GST_INDEX_FORMAT_KEY (entry));
|
|
|
|
break;
|
|
|
|
case GST_INDEX_ENTRY_ASSOCIATION:
|
|
|
|
{
|
|
|
|
gint64 ts;
|
|
|
|
GstAssocFlags flags = GST_INDEX_ASSOC_FLAGS (entry);
|
|
|
|
|
|
|
|
s = g_ptr_array_index (index_stats, entry->id);
|
|
|
|
gst_index_entry_assoc_map (entry, GST_FORMAT_TIME, &ts);
|
|
|
|
|
|
|
|
if (flags & GST_ASSOCIATION_FLAG_KEY_UNIT) {
|
|
|
|
s->num_keyframes++;
|
|
|
|
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (ts)) {
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (s->last_keyframe)) {
|
|
|
|
GstClockTimeDiff d = GST_CLOCK_DIFF (s->last_keyframe, ts);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (d < 0)) {
|
|
|
|
GST_WARNING ("received out-of-order keyframe at %"
|
|
|
|
GST_TIME_FORMAT, GST_TIME_ARGS (ts));
|
|
|
|
/* FIXME: does it still make sense to use that for the statistics */
|
|
|
|
d = GST_CLOCK_DIFF (ts, s->last_keyframe);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (s->min_keyframe_gap)) {
|
|
|
|
if (d < s->min_keyframe_gap)
|
|
|
|
s->min_keyframe_gap = d;
|
|
|
|
} else {
|
|
|
|
s->min_keyframe_gap = d;
|
|
|
|
}
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (s->max_keyframe_gap)) {
|
|
|
|
if (d > s->max_keyframe_gap)
|
|
|
|
s->max_keyframe_gap = d;
|
|
|
|
} else {
|
|
|
|
s->max_keyframe_gap = d;
|
|
|
|
}
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (s->avg_keyframe_gap)) {
|
|
|
|
s->avg_keyframe_gap = (d + s->num_frames * s->avg_keyframe_gap) /
|
|
|
|
(s->num_frames + 1);
|
|
|
|
} else {
|
|
|
|
s->avg_keyframe_gap = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s->last_keyframe = ts;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flags & GST_ASSOCIATION_FLAG_DELTA_UNIT) {
|
|
|
|
s->num_dltframes++;
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (ts)) {
|
|
|
|
s->last_dltframe = ts;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s->num_frames++;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* print statistics from the entry_added callback, free the entries */
|
|
|
|
static void
|
|
|
|
print_index_stats (GPtrArray * index_stats)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
if (index_stats->len) {
|
2011-04-16 13:52:40 +00:00
|
|
|
g_print ("%s:\n", _("Index statistics"));
|
2011-02-21 09:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < index_stats->len; i++) {
|
|
|
|
GstIndexStats *s = g_ptr_array_index (index_stats, i);
|
|
|
|
if (s) {
|
|
|
|
g_print ("id %d, %s\n", s->id, s->desc);
|
|
|
|
if (s->num_frames) {
|
|
|
|
GstClockTime last_frame = s->last_keyframe;
|
|
|
|
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (s->last_dltframe)) {
|
|
|
|
if (!GST_CLOCK_TIME_IS_VALID (last_frame) ||
|
|
|
|
(s->last_dltframe > last_frame))
|
|
|
|
last_frame = s->last_dltframe;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (last_frame)) {
|
|
|
|
g_print (" total time = %" GST_TIME_FORMAT "\n",
|
|
|
|
GST_TIME_ARGS (last_frame));
|
|
|
|
}
|
|
|
|
g_print (" frame/keyframe rate = %u / %u = ", s->num_frames,
|
|
|
|
s->num_keyframes);
|
|
|
|
if (s->num_keyframes)
|
|
|
|
g_print ("%lf\n", s->num_frames / (gdouble) s->num_keyframes);
|
|
|
|
else
|
|
|
|
g_print ("-\n");
|
|
|
|
if (s->num_keyframes) {
|
|
|
|
g_print (" min/avg/max keyframe gap = %" GST_TIME_FORMAT ", %"
|
|
|
|
GST_TIME_FORMAT ", %" GST_TIME_FORMAT "\n",
|
|
|
|
GST_TIME_ARGS (s->min_keyframe_gap),
|
|
|
|
GST_TIME_ARGS (s->avg_keyframe_gap),
|
|
|
|
GST_TIME_ARGS (s->max_keyframe_gap));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
g_print (" no stats\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (s->desc);
|
|
|
|
g_free (s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-27 14:14:32 +00:00
|
|
|
/* Kids, use the functions from libgstpbutils in gst-plugins-base in your
|
|
|
|
* own code (we can't do that here because it would introduce a circular
|
|
|
|
* dependency) */
|
|
|
|
static gboolean
|
|
|
|
gst_is_missing_plugin_message (GstMessage * msg)
|
|
|
|
{
|
2011-05-30 05:44:50 +00:00
|
|
|
if (GST_MESSAGE_TYPE (msg) != GST_MESSAGE_ELEMENT
|
|
|
|
|| gst_message_get_structure (msg) == NULL)
|
2011-05-27 14:14:32 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2011-05-30 05:44:50 +00:00
|
|
|
return gst_structure_has_name (gst_message_get_structure (msg),
|
|
|
|
"missing-plugin");
|
2011-05-27 14:14:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const gchar *
|
|
|
|
gst_missing_plugin_message_get_description (GstMessage * msg)
|
|
|
|
{
|
2011-05-30 05:44:50 +00:00
|
|
|
return gst_structure_get_string (gst_message_get_structure (msg), "name");
|
2011-05-27 14:14:32 +00:00
|
|
|
}
|
|
|
|
|
2010-06-15 00:15:54 +00:00
|
|
|
static void
|
|
|
|
print_error_message (GstMessage * msg)
|
|
|
|
{
|
|
|
|
GError *err = NULL;
|
|
|
|
gchar *name, *debug = NULL;
|
|
|
|
|
|
|
|
name = gst_object_get_path_string (msg->src);
|
|
|
|
gst_message_parse_error (msg, &err, &debug);
|
|
|
|
|
|
|
|
g_printerr (_("ERROR: from element %s: %s\n"), name, err->message);
|
|
|
|
if (debug != NULL)
|
|
|
|
g_printerr (_("Additional debug info:\n%s\n"), debug);
|
|
|
|
|
|
|
|
g_error_free (err);
|
|
|
|
g_free (debug);
|
|
|
|
g_free (name);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2011-05-08 10:46:17 +00:00
|
|
|
caps_str = g_strdup ("unknown");
|
2011-03-21 17:13:55 +00:00
|
|
|
str = g_strdup_printf ("buffer of %" G_GSIZE_FORMAT " bytes, type: %s",
|
|
|
|
gst_buffer_get_size (img), caps_str);
|
2006-05-12 16:50:37 +00:00
|
|
|
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
|
|
|
}
|
2011-02-13 22:56:15 +00:00
|
|
|
} else if (gst_tag_get_type (tag) == GST_TYPE_DATE_TIME) {
|
|
|
|
GstDateTime *dt = NULL;
|
|
|
|
|
|
|
|
gst_tag_list_get_date_time_index (list, tag, i, &dt);
|
|
|
|
if (gst_date_time_get_hour (dt) < 0) {
|
|
|
|
str = g_strdup_printf ("%02u-%02u-%04u", gst_date_time_get_day (dt),
|
|
|
|
gst_date_time_get_month (dt), gst_date_time_get_year (dt));
|
|
|
|
} else {
|
|
|
|
gdouble tz_offset = gst_date_time_get_time_zone_offset (dt);
|
|
|
|
gchar tz_str[32];
|
|
|
|
|
|
|
|
if (tz_offset != 0.0) {
|
|
|
|
g_snprintf (tz_str, sizeof (tz_str), "(UTC %s%gh)",
|
|
|
|
(tz_offset > 0.0) ? "+" : "", tz_offset);
|
|
|
|
} else {
|
|
|
|
g_snprintf (tz_str, sizeof (tz_str), "(UTC)");
|
|
|
|
}
|
|
|
|
|
|
|
|
str = g_strdup_printf ("%04u-%02u-%02u %02u:%02u:%02u %s",
|
|
|
|
gst_date_time_get_year (dt), gst_date_time_get_month (dt),
|
|
|
|
gst_date_time_get_day (dt), gst_date_time_get_hour (dt),
|
|
|
|
gst_date_time_get_minute (dt), gst_date_time_get_second (dt),
|
|
|
|
tz_str);
|
|
|
|
}
|
|
|
|
gst_date_time_unref (dt);
|
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) {
|
2010-06-15 00:15:54 +00:00
|
|
|
PRINT ("%16s: %s\n", gst_tag_get_nick (tag), str);
|
2003-11-24 02:09:23 +00:00
|
|
|
} else {
|
2010-06-15 00:15:54 +00:00
|
|
|
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)
|
|
|
|
{
|
2010-06-15 00:15:54 +00:00
|
|
|
PRINT ("Caught interrupt -- ");
|
2005-03-10 12:51:45 +00:00
|
|
|
|
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;
|
2010-06-15 00:15:54 +00:00
|
|
|
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);
|
|
|
|
}
|
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
|
|
|
{
|
2010-02-11 20:14:59 +00:00
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
|
|
|
gulong timeout_id;
|
|
|
|
#endif
|
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
|
2010-02-11 20:14:59 +00:00
|
|
|
timeout_id = 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)) {
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("Got message #%u from element \"%s\" (%s): "),
|
2009-06-03 23:29:31 +00:00
|
|
|
(guint) seqnum, GST_ELEMENT_NAME (src_obj),
|
|
|
|
GST_MESSAGE_TYPE_NAME (message));
|
|
|
|
} else if (GST_IS_PAD (src_obj)) {
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("Got message #%u from pad \"%s:%s\" (%s): "),
|
2009-06-03 23:29:31 +00:00
|
|
|
(guint) seqnum, GST_DEBUG_PAD_NAME (src_obj),
|
|
|
|
GST_MESSAGE_TYPE_NAME (message));
|
|
|
|
} else if (GST_IS_OBJECT (src_obj)) {
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("Got message #%u from object \"%s\" (%s): "),
|
2009-06-03 23:29:31 +00:00
|
|
|
(guint) seqnum, GST_OBJECT_NAME (src_obj),
|
|
|
|
GST_MESSAGE_TYPE_NAME (message));
|
|
|
|
} else {
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("Got message #%u (%s): "), (guint) seqnum,
|
2009-06-03 23:29:31 +00:00
|
|
|
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);
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT ("%s\n", sstr);
|
2005-08-15 18:15:38 +00:00
|
|
|
g_free (sstr);
|
2005-10-08 09:38:19 +00:00
|
|
|
} else {
|
2010-04-09 13:48:00 +00:00
|
|
|
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);
|
|
|
|
|
2010-04-09 13:48:00 +00:00
|
|
|
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:
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT ("Clock lost, selecting a new one\n");
|
2009-04-10 12:15:36 +00:00
|
|
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
|
|
break;
|
2009-05-14 10:30:04 +00:00
|
|
|
case GST_MESSAGE_EOS:{
|
2009-03-31 21:14:08 +00:00
|
|
|
waiting_eos = FALSE;
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("Got EOS from element \"%s\".\n"),
|
2009-06-03 23:29:31 +00:00
|
|
|
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))) {
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("FOUND TAG : found by element \"%s\".\n"),
|
2009-06-03 23:29:31 +00:00
|
|
|
GST_MESSAGE_SRC_NAME (message));
|
|
|
|
} else if (GST_IS_PAD (GST_MESSAGE_SRC (message))) {
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("FOUND TAG : found by pad \"%s:%s\".\n"),
|
2009-06-03 23:29:31 +00:00
|
|
|
GST_DEBUG_PAD_NAME (GST_MESSAGE_SRC (message)));
|
|
|
|
} else if (GST_IS_OBJECT (GST_MESSAGE_SRC (message))) {
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("FOUND TAG : found by object \"%s\".\n"),
|
2009-06-03 23:29:31 +00:00
|
|
|
GST_MESSAGE_SRC_NAME (message));
|
|
|
|
} else {
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("FOUND TAG\n"));
|
2009-06-03 23:29:31 +00:00
|
|
|
}
|
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) {
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("INFO:\n%s\n"), debug);
|
2007-03-08 16:26:44 +00:00
|
|
|
}
|
|
|
|
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);
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("WARNING: from element %s: %s\n"), name, gerror->message);
|
2005-06-25 17:51:12 +00:00
|
|
|
if (debug) {
|
2010-04-09 13:48:00 +00:00
|
|
|
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:{
|
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
|
|
|
|
2010-06-15 00:15:54 +00:00
|
|
|
print_error_message (message);
|
|
|
|
|
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
|
|
|
|
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;
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
2010-09-09 12:57:15 +00:00
|
|
|
gst_message_parse_state_changed (message, &old, &new, &pending);
|
|
|
|
|
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
|
|
|
}
|
2011-05-27 14:14:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_MESSAGE_ELEMENT:{
|
|
|
|
if (gst_is_missing_plugin_message (message)) {
|
|
|
|
const gchar *desc;
|
|
|
|
|
|
|
|
desc = gst_missing_plugin_message_get_description (message);
|
|
|
|
PRINT (_("Missing element: %s\n"), desc ? desc : "(no description)");
|
|
|
|
}
|
|
|
|
break;
|
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);
|
2010-02-11 20:14:59 +00:00
|
|
|
#ifndef DISABLE_FAULT_HANDLER
|
|
|
|
g_source_remove (timeout_id);
|
|
|
|
#endif
|
2006-09-15 10:43:16 +00:00
|
|
|
return res;
|
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
2003-07-01 03:45:19 +00:00
|
|
|
|
2010-09-09 12:57:15 +00:00
|
|
|
static GstBusSyncReply
|
|
|
|
bus_sync_handler (GstBus * bus, GstMessage * message, gpointer data)
|
|
|
|
{
|
|
|
|
GstElement *pipeline = (GstElement *) data;
|
|
|
|
|
|
|
|
switch (GST_MESSAGE_TYPE (message)) {
|
|
|
|
case GST_MESSAGE_STATE_CHANGED:
|
|
|
|
/* we only care about pipeline state change messages */
|
|
|
|
if (GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (pipeline)) {
|
|
|
|
GstState old, new, pending;
|
|
|
|
gchar *state_transition_name;
|
|
|
|
|
|
|
|
gst_message_parse_state_changed (message, &old, &new, &pending);
|
|
|
|
|
|
|
|
state_transition_name = g_strdup_printf ("%s_%s",
|
|
|
|
gst_element_state_get_name (old), gst_element_state_get_name (new));
|
|
|
|
|
|
|
|
/* dump graph for (some) pipeline state changes */
|
|
|
|
{
|
|
|
|
gchar *dump_name = g_strconcat ("gst-launch.", state_transition_name,
|
|
|
|
NULL);
|
|
|
|
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
|
|
|
|
GST_DEBUG_GRAPH_SHOW_ALL, dump_name);
|
|
|
|
g_free (dump_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* place a marker into e.g. strace logs */
|
|
|
|
{
|
|
|
|
gchar *access_name = g_strconcat (g_get_tmp_dir (), G_DIR_SEPARATOR_S,
|
|
|
|
"gst-launch", G_DIR_SEPARATOR_S, state_transition_name, NULL);
|
2010-09-17 17:53:33 +00:00
|
|
|
g_file_test (access_name, G_FILE_TEST_EXISTS);
|
2010-09-09 12:57:15 +00:00
|
|
|
g_free (access_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (state_transition_name);
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return GST_BUS_PASS;
|
|
|
|
}
|
|
|
|
|
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;
|
2011-02-21 09:24:45 +00:00
|
|
|
gboolean check_index = 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,...")},
|
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},
|
2011-02-21 09:24:45 +00:00
|
|
|
{"index", 'i', 0, G_OPTION_ARG_NONE, &check_index,
|
|
|
|
N_("Gather and print index statistics"), 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
|
2011-02-21 09:24:45 +00:00
|
|
|
GstIndex *index;
|
|
|
|
GPtrArray *index_stats = NULL;
|
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
|
|
|
|
2010-01-20 13:13:11 +00:00
|
|
|
g_thread_init (NULL);
|
2007-01-05 15:55:16 +00:00
|
|
|
|
2010-02-16 11:30:35 +00:00
|
|
|
gst_tools_set_prgname ("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)
|
2010-04-09 13:48:00 +00:00
|
|
|
g_printerr ("Error initializing: %s\n", GST_STR_NULL (err->message));
|
2006-07-08 13:22:32 +00:00
|
|
|
else
|
2010-04-09 13:48:00 +00:00
|
|
|
g_printerr ("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
|
|
|
|
2010-02-16 11:24:33 +00:00
|
|
|
gst_tools_print_version ("gst-launch");
|
|
|
|
|
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 ();
|
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-12-23 20:39:20 +00:00
|
|
|
gst_alloc_trace_set_flags_all (GST_ALLOC_TRACE_LIVE |
|
|
|
|
GST_ALLOC_TRACE_MEM_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
|
|
|
{
|
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
|
|
|
}
|
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;
|
2010-09-09 12:57:15 +00:00
|
|
|
GstBus *bus;
|
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;
|
|
|
|
}
|
2010-09-09 12:57:15 +00:00
|
|
|
|
2011-02-21 09:24:45 +00:00
|
|
|
if (check_index) {
|
|
|
|
/* gst_index_new() creates a null-index, it does not store anything, but
|
|
|
|
* the entry-added signal works and this is what we use to build the
|
|
|
|
* statistics */
|
|
|
|
index = gst_index_new ();
|
|
|
|
if (index) {
|
|
|
|
index_stats = g_ptr_array_new ();
|
|
|
|
g_signal_connect (G_OBJECT (index), "entry-added",
|
|
|
|
G_CALLBACK (entry_added), index_stats);
|
|
|
|
g_object_set (G_OBJECT (index), "resolver", GST_INDEX_RESOLVER_GTYPE,
|
|
|
|
NULL);
|
|
|
|
gst_element_set_index (pipeline, index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-09 12:57:15 +00:00
|
|
|
bus = gst_element_get_bus (pipeline);
|
|
|
|
gst_bus_set_sync_handler (bus, bus_sync_handler, (gpointer) pipeline);
|
|
|
|
gst_object_unref (bus);
|
|
|
|
|
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))) {
|
2010-06-15 00:15:54 +00:00
|
|
|
print_error_message (err_msg);
|
2007-09-23 10:16:49 +00:00
|
|
|
gst_message_unref (err_msg);
|
|
|
|
}
|
|
|
|
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
|
|
|
|
2010-04-09 13:48:00 +00:00
|
|
|
PRINT (_("Execution ended after %" G_GUINT64_FORMAT " ns.\n"), diff);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
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
|
|
|
|
2011-02-21 09:24:45 +00:00
|
|
|
if (check_index) {
|
|
|
|
print_index_stats (index_stats);
|
|
|
|
g_ptr_array_free (index_stats, TRUE);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|