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
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2004-01-20 14:09:42 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-02-13 00:27:28 +00:00
|
|
|
#include <glib.h>
|
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
|
2013-02-13 00:27:28 +00:00
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
#include <glib-unix.h>
|
2002-11-14 02:49:16 +00:00
|
|
|
#include <sys/wait.h>
|
2014-07-27 02:37:08 +00:00
|
|
|
#elif defined (G_OS_WIN32)
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
2019-05-30 11:53:34 +00:00
|
|
|
#include <io.h>
|
|
|
|
#ifndef STDOUT_FILENO
|
|
|
|
#define STDOUT_FILENO 1
|
|
|
|
#endif
|
|
|
|
#define isatty _isatty
|
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"
|
2021-05-11 15:54:43 +00:00
|
|
|
#ifdef HAVE_WINMM
|
|
|
|
#include <timeapi.h>
|
|
|
|
#endif
|
2000-01-30 10:44:33 +00:00
|
|
|
|
2003-07-01 03:45:19 +00:00
|
|
|
extern volatile gboolean glib_on_error_halt;
|
2004-05-07 02:36:28 +00:00
|
|
|
|
2013-02-13 00:27:28 +00:00
|
|
|
#ifdef G_OS_UNIX
|
2003-07-01 03:45:19 +00:00
|
|
|
static void fault_restore (void);
|
|
|
|
static void fault_spin (void);
|
2004-05-07 02:36:28 +00:00
|
|
|
#endif
|
2003-07-01 03:45:19 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
/* exit codes */
|
|
|
|
typedef enum _LaunchExitCode
|
2009-03-26 16:08:01 +00:00
|
|
|
{
|
2019-05-29 11:22:54 +00:00
|
|
|
LEC_STATE_CHANGE_FAILURE = -1,
|
|
|
|
LEC_NO_ERROR = 0,
|
|
|
|
LEC_ERROR,
|
|
|
|
LEC_INTERRUPT
|
|
|
|
} LaunchExitCode;
|
2009-03-26 16:08:01 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
static GMainLoop *loop = NULL;
|
|
|
|
static GstElement *pipeline = NULL;
|
|
|
|
|
|
|
|
/* options */
|
2009-02-09 20:49:05 +00:00
|
|
|
static gboolean quiet = FALSE;
|
2005-07-15 10:30:49 +00:00
|
|
|
static gboolean tags = FALSE;
|
2012-03-22 07:36:02 +00:00
|
|
|
static gboolean toc = FALSE;
|
2005-07-15 10:30:49 +00:00
|
|
|
static gboolean messages = FALSE;
|
2019-05-29 11:22:54 +00:00
|
|
|
static gboolean eos_on_shutdown = FALSE;
|
2016-03-05 17:51:01 +00:00
|
|
|
static gchar **exclude_args = NULL;
|
2005-01-06 03:31:17 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
/* pipeline status */
|
|
|
|
static gboolean is_live = FALSE;
|
|
|
|
static gboolean buffering = FALSE;
|
|
|
|
static LaunchExitCode last_launch_code = LEC_NO_ERROR;
|
|
|
|
static GstState target_state = GST_STATE_PAUSED;
|
|
|
|
static gboolean prerolled = FALSE;
|
|
|
|
static gboolean in_progress = FALSE;
|
|
|
|
static GstClockTime tfthen = GST_CLOCK_TIME_NONE;
|
|
|
|
static gboolean interrupting = FALSE;
|
|
|
|
static gboolean waiting_eos = FALSE;
|
|
|
|
|
2009-02-19 12:45:53 +00:00
|
|
|
/* convenience macro so we don't have to litter the code with if(!quiet) */
|
2019-08-19 16:02:48 +00:00
|
|
|
#define PRINT if(!quiet)gst_print
|
2001-07-23 00:57:06 +00:00
|
|
|
|
2013-02-13 00:27:28 +00:00
|
|
|
#ifdef G_OS_UNIX
|
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
|
|
|
|
2020-03-03 09:49:36 +00:00
|
|
|
/* printf is used instead of gst_print(), since it's less likely to
|
2005-01-06 03:31:17 +00:00
|
|
|
* 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
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fault_spin (void)
|
|
|
|
{
|
|
|
|
int spinning = TRUE;
|
|
|
|
|
2002-12-19 20:59:48 +00:00
|
|
|
glib_on_error_halt = FALSE;
|
2012-06-26 15:55:30 +00:00
|
|
|
g_on_error_stack_trace ("gst-launch-" GST_API_VERSION);
|
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,
|
2013-04-06 23:09:54 +00:00
|
|
|
"Spinning. Please run 'gdb gst-launch-" GST_API_VERSION " %d' to "
|
2012-06-26 15:55:30 +00:00
|
|
|
"continue debugging, Ctrl-C to quit, or Ctrl-\\ to dump core.\n",
|
|
|
|
(gint) getpid ());
|
2004-03-13 15:27:01 +00:00
|
|
|
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
|
|
|
action.sa_handler = fault_handler_sighandler;
|
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
|
|
|
}
|
2013-02-13 00:27:28 +00:00
|
|
|
#endif /* G_OS_UNIX */
|
2002-11-14 02:49:16 +00:00
|
|
|
|
2011-12-30 15:03:02 +00:00
|
|
|
#if 0
|
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) {
|
2020-03-03 09:49:36 +00:00
|
|
|
gst_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) {
|
2020-03-03 09:49:36 +00:00
|
|
|
gst_print ("id %d, %s\n", s->id, s->desc);
|
2011-02-21 09:24:45 +00:00
|
|
|
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)) {
|
2020-03-03 09:49:36 +00:00
|
|
|
gst_print (" total time = %" GST_TIME_FORMAT "\n",
|
2011-02-21 09:24:45 +00:00
|
|
|
GST_TIME_ARGS (last_frame));
|
|
|
|
}
|
2020-03-03 09:49:36 +00:00
|
|
|
gst_print (" frame/keyframe rate = %u / %u = ", s->num_frames,
|
2011-02-21 09:24:45 +00:00
|
|
|
s->num_keyframes);
|
|
|
|
if (s->num_keyframes)
|
2020-03-03 09:49:36 +00:00
|
|
|
gst_print ("%lf\n", s->num_frames / (gdouble) s->num_keyframes);
|
2011-02-21 09:24:45 +00:00
|
|
|
else
|
2020-03-03 09:49:36 +00:00
|
|
|
gst_print ("-\n");
|
2011-02-21 09:24:45 +00:00
|
|
|
if (s->num_keyframes) {
|
2020-03-03 09:49:36 +00:00
|
|
|
gst_print (" min/avg/max keyframe gap = %" GST_TIME_FORMAT ", %"
|
2011-02-21 09:24:45 +00:00
|
|
|
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 {
|
2020-03-03 09:49:36 +00:00
|
|
|
gst_print (" no stats\n");
|
2011-02-21 09:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free (s->desc);
|
|
|
|
g_free (s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-12-30 15:03:02 +00:00
|
|
|
#endif
|
2011-02-21 09:24:45 +00:00
|
|
|
|
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);
|
|
|
|
|
2019-08-19 16:02:48 +00:00
|
|
|
gst_printerr (_("ERROR: from element %s: %s\n"), name, err->message);
|
2010-06-15 00:15:54 +00:00
|
|
|
if (debug != NULL)
|
2019-08-19 16:02:48 +00:00
|
|
|
gst_printerr (_("Additional debug info:\n%s\n"), debug);
|
2010-06-15 00:15:54 +00:00
|
|
|
|
2015-08-20 07:21:59 +00:00
|
|
|
g_clear_error (&err);
|
2010-06-15 00:15:54 +00:00
|
|
|
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++) {
|
2013-10-23 14:56:20 +00:00
|
|
|
gchar *str = NULL;
|
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) {
|
2013-10-23 14:56:20 +00:00
|
|
|
if (!gst_tag_list_get_string_index (list, tag, i, &str)) {
|
|
|
|
g_warning ("Couldn't fetch string for %s tag", tag);
|
2004-08-03 14:29:31 +00:00
|
|
|
g_assert_not_reached ();
|
2013-10-23 14:56:20 +00:00
|
|
|
}
|
2012-07-26 14:26:09 +00:00
|
|
|
} else if (gst_tag_get_type (tag) == GST_TYPE_SAMPLE) {
|
|
|
|
GstSample *sample = NULL;
|
|
|
|
|
|
|
|
if (gst_tag_list_get_sample_index (list, tag, i, &sample)) {
|
|
|
|
GstBuffer *img = gst_sample_get_buffer (sample);
|
|
|
|
GstCaps *caps = gst_sample_get_caps (sample);
|
|
|
|
|
|
|
|
if (img) {
|
|
|
|
if (caps) {
|
|
|
|
gchar *caps_str;
|
|
|
|
|
|
|
|
caps_str = gst_caps_to_string (caps);
|
|
|
|
str = g_strdup_printf ("buffer of %" G_GSIZE_FORMAT " bytes, "
|
|
|
|
"type: %s", gst_buffer_get_size (img), caps_str);
|
|
|
|
g_free (caps_str);
|
|
|
|
} else {
|
|
|
|
str = g_strdup_printf ("buffer of %" G_GSIZE_FORMAT " bytes",
|
|
|
|
gst_buffer_get_size (img));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
str = g_strdup ("NULL buffer");
|
|
|
|
}
|
2013-10-23 14:56:20 +00:00
|
|
|
} else {
|
|
|
|
g_warning ("Couldn't fetch sample for %s tag", tag);
|
|
|
|
g_assert_not_reached ();
|
2006-05-12 16:50:37 +00:00
|
|
|
}
|
2015-10-05 02:12:47 +00:00
|
|
|
gst_sample_unref (sample);
|
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);
|
2012-08-02 10:33:41 +00:00
|
|
|
if (!gst_date_time_has_time (dt)) {
|
|
|
|
str = gst_date_time_to_iso8601_string (dt);
|
2011-02-13 22:56:15 +00:00
|
|
|
} 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
|
|
|
|
2013-10-23 14:56:20 +00:00
|
|
|
if (str) {
|
|
|
|
PRINT ("%16s: %s\n", i == 0 ? gst_tag_get_nick (tag) : "", str);
|
|
|
|
g_free (str);
|
2003-11-24 02:09:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-08-12 09:12:13 +00:00
|
|
|
|
2012-05-08 17:12:42 +00:00
|
|
|
static void
|
|
|
|
print_tag_foreach (const GstTagList * tags, const gchar * tag,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GValue val = { 0, };
|
|
|
|
gchar *str;
|
|
|
|
gint depth = GPOINTER_TO_INT (user_data);
|
|
|
|
|
2013-12-10 23:30:03 +00:00
|
|
|
if (!gst_tag_list_copy_value (&val, tags, tag))
|
|
|
|
return;
|
2012-05-08 17:12:42 +00:00
|
|
|
|
|
|
|
if (G_VALUE_HOLDS_STRING (&val))
|
|
|
|
str = g_value_dup_string (&val);
|
|
|
|
else
|
|
|
|
str = gst_value_serialize (&val);
|
|
|
|
|
2020-03-03 09:49:36 +00:00
|
|
|
gst_print ("%*s%s: %s\n", 2 * depth, " ", gst_tag_get_nick (tag), str);
|
2012-05-08 17:12:42 +00:00
|
|
|
g_free (str);
|
|
|
|
|
|
|
|
g_value_unset (&val);
|
|
|
|
}
|
|
|
|
|
2012-04-02 22:17:21 +00:00
|
|
|
#define MAX_INDENT 40
|
|
|
|
|
2012-03-22 07:36:02 +00:00
|
|
|
static void
|
|
|
|
print_toc_entry (gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
GstTocEntry *entry = (GstTocEntry *) data;
|
2012-04-02 22:17:21 +00:00
|
|
|
const gchar spc[MAX_INDENT + 1] = " ";
|
|
|
|
guint indent = MIN (GPOINTER_TO_UINT (user_data), MAX_INDENT);
|
2012-07-03 16:45:05 +00:00
|
|
|
const GstTagList *tags;
|
|
|
|
GList *subentries;
|
2012-03-22 07:36:02 +00:00
|
|
|
gint64 start, stop;
|
|
|
|
|
2012-07-03 16:45:05 +00:00
|
|
|
gst_toc_entry_get_start_stop_times (entry, &start, &stop);
|
2012-03-22 07:36:02 +00:00
|
|
|
|
2012-05-15 11:59:07 +00:00
|
|
|
PRINT ("%s%s:", &spc[MAX_INDENT - indent],
|
2012-07-03 16:45:05 +00:00
|
|
|
gst_toc_entry_type_get_nick (gst_toc_entry_get_entry_type (entry)));
|
2012-03-22 07:36:02 +00:00
|
|
|
if (GST_CLOCK_TIME_IS_VALID (start)) {
|
|
|
|
PRINT (" start: %" GST_TIME_FORMAT, GST_TIME_ARGS (start));
|
|
|
|
}
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (stop)) {
|
|
|
|
PRINT (" stop: %" GST_TIME_FORMAT, GST_TIME_ARGS (stop));
|
|
|
|
}
|
|
|
|
PRINT ("\n");
|
|
|
|
indent += 2;
|
|
|
|
|
2012-05-08 17:12:42 +00:00
|
|
|
/* print tags */
|
2012-07-03 16:45:05 +00:00
|
|
|
tags = gst_toc_entry_get_tags (entry);
|
|
|
|
if (tags)
|
|
|
|
gst_tag_list_foreach (tags, print_tag_foreach, GUINT_TO_POINTER (indent));
|
2012-03-22 07:36:02 +00:00
|
|
|
|
|
|
|
/* loop over sub-toc entries */
|
2012-07-03 16:45:05 +00:00
|
|
|
subentries = gst_toc_entry_get_sub_entries (entry);
|
|
|
|
g_list_foreach (subentries, print_toc_entry, GUINT_TO_POINTER (indent));
|
2012-03-22 07:36:02 +00:00
|
|
|
}
|
|
|
|
|
2017-07-20 16:31:41 +00:00
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
static guint signal_watch_hup_id;
|
|
|
|
#endif
|
2014-07-27 02:37:08 +00:00
|
|
|
#if defined(G_OS_UNIX) || defined(G_OS_WIN32)
|
2017-06-11 15:15:13 +00:00
|
|
|
static guint signal_watch_intr_id;
|
2013-12-05 00:26:13 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-27 02:37:08 +00:00
|
|
|
#if defined(G_OS_UNIX) || defined(G_OS_WIN32)
|
2013-02-13 00:27:28 +00:00
|
|
|
/* As the interrupt handler is dispatched from GMainContext as a GSourceFunc
|
|
|
|
* handler, we can react to this by posting a message. */
|
2005-03-21 17:34:02 +00:00
|
|
|
static gboolean
|
2013-02-13 00:27:28 +00:00
|
|
|
intr_handler (gpointer user_data)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
2013-02-13 00:27:28 +00:00
|
|
|
GstElement *pipeline = (GstElement *) user_data;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2013-02-13 00:27:28 +00:00
|
|
|
PRINT ("handling interrupt.\n");
|
2003-07-01 03:45:19 +00:00
|
|
|
|
2013-02-13 00:27:28 +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)));
|
2003-07-01 03:45:19 +00:00
|
|
|
|
2013-02-13 00:27:28 +00:00
|
|
|
/* remove signal handler */
|
2017-06-11 15:15:13 +00:00
|
|
|
signal_watch_intr_id = 0;
|
|
|
|
return G_SOURCE_REMOVE;
|
|
|
|
}
|
|
|
|
|
2017-07-20 16:31:41 +00:00
|
|
|
#ifdef G_OS_UNIX
|
2017-06-11 15:15:13 +00:00
|
|
|
static gboolean
|
|
|
|
hup_handler (gpointer user_data)
|
|
|
|
{
|
|
|
|
GstElement *pipeline = (GstElement *) user_data;
|
|
|
|
|
|
|
|
if (g_getenv ("GST_DEBUG_DUMP_DOT_DIR") != NULL) {
|
|
|
|
PRINT ("SIGHUP: dumping dot file snapshot ...\n");
|
|
|
|
} else {
|
|
|
|
PRINT ("SIGHUP: not dumping dot file snapshot, GST_DEBUG_DUMP_DOT_DIR "
|
|
|
|
"environment variable not set.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* dump graph on hup */
|
|
|
|
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
|
|
|
|
GST_DEBUG_GRAPH_SHOW_ALL, "gst-launch.snapshot");
|
|
|
|
|
|
|
|
return G_SOURCE_CONTINUE;
|
2003-07-01 03:45:19 +00:00
|
|
|
}
|
2017-07-20 16:31:41 +00:00
|
|
|
#endif
|
2003-07-01 03:45:19 +00:00
|
|
|
|
2014-11-28 13:17:54 +00:00
|
|
|
#if defined(G_OS_WIN32) /* G_OS_UNIX */
|
2014-07-27 02:37:08 +00:00
|
|
|
static BOOL WINAPI
|
|
|
|
w32_intr_handler (DWORD dwCtrlType)
|
|
|
|
{
|
2019-05-29 11:22:54 +00:00
|
|
|
if (pipeline)
|
|
|
|
intr_handler ((gpointer) pipeline);
|
|
|
|
|
|
|
|
SetConsoleCtrlHandler (w32_intr_handler, FALSE);
|
|
|
|
|
2014-07-27 02:37:08 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#endif /* G_OS_WIN32 */
|
2013-02-13 00:27:28 +00:00
|
|
|
#endif /* G_OS_UNIX */
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
static void
|
|
|
|
do_initial_play (GstElement * pipeline)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
2019-05-29 11:22:54 +00:00
|
|
|
PRINT (_("Setting pipeline to PLAYING ...\n"));
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
tfthen = gst_util_get_timestamp ();
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
if (gst_element_set_state (pipeline,
|
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) {
|
|
|
|
gst_printerr (_("ERROR: pipeline doesn't want to play.\n"));
|
|
|
|
last_launch_code = LEC_STATE_CHANGE_FAILURE;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
/* error message will be posted later */
|
|
|
|
return;
|
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
target_state = GST_STATE_PLAYING;
|
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
static gboolean
|
|
|
|
bus_handler (GstBus * bus, GstMessage * message, gpointer data)
|
|
|
|
{
|
|
|
|
{
|
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:{
|
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));
|
2019-05-29 11:22:54 +00:00
|
|
|
|
|
|
|
if (eos_on_shutdown)
|
|
|
|
PRINT (_("EOS received - stopping pipeline...\n"));
|
|
|
|
g_main_loop_quit (loop);
|
|
|
|
break;
|
2009-05-14 10:30:04 +00:00
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
case GST_MESSAGE_TAG:
|
|
|
|
if (tags) {
|
2012-03-22 07:35:25 +00:00
|
|
|
GstTagList *tag_list;
|
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
|
|
|
|
2012-03-22 07:35:25 +00:00
|
|
|
gst_message_parse_tag (message, &tag_list);
|
|
|
|
gst_tag_list_foreach (tag_list, print_tag, NULL);
|
2012-05-27 23:08:18 +00:00
|
|
|
gst_tag_list_unref (tag_list);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2012-03-22 07:36:02 +00:00
|
|
|
case GST_MESSAGE_TOC:
|
|
|
|
if (toc) {
|
2012-07-03 16:45:05 +00:00
|
|
|
GstToc *toc;
|
|
|
|
GList *entries;
|
2012-03-22 07:36:02 +00:00
|
|
|
gboolean updated;
|
|
|
|
|
|
|
|
if (GST_IS_ELEMENT (GST_MESSAGE_SRC (message))) {
|
|
|
|
PRINT (_("FOUND TOC : found by element \"%s\".\n"),
|
|
|
|
GST_MESSAGE_SRC_NAME (message));
|
|
|
|
} else if (GST_IS_OBJECT (GST_MESSAGE_SRC (message))) {
|
|
|
|
PRINT (_("FOUND TOC : found by object \"%s\".\n"),
|
|
|
|
GST_MESSAGE_SRC_NAME (message));
|
|
|
|
} else {
|
|
|
|
PRINT (_("FOUND TOC\n"));
|
|
|
|
}
|
|
|
|
|
2012-07-03 16:45:05 +00:00
|
|
|
gst_message_parse_toc (message, &toc, &updated);
|
2012-03-22 07:36:02 +00:00
|
|
|
/* recursively loop over toc entries */
|
2012-07-03 16:45:05 +00:00
|
|
|
entries = gst_toc_get_entries (toc);
|
|
|
|
g_list_foreach (entries, print_toc_entry, GUINT_TO_POINTER (0));
|
|
|
|
gst_toc_unref (toc);
|
2012-03-22 07:36:02 +00:00
|
|
|
}
|
|
|
|
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
|
|
|
}
|
2015-08-20 07:21:59 +00:00
|
|
|
g_clear_error (&gerror);
|
2007-03-08 16:26:44 +00:00
|
|
|
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
|
|
|
}
|
2015-08-20 07:21:59 +00:00
|
|
|
g_clear_error (&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_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;
|
|
|
|
|
2010-09-09 12:57:15 +00:00
|
|
|
gst_message_parse_state_changed (message, &old, &new, &pending);
|
|
|
|
|
2013-03-05 10:14:41 +00:00
|
|
|
if (target_state == GST_STATE_PAUSED && new == target_state) {
|
|
|
|
prerolled = TRUE;
|
2019-05-29 11:22:54 +00:00
|
|
|
|
|
|
|
PRINT (_("Pipeline is PREROLLED ...\n"));
|
2013-03-05 10:14:41 +00:00
|
|
|
/* ignore when we are buffering since then we mess with the states
|
|
|
|
* ourselves. */
|
|
|
|
if (buffering) {
|
|
|
|
PRINT (_("Prerolled, waiting for buffering to finish...\n"));
|
|
|
|
break;
|
|
|
|
}
|
2013-04-11 12:55:47 +00:00
|
|
|
if (in_progress) {
|
|
|
|
PRINT (_("Prerolled, waiting for progress to finish...\n"));
|
|
|
|
break;
|
|
|
|
}
|
2019-05-29 11:22:54 +00:00
|
|
|
|
|
|
|
do_initial_play (pipeline);
|
2013-03-05 10:14:41 +00:00
|
|
|
}
|
2006-09-15 10:43:16 +00:00
|
|
|
/* 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;
|
2019-05-29 11:22:54 +00:00
|
|
|
|
|
|
|
if (target_state == GST_STATE_PAUSED) {
|
|
|
|
do_initial_play (pipeline);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-09-15 10:43:16 +00:00
|
|
|
/* 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);
|
2019-05-29 11:22:54 +00:00
|
|
|
}
|
2006-09-15 10:43:16 +00:00
|
|
|
} else {
|
|
|
|
/* buffering busy */
|
2014-11-28 13:17:54 +00:00
|
|
|
if (!buffering && target_state == GST_STATE_PLAYING) {
|
2006-09-15 10:43:16 +00:00
|
|
|
/* 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"));
|
2019-05-29 11:22:54 +00:00
|
|
|
interrupting = TRUE;
|
|
|
|
|
|
|
|
if (eos_on_shutdown) {
|
|
|
|
if (waiting_eos) {
|
|
|
|
PRINT (_
|
|
|
|
("Interrupt while waiting for EOS - stopping pipeline...\n"));
|
|
|
|
|
|
|
|
g_main_loop_quit (loop);
|
|
|
|
} else {
|
|
|
|
PRINT (_
|
|
|
|
("EOS on shutdown enabled -- Forcing EOS on the pipeline\n"));
|
|
|
|
gst_element_send_event (pipeline, gst_event_new_eos ());
|
|
|
|
|
|
|
|
PRINT (_("Waiting for EOS...\n"));
|
|
|
|
|
|
|
|
waiting_eos = TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
g_main_loop_quit (loop);
|
|
|
|
}
|
2005-05-17 10:41:51 +00:00
|
|
|
}
|
2011-05-27 14:14:32 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-04-11 12:55:47 +00:00
|
|
|
case GST_MESSAGE_PROGRESS:
|
|
|
|
{
|
|
|
|
GstProgressType type;
|
|
|
|
gchar *code, *text;
|
|
|
|
|
|
|
|
gst_message_parse_progress (message, &type, &code, &text);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case GST_PROGRESS_TYPE_START:
|
|
|
|
case GST_PROGRESS_TYPE_CONTINUE:
|
2019-05-29 11:22:54 +00:00
|
|
|
in_progress = TRUE;
|
2013-04-11 12:55:47 +00:00
|
|
|
break;
|
|
|
|
case GST_PROGRESS_TYPE_COMPLETE:
|
|
|
|
case GST_PROGRESS_TYPE_CANCELED:
|
|
|
|
case GST_PROGRESS_TYPE_ERROR:
|
|
|
|
in_progress = FALSE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
PRINT (_("Progress: (%s) %s\n"), code, text);
|
|
|
|
g_free (code);
|
|
|
|
g_free (text);
|
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
if (!in_progress && prerolled && target_state == GST_STATE_PAUSED) {
|
|
|
|
do_initial_play (pipeline);
|
|
|
|
}
|
2013-04-11 12:55:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-05-27 14:14:32 +00:00
|
|
|
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
|
|
|
}
|
2013-04-17 11:47:35 +00:00
|
|
|
case GST_MESSAGE_HAVE_CONTEXT:{
|
2013-09-17 12:34:47 +00:00
|
|
|
GstContext *context;
|
|
|
|
const gchar *context_type;
|
2013-04-17 11:47:35 +00:00
|
|
|
gchar *context_str;
|
|
|
|
|
2013-09-17 12:34:47 +00:00
|
|
|
gst_message_parse_have_context (message, &context);
|
2013-04-17 11:47:35 +00:00
|
|
|
|
2013-09-17 12:34:47 +00:00
|
|
|
context_type = gst_context_get_context_type (context);
|
2013-04-17 11:47:35 +00:00
|
|
|
context_str =
|
2013-09-17 12:34:47 +00:00
|
|
|
gst_structure_to_string (gst_context_get_structure (context));
|
|
|
|
PRINT (_("Got context from element '%s': %s=%s\n"),
|
|
|
|
GST_ELEMENT_NAME (GST_MESSAGE_SRC (message)), context_type,
|
|
|
|
context_str);
|
2013-04-17 11:47:35 +00:00
|
|
|
g_free (context_str);
|
2013-09-17 12:34:47 +00:00
|
|
|
gst_context_unref (context);
|
2013-04-17 11:47:35 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-03-05 17:51:01 +00:00
|
|
|
case GST_MESSAGE_PROPERTY_NOTIFY:{
|
|
|
|
const GValue *val;
|
|
|
|
const gchar *name;
|
|
|
|
GstObject *obj;
|
|
|
|
gchar *val_str = NULL;
|
|
|
|
gchar **ex_prop, *obj_name;
|
|
|
|
|
|
|
|
if (quiet)
|
|
|
|
break;
|
|
|
|
|
|
|
|
gst_message_parse_property_notify (message, &obj, &name, &val);
|
|
|
|
|
|
|
|
/* Let's not print anything for excluded properties... */
|
|
|
|
ex_prop = exclude_args;
|
|
|
|
while (ex_prop != NULL && *ex_prop != NULL) {
|
|
|
|
if (strcmp (name, *ex_prop) == 0)
|
|
|
|
break;
|
|
|
|
ex_prop++;
|
|
|
|
}
|
|
|
|
if (ex_prop != NULL && *ex_prop != NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
obj_name = gst_object_get_path_string (GST_OBJECT (obj));
|
|
|
|
if (val != NULL) {
|
|
|
|
if (G_VALUE_HOLDS_STRING (val))
|
|
|
|
val_str = g_value_dup_string (val);
|
|
|
|
else if (G_VALUE_TYPE (val) == GST_TYPE_CAPS)
|
|
|
|
val_str = gst_caps_to_string (g_value_get_boxed (val));
|
2016-04-13 15:40:43 +00:00
|
|
|
else if (G_VALUE_TYPE (val) == GST_TYPE_TAG_LIST)
|
|
|
|
val_str = gst_tag_list_to_string (g_value_get_boxed (val));
|
2017-03-27 17:27:59 +00:00
|
|
|
else if (G_VALUE_TYPE (val) == GST_TYPE_STRUCTURE)
|
|
|
|
val_str = gst_structure_to_string (g_value_get_boxed (val));
|
2016-04-13 15:40:43 +00:00
|
|
|
else
|
|
|
|
val_str = gst_value_serialize (val);
|
2016-03-05 17:51:01 +00:00
|
|
|
} else {
|
|
|
|
val_str = g_strdup ("(no value)");
|
|
|
|
}
|
|
|
|
|
2020-03-03 09:49:36 +00:00
|
|
|
gst_print ("%s: %s = %s\n", obj_name, name, val_str);
|
2016-03-05 17:51:01 +00:00
|
|
|
g_free (obj_name);
|
|
|
|
g_free (val_str);
|
|
|
|
break;
|
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
default:
|
|
|
|
/* just be quiet by default */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-09-15 10:43:16 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
return TRUE;
|
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);
|
|
|
|
}
|
2013-06-09 15:20:22 +00:00
|
|
|
break;
|
2019-12-26 14:08:09 +00:00
|
|
|
case GST_MESSAGE_ERROR:{
|
|
|
|
/* dump graph on error */
|
|
|
|
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
|
|
|
|
GST_DEBUG_GRAPH_SHOW_ALL, "gst-launch.error");
|
|
|
|
|
|
|
|
print_error_message (message);
|
|
|
|
|
|
|
|
if (target_state == GST_STATE_PAUSED) {
|
|
|
|
gst_printerr (_("ERROR: pipeline doesn't want to preroll.\n"));
|
|
|
|
} else if (interrupting) {
|
|
|
|
PRINT (_("An error happened while waiting for EOS\n"));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we have an error */
|
|
|
|
last_launch_code = LEC_ERROR;
|
|
|
|
g_main_loop_quit (loop);
|
|
|
|
break;
|
|
|
|
}
|
2010-09-09 12:57:15 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return GST_BUS_PASS;
|
|
|
|
}
|
|
|
|
|
2019-05-30 11:53:34 +00:00
|
|
|
static gboolean
|
|
|
|
query_pipeline_position (gpointer user_data)
|
|
|
|
{
|
|
|
|
gint64 pos = -1, dur = -1;
|
|
|
|
gboolean output_is_tty = GPOINTER_TO_INT (user_data);
|
|
|
|
|
|
|
|
if (buffering)
|
|
|
|
return G_SOURCE_CONTINUE;
|
|
|
|
|
|
|
|
gst_element_query_position (pipeline, GST_FORMAT_TIME, &pos);
|
|
|
|
gst_element_query_duration (pipeline, GST_FORMAT_TIME, &dur);
|
|
|
|
|
|
|
|
if (pos >= 0) {
|
|
|
|
gchar dstr[32], pstr[32];
|
|
|
|
|
|
|
|
/* FIXME: pretty print in nicer format */
|
|
|
|
g_snprintf (pstr, 32, "%" GST_TIME_FORMAT, GST_TIME_ARGS (pos));
|
|
|
|
pstr[9] = '\0';
|
|
|
|
g_snprintf (dstr, 32, "%" GST_TIME_FORMAT, GST_TIME_ARGS (dur));
|
|
|
|
dstr[9] = '\0';
|
|
|
|
|
|
|
|
if (dur > 0 && dur >= pos) {
|
|
|
|
gdouble percent;
|
|
|
|
percent = 100 * (gdouble) (pos) / dur;
|
|
|
|
|
|
|
|
gst_print ("%s / %s (%.1f %%)%c", pstr, dstr, percent,
|
|
|
|
output_is_tty ? '\r' : '\n');
|
|
|
|
} else
|
|
|
|
gst_print ("%s / %s%c", pstr, dstr, output_is_tty ? '\r' : '\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
return G_SOURCE_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2021-05-11 15:54:43 +00:00
|
|
|
#ifdef HAVE_WINMM
|
|
|
|
static guint
|
|
|
|
enable_winmm_timer_resolution (void)
|
|
|
|
{
|
|
|
|
TIMECAPS time_caps;
|
|
|
|
guint resolution = 0;
|
|
|
|
MMRESULT res;
|
|
|
|
|
|
|
|
res = timeGetDevCaps (&time_caps, sizeof (TIMECAPS));
|
|
|
|
if (res != TIMERR_NOERROR) {
|
|
|
|
g_warning ("timeGetDevCaps() returned non-zero code %d", res);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
resolution = MIN (MAX (time_caps.wPeriodMin, 1), time_caps.wPeriodMax);
|
|
|
|
res = timeBeginPeriod (resolution);
|
|
|
|
if (res != TIMERR_NOERROR) {
|
|
|
|
g_warning ("timeBeginPeriod() returned non-zero code %d", res);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRINT (_("Use Windows high-resolution clock, precision: %u ms\n"),
|
|
|
|
resolution);
|
|
|
|
|
|
|
|
return resolution;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clear_winmm_timer_resolution (guint resolution)
|
|
|
|
{
|
|
|
|
if (resolution == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
timeEndPeriod (resolution);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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;
|
2011-12-30 15:03:02 +00:00
|
|
|
#if 0
|
2011-02-21 09:24:45 +00:00
|
|
|
gboolean check_index = FALSE;
|
2011-12-30 15:03:02 +00:00
|
|
|
#endif
|
2002-04-07 23:32:16 +00:00
|
|
|
gchar *savefile = NULL;
|
2019-05-30 11:53:34 +00:00
|
|
|
gboolean no_position = FALSE;
|
2019-11-12 02:24:45 +00:00
|
|
|
gboolean force_position = FALSE;
|
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},
|
2012-03-22 07:36:02 +00:00
|
|
|
{"toc", 'c', 0, G_OPTION_ARG_NONE, &toc,
|
2012-05-18 17:11:55 +00:00
|
|
|
N_("Output TOC (chapters and editions)"), 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},
|
2015-09-05 10:18:27 +00:00
|
|
|
{"exclude", 'X', 0, G_OPTION_ARG_STRING_ARRAY, &exclude_args,
|
|
|
|
N_("Do not output status information for the specified property "
|
|
|
|
"if verbose output is enabled (can be used multiple times)"),
|
|
|
|
N_("PROPERTY-NAME")},
|
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},
|
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-12-30 15:03:02 +00:00
|
|
|
#if 0
|
2011-02-21 09:24:45 +00:00
|
|
|
{"index", 'i', 0, G_OPTION_ARG_NONE, &check_index,
|
|
|
|
N_("Gather and print index statistics"), NULL},
|
2011-12-30 15:03:02 +00:00
|
|
|
#endif
|
2006-05-05 17:07:42 +00:00
|
|
|
GST_TOOLS_GOPTION_VERSION,
|
2019-05-30 11:53:34 +00:00
|
|
|
{"no-position", '\0', 0, G_OPTION_ARG_NONE, &no_position,
|
2019-11-12 02:24:45 +00:00
|
|
|
N_("Do not print current position of pipeline. "
|
|
|
|
"If this option is unspecified, the position will be printed "
|
|
|
|
"when stdout is a TTY. "
|
|
|
|
"To enable printing position when stdout is not a TTY, "
|
|
|
|
"use \"force-position\" option"), NULL},
|
|
|
|
{"force-position", '\0', 0, G_OPTION_ARG_NONE, &force_position,
|
|
|
|
N_("Allow printing current position of pipeline even if "
|
|
|
|
"stdout is not a TTY. This option has no effect if "
|
|
|
|
"the \"no-position\" option is specified"),
|
|
|
|
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
|
|
|
{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-12-30 15:03:02 +00:00
|
|
|
#if 0
|
2011-02-21 09:24:45 +00:00
|
|
|
GstIndex *index;
|
|
|
|
GPtrArray *index_stats = NULL;
|
2011-12-30 15:03:02 +00:00
|
|
|
#endif
|
2002-01-15 05:57:14 +00:00
|
|
|
gchar **argvn;
|
2002-04-07 23:32:16 +00:00
|
|
|
GError *error = NULL;
|
2013-08-26 12:19:10 +00:00
|
|
|
gulong deep_notify_id = 0;
|
2019-05-29 11:22:54 +00:00
|
|
|
guint bus_watch_id = 0;
|
2019-05-30 11:53:34 +00:00
|
|
|
GSource *position_source = NULL;
|
2021-05-11 15:54:43 +00:00
|
|
|
#ifdef HAVE_WINMM
|
|
|
|
guint winmm_timer_resolution = 0;
|
|
|
|
#endif
|
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
|
|
|
|
2014-01-30 20:24:21 +00:00
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
|
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
|
|
|
|
2012-06-26 16:04:01 +00:00
|
|
|
g_set_prgname ("gst-launch-" GST_API_VERSION);
|
2016-12-22 17:45:10 +00:00
|
|
|
/* Ensure XInitThreads() is called if/when needed */
|
|
|
|
g_setenv ("GST_GL_XINITTHREADS", "1", TRUE);
|
2010-02-16 11:30:35 +00:00
|
|
|
|
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)
|
2019-08-19 16:02:48 +00:00
|
|
|
gst_printerr ("Error initializing: %s\n", GST_STR_NULL (err->message));
|
2006-07-08 13:22:32 +00:00
|
|
|
else
|
2019-08-19 16:02:48 +00:00
|
|
|
gst_printerr ("Error initializing: Unknown error!\n");
|
2016-11-02 12:57:51 +00:00
|
|
|
g_clear_error (&err);
|
2015-08-20 07:21:59 +00:00
|
|
|
g_option_context_free (ctx);
|
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
|
|
|
|
2012-06-26 16:27:31 +00:00
|
|
|
gst_tools_print_version ();
|
2010-02-16 11:24:33 +00:00
|
|
|
|
2013-02-13 00:27:28 +00:00
|
|
|
#ifdef G_OS_UNIX
|
2002-12-30 18:29:16 +00:00
|
|
|
if (!no_fault)
|
2004-03-13 15:27:01 +00:00
|
|
|
fault_setup ();
|
2004-05-07 02:36:28 +00:00
|
|
|
#endif
|
2003-07-01 03:45:19 +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) {
|
2019-08-19 16:02:48 +00:00
|
|
|
gst_printerr (_("ERROR: pipeline could not be constructed: %s.\n"),
|
2005-10-11 16:21:05 +00:00
|
|
|
GST_STR_NULL (error->message));
|
2015-08-20 07:21:59 +00:00
|
|
|
g_clear_error (&error);
|
2003-04-10 01:40:03 +00:00
|
|
|
} else {
|
2019-08-19 16:02:48 +00:00
|
|
|
gst_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) {
|
2019-08-19 16:02:48 +00:00
|
|
|
gst_printerr (_("WARNING: erroneous pipeline: %s\n"),
|
2005-10-11 16:21:05 +00:00
|
|
|
GST_STR_NULL (error->message));
|
2015-08-20 07:21:59 +00:00
|
|
|
g_clear_error (&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
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
loop = g_main_loop_new (NULL, FALSE);
|
|
|
|
|
2002-04-07 23:32:16 +00:00
|
|
|
if (!savefile) {
|
2005-09-02 15:42:00 +00:00
|
|
|
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) {
|
2019-08-19 16:02:48 +00:00
|
|
|
gst_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;
|
|
|
|
}
|
2021-05-11 15:54:43 +00:00
|
|
|
#ifdef HAVE_WINMM
|
|
|
|
/* Enable high-precision clock which will improve accuracy of various
|
|
|
|
* Windows timer APIs (e.g., Sleep()), and it will increase the precision
|
|
|
|
* of GstSystemClock as well
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* NOTE: Once timer resolution is updated via timeBeginPeriod(),
|
|
|
|
* application should undo it by calling timeEndPeriod()
|
|
|
|
*
|
|
|
|
* Prior to Windows 10, version 2004, timeBeginPeriod() affects global
|
|
|
|
* Windows setting (meaning that it will affect other processes),
|
|
|
|
* but starting with Windows 10, version 2004, this function no longer
|
|
|
|
* affects global timer resolution
|
|
|
|
*/
|
|
|
|
winmm_timer_resolution = enable_winmm_timer_resolution ();
|
|
|
|
#endif
|
|
|
|
|
2014-03-25 11:38:07 +00:00
|
|
|
if (verbose) {
|
2016-03-05 17:51:01 +00:00
|
|
|
deep_notify_id =
|
|
|
|
gst_element_add_property_deep_notify_watch (pipeline, NULL, TRUE);
|
2014-03-25 11:38:07 +00:00
|
|
|
}
|
2011-12-30 15:03:02 +00:00
|
|
|
#if 0
|
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);
|
|
|
|
}
|
|
|
|
}
|
2011-12-30 15:03:02 +00:00
|
|
|
#endif
|
2011-02-21 09:24:45 +00:00
|
|
|
|
2010-09-09 12:57:15 +00:00
|
|
|
bus = gst_element_get_bus (pipeline);
|
2012-06-20 10:29:35 +00:00
|
|
|
gst_bus_set_sync_handler (bus, bus_sync_handler, (gpointer) pipeline, NULL);
|
2019-05-29 11:22:54 +00:00
|
|
|
bus_watch_id = gst_bus_add_watch (bus, bus_handler, NULL);
|
2010-09-09 12:57:15 +00:00
|
|
|
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:
|
2019-12-26 14:08:09 +00:00
|
|
|
gst_printerr (_("Failed to set pipeline to PAUSED.\n"));
|
2019-05-29 11:22:54 +00:00
|
|
|
last_launch_code = LEC_STATE_CHANGE_FAILURE;
|
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"));
|
2019-05-29 11:22:54 +00:00
|
|
|
break;
|
|
|
|
default:
|
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
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
signal_watch_intr_id =
|
|
|
|
g_unix_signal_add (SIGINT, (GSourceFunc) intr_handler, pipeline);
|
|
|
|
signal_watch_hup_id =
|
|
|
|
g_unix_signal_add (SIGHUP, (GSourceFunc) hup_handler, pipeline);
|
|
|
|
#elif defined(G_OS_WIN32)
|
|
|
|
SetConsoleCtrlHandler (w32_intr_handler, TRUE);
|
|
|
|
#endif
|
2019-05-30 11:53:34 +00:00
|
|
|
if (!no_position) {
|
|
|
|
gboolean output_is_tty = TRUE;
|
|
|
|
|
|
|
|
if (!isatty (STDOUT_FILENO))
|
|
|
|
output_is_tty = FALSE;
|
|
|
|
|
2019-11-12 02:24:45 +00:00
|
|
|
if (output_is_tty || (!output_is_tty && force_position)) {
|
|
|
|
position_source = g_timeout_source_new (100);
|
|
|
|
g_source_set_callback (position_source, query_pipeline_position,
|
|
|
|
GINT_TO_POINTER (output_is_tty), NULL);
|
|
|
|
g_source_attach (position_source, NULL);
|
|
|
|
}
|
2019-05-30 11:53:34 +00:00
|
|
|
}
|
2001-01-04 10:47:39 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
/* playing state will be set on state-changed message handler */
|
|
|
|
g_main_loop_run (loop);
|
2012-05-18 07:52:09 +00:00
|
|
|
|
2019-05-30 11:53:34 +00:00
|
|
|
if (position_source) {
|
|
|
|
g_source_destroy (position_source);
|
|
|
|
g_source_unref (position_source);
|
|
|
|
}
|
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
{
|
|
|
|
GstClockTime tfnow;
|
|
|
|
GstClockTimeDiff diff;
|
2009-03-26 16:08:01 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
if (GST_CLOCK_TIME_IS_VALID (tfthen)) {
|
|
|
|
tfnow = gst_util_get_timestamp ();
|
|
|
|
diff = GST_CLOCK_DIFF (tfthen, tfnow);
|
2012-05-18 07:52:09 +00:00
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
PRINT (_("Execution ended after %" GST_TIME_FORMAT "\n"),
|
|
|
|
GST_TIME_ARGS (diff));
|
2009-03-26 16:08:01 +00:00
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
2006-09-15 10:43:16 +00:00
|
|
|
|
2013-08-26 12:19:10 +00:00
|
|
|
/* No need to see all those pad caps going to NULL etc., it's just noise */
|
|
|
|
if (deep_notify_id != 0)
|
|
|
|
g_signal_handler_disconnect (pipeline, deep_notify_id);
|
|
|
|
|
2011-12-30 15:03:02 +00:00
|
|
|
#if 0
|
2011-02-21 09:24:45 +00:00
|
|
|
if (check_index) {
|
|
|
|
print_index_stats (index_stats);
|
|
|
|
g_ptr_array_free (index_stats, TRUE);
|
|
|
|
}
|
2011-12-30 15:03:02 +00:00
|
|
|
#endif
|
2011-02-21 09:24:45 +00:00
|
|
|
|
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);
|
2019-05-29 11:22:54 +00:00
|
|
|
|
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
if (signal_watch_intr_id > 0)
|
|
|
|
g_source_remove (signal_watch_intr_id);
|
|
|
|
if (signal_watch_hup_id > 0)
|
|
|
|
g_source_remove (signal_watch_hup_id);
|
|
|
|
#endif
|
|
|
|
g_source_remove (bus_watch_id);
|
|
|
|
g_main_loop_unref (loop);
|
2021-05-11 15:54:43 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_WINMM
|
|
|
|
/* Undo timeBeginPeriod() if required */
|
|
|
|
clear_winmm_timer_resolution (winmm_timer_resolution);
|
|
|
|
#endif
|
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
|
|
|
|
2019-05-29 11:22:54 +00:00
|
|
|
return last_launch_code;
|
2000-01-30 10:44:33 +00:00
|
|
|
}
|