2010-09-20 09:22:32 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
|
|
|
|
* 2009 Nokia Corporation
|
|
|
|
*
|
|
|
|
* 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 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2010-09-20 09:22:32 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gstdiscoverer
|
|
|
|
* @short_description: Utility for discovering information on URIs.
|
|
|
|
*
|
|
|
|
* The #GstDiscoverer is a utility object which allows to get as much
|
|
|
|
* information as possible from one or many URIs.
|
|
|
|
*
|
|
|
|
* It provides two APIs, allowing usage in blocking or non-blocking mode.
|
|
|
|
*
|
2010-09-20 18:04:48 +00:00
|
|
|
* The blocking mode just requires calling gst_discoverer_discover_uri()
|
2010-09-20 09:22:32 +00:00
|
|
|
* with the URI one wishes to discover.
|
|
|
|
*
|
|
|
|
* The non-blocking mode requires a running #GMainLoop in the default
|
|
|
|
* #GMainContext, where one connects to the various signals, appends the
|
2010-09-20 18:04:48 +00:00
|
|
|
* URIs to be processed (through gst_discoverer_discover_uri_async()) and then
|
|
|
|
* asks for the discovery to begin (through gst_discoverer_start()).
|
2010-09-20 09:22:32 +00:00
|
|
|
*
|
|
|
|
* All the information is returned in a #GstDiscovererInfo structure.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-08-29 09:38:01 +00:00
|
|
|
#include <gst/video/video.h>
|
2012-09-09 20:11:20 +00:00
|
|
|
#include <gst/audio/audio.h>
|
2011-08-29 09:38:01 +00:00
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
#include "pbutils.h"
|
2010-09-28 10:17:41 +00:00
|
|
|
#include "pbutils-private.h"
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (discoverer_debug);
|
|
|
|
#define GST_CAT_DEFAULT discoverer_debug
|
|
|
|
|
|
|
|
static GQuark _CAPS_QUARK;
|
|
|
|
static GQuark _TAGS_QUARK;
|
2012-05-20 23:01:17 +00:00
|
|
|
static GQuark _TOC_QUARK;
|
2012-11-20 13:56:45 +00:00
|
|
|
static GQuark _STREAM_ID_QUARK;
|
2010-09-20 09:22:32 +00:00
|
|
|
static GQuark _MISSING_PLUGIN_QUARK;
|
|
|
|
static GQuark _STREAM_TOPOLOGY_QUARK;
|
|
|
|
static GQuark _TOPOLOGY_PAD_QUARK;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GstDiscoverer *dc;
|
|
|
|
GstPad *pad;
|
|
|
|
GstElement *queue;
|
|
|
|
GstElement *sink;
|
|
|
|
GstTagList *tags;
|
2012-05-20 23:01:17 +00:00
|
|
|
GstToc *toc;
|
2012-11-20 13:56:45 +00:00
|
|
|
gchar *stream_id;
|
2010-09-20 09:22:32 +00:00
|
|
|
} PrivateStream;
|
|
|
|
|
|
|
|
struct _GstDiscovererPrivate
|
|
|
|
{
|
|
|
|
gboolean async;
|
|
|
|
|
|
|
|
/* allowed time to discover each uri in nanoseconds */
|
|
|
|
GstClockTime timeout;
|
|
|
|
|
|
|
|
/* list of pending URI to process (current excluded) */
|
|
|
|
GList *pending_uris;
|
|
|
|
|
2012-09-10 00:10:33 +00:00
|
|
|
GMutex lock;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
/* TRUE if processing a URI */
|
|
|
|
gboolean processing;
|
|
|
|
|
|
|
|
/* TRUE if discoverer has been started */
|
|
|
|
gboolean running;
|
|
|
|
|
2012-05-10 20:08:21 +00:00
|
|
|
/* TRUE if ASYNC_DONE has been received (need to check for subtitle tags) */
|
|
|
|
gboolean async_done;
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
/* current items */
|
|
|
|
GstDiscovererInfo *current_info;
|
|
|
|
GError *current_error;
|
|
|
|
GstStructure *current_topology;
|
|
|
|
|
|
|
|
/* List of private streams */
|
|
|
|
GList *streams;
|
|
|
|
|
2012-05-10 20:08:21 +00:00
|
|
|
/* List of these sinks and their handler IDs (to remove the probe) */
|
2012-05-11 14:37:14 +00:00
|
|
|
guint pending_subtitle_pads;
|
2012-05-10 20:08:21 +00:00
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
/* Global elements */
|
|
|
|
GstBin *pipeline;
|
|
|
|
GstElement *uridecodebin;
|
|
|
|
GstBus *bus;
|
|
|
|
|
2011-07-15 10:32:25 +00:00
|
|
|
GType decodebin_type;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
/* Custom main context variables */
|
|
|
|
GMainContext *ctx;
|
|
|
|
guint sourceid;
|
|
|
|
guint timeoutid;
|
2010-12-13 14:20:23 +00:00
|
|
|
|
|
|
|
/* reusable queries */
|
|
|
|
GstQuery *seeking_query;
|
2011-02-07 08:27:39 +00:00
|
|
|
|
|
|
|
/* Handler ids for various callbacks */
|
|
|
|
gulong pad_added_id;
|
|
|
|
gulong pad_remove_id;
|
2012-08-06 11:23:51 +00:00
|
|
|
gulong source_chg_id;
|
2011-02-07 08:27:39 +00:00
|
|
|
gulong element_added_id;
|
|
|
|
gulong bus_cb_id;
|
2010-09-20 09:22:32 +00:00
|
|
|
};
|
|
|
|
|
2012-09-10 00:10:33 +00:00
|
|
|
#define DISCO_LOCK(dc) g_mutex_lock (&dc->priv->lock);
|
|
|
|
#define DISCO_UNLOCK(dc) g_mutex_unlock (&dc->priv->lock);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
_do_init (void)
|
|
|
|
{
|
|
|
|
GST_DEBUG_CATEGORY_INIT (discoverer_debug, "discoverer", 0, "Discoverer");
|
|
|
|
|
|
|
|
_CAPS_QUARK = g_quark_from_static_string ("caps");
|
|
|
|
_TAGS_QUARK = g_quark_from_static_string ("tags");
|
2012-11-20 13:56:45 +00:00
|
|
|
_TOC_QUARK = g_quark_from_static_string ("stream-id");
|
|
|
|
_STREAM_ID_QUARK = g_quark_from_static_string ("toc");
|
2010-09-20 09:22:32 +00:00
|
|
|
_MISSING_PLUGIN_QUARK = g_quark_from_static_string ("missing-plugin");
|
|
|
|
_STREAM_TOPOLOGY_QUARK = g_quark_from_static_string ("stream-topology");
|
|
|
|
_TOPOLOGY_PAD_QUARK = g_quark_from_static_string ("pad");
|
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_EXTENDED (GstDiscoverer, gst_discoverer, G_TYPE_OBJECT, 0,
|
|
|
|
_do_init ());
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
SIGNAL_FINISHED,
|
|
|
|
SIGNAL_STARTING,
|
|
|
|
SIGNAL_DISCOVERED,
|
2012-08-06 11:23:51 +00:00
|
|
|
SIGNAL_SOURCE_SETUP,
|
2010-09-20 09:22:32 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DEFAULT_PROP_TIMEOUT 15 * GST_SECOND
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_TIMEOUT
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint gst_discoverer_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
|
|
|
static void gst_discoverer_set_timeout (GstDiscoverer * dc,
|
|
|
|
GstClockTime timeout);
|
|
|
|
static gboolean async_timeout_cb (GstDiscoverer * dc);
|
|
|
|
|
|
|
|
static void discoverer_bus_cb (GstBus * bus, GstMessage * msg,
|
|
|
|
GstDiscoverer * dc);
|
|
|
|
static void uridecodebin_pad_added_cb (GstElement * uridecodebin, GstPad * pad,
|
|
|
|
GstDiscoverer * dc);
|
|
|
|
static void uridecodebin_pad_removed_cb (GstElement * uridecodebin,
|
|
|
|
GstPad * pad, GstDiscoverer * dc);
|
2012-08-06 11:23:51 +00:00
|
|
|
static void uridecodebin_source_changed_cb (GstElement * uridecodebin,
|
|
|
|
GParamSpec * pspec, GstDiscoverer * dc);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
static void gst_discoverer_dispose (GObject * dc);
|
2012-09-10 00:10:33 +00:00
|
|
|
static void gst_discoverer_finalize (GObject * dc);
|
2010-09-20 09:22:32 +00:00
|
|
|
static void gst_discoverer_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_discoverer_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_discoverer_class_init (GstDiscovererClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = (GObjectClass *) klass;
|
|
|
|
|
|
|
|
gobject_class->dispose = gst_discoverer_dispose;
|
2012-09-10 00:10:33 +00:00
|
|
|
gobject_class->finalize = gst_discoverer_finalize;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = gst_discoverer_set_property;
|
|
|
|
gobject_class->get_property = gst_discoverer_get_property;
|
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (GstDiscovererPrivate));
|
|
|
|
|
|
|
|
/* properties */
|
|
|
|
/**
|
2012-07-13 10:11:06 +00:00
|
|
|
* GstDiscoverer:timeout:
|
2010-09-20 09:22:32 +00:00
|
|
|
*
|
|
|
|
* The duration (in nanoseconds) after which the discovery of an individual
|
|
|
|
* URI will timeout.
|
|
|
|
*
|
2010-09-20 18:04:48 +00:00
|
|
|
* If the discovery of a URI times out, the %GST_DISCOVERER_TIMEOUT will be
|
2010-09-20 09:22:32 +00:00
|
|
|
* set on the result flags.
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class, PROP_TIMEOUT,
|
|
|
|
g_param_spec_uint64 ("timeout", "timeout", "Timeout",
|
|
|
|
GST_SECOND, 3600 * GST_SECOND, DEFAULT_PROP_TIMEOUT,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
|
|
|
/* signals */
|
|
|
|
/**
|
|
|
|
* GstDiscoverer::finished:
|
|
|
|
* @discoverer: the #GstDiscoverer
|
|
|
|
*
|
2013-08-13 19:39:15 +00:00
|
|
|
* Will be emitted in async mode when all pending URIs have been processed.
|
2010-09-20 09:22:32 +00:00
|
|
|
*/
|
|
|
|
gst_discoverer_signals[SIGNAL_FINISHED] =
|
|
|
|
g_signal_new ("finished", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstDiscovererClass, finished),
|
|
|
|
NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, G_TYPE_NONE);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstDiscoverer::starting:
|
|
|
|
* @discoverer: the #GstDiscoverer
|
|
|
|
*
|
|
|
|
* Will be emitted when the discover starts analyzing the pending URIs
|
|
|
|
*/
|
|
|
|
gst_discoverer_signals[SIGNAL_STARTING] =
|
|
|
|
g_signal_new ("starting", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstDiscovererClass, starting),
|
|
|
|
NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, G_TYPE_NONE);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstDiscoverer::discovered:
|
|
|
|
* @discoverer: the #GstDiscoverer
|
|
|
|
* @info: the results #GstDiscovererInfo
|
|
|
|
* @error: (type GLib.Error): #GError, which will be non-NULL if an error
|
2012-08-10 16:08:31 +00:00
|
|
|
* occurred during discovery. You must not
|
|
|
|
* free this #GError, it will be freed by
|
|
|
|
* the discoverer.
|
2010-09-20 09:22:32 +00:00
|
|
|
*
|
2013-08-13 19:39:15 +00:00
|
|
|
* Will be emitted in async mode when all information on a URI could be
|
|
|
|
* discovered, or an error occurred.
|
2012-08-10 16:08:31 +00:00
|
|
|
*
|
|
|
|
* When an error occurs, @info might still contain some partial information,
|
|
|
|
* depending on the circumstances of the error.
|
2010-09-20 09:22:32 +00:00
|
|
|
*/
|
|
|
|
gst_discoverer_signals[SIGNAL_DISCOVERED] =
|
|
|
|
g_signal_new ("discovered", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstDiscovererClass, discovered),
|
2012-08-04 22:29:27 +00:00
|
|
|
NULL, NULL, g_cclosure_marshal_generic,
|
2012-02-01 19:26:29 +00:00
|
|
|
G_TYPE_NONE, 2, GST_TYPE_DISCOVERER_INFO,
|
|
|
|
G_TYPE_ERROR | G_SIGNAL_TYPE_STATIC_SCOPE);
|
2012-08-06 11:23:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstDiscoverer::source-setup:
|
|
|
|
* @discoverer: the #GstDiscoverer
|
|
|
|
* @source: source element
|
|
|
|
*
|
|
|
|
* This signal is emitted after the source element has been created for, so
|
|
|
|
* the URI being discovered, so it can be configured by setting additional
|
|
|
|
* properties (e.g. set a proxy server for an http source, or set the device
|
|
|
|
* and read speed for an audio cd source).
|
|
|
|
*
|
|
|
|
* This signal is usually emitted from the context of a GStreamer streaming
|
|
|
|
* thread.
|
|
|
|
*/
|
|
|
|
gst_discoverer_signals[SIGNAL_SOURCE_SETUP] =
|
|
|
|
g_signal_new ("source-setup", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstDiscovererClass, source_setup),
|
2012-08-10 16:08:31 +00:00
|
|
|
NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
uridecodebin_element_added_cb (GstElement * uridecodebin,
|
|
|
|
GstElement * child, GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GST_DEBUG ("New element added to uridecodebin : %s",
|
|
|
|
GST_ELEMENT_NAME (child));
|
|
|
|
|
2011-07-15 10:32:25 +00:00
|
|
|
if (G_OBJECT_TYPE (child) == dc->priv->decodebin_type) {
|
2010-09-20 09:22:32 +00:00
|
|
|
g_object_set (child, "post-stream-topology", TRUE, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_discoverer_init (GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GstElement *tmp;
|
2010-12-13 14:20:23 +00:00
|
|
|
GstFormat format = GST_FORMAT_TIME;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
dc->priv = G_TYPE_INSTANCE_GET_PRIVATE (dc, GST_TYPE_DISCOVERER,
|
|
|
|
GstDiscovererPrivate);
|
|
|
|
|
|
|
|
dc->priv->timeout = DEFAULT_PROP_TIMEOUT;
|
|
|
|
dc->priv->async = FALSE;
|
2012-05-10 20:08:21 +00:00
|
|
|
dc->priv->async_done = FALSE;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
2012-09-10 00:10:33 +00:00
|
|
|
g_mutex_init (&dc->priv->lock);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
2012-05-11 14:37:14 +00:00
|
|
|
dc->priv->pending_subtitle_pads = 0;
|
2012-05-10 20:08:21 +00:00
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
GST_LOG ("Creating pipeline");
|
|
|
|
dc->priv->pipeline = (GstBin *) gst_pipeline_new ("Discoverer");
|
|
|
|
GST_LOG_OBJECT (dc, "Creating uridecodebin");
|
|
|
|
dc->priv->uridecodebin =
|
|
|
|
gst_element_factory_make ("uridecodebin", "discoverer-uri");
|
|
|
|
if (G_UNLIKELY (dc->priv->uridecodebin == NULL)) {
|
|
|
|
GST_ERROR ("Can't create uridecodebin");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
GST_LOG_OBJECT (dc, "Adding uridecodebin to pipeline");
|
|
|
|
gst_bin_add (dc->priv->pipeline, dc->priv->uridecodebin);
|
|
|
|
|
2011-02-07 08:27:39 +00:00
|
|
|
dc->priv->pad_added_id =
|
|
|
|
g_signal_connect_object (dc->priv->uridecodebin, "pad-added",
|
|
|
|
G_CALLBACK (uridecodebin_pad_added_cb), dc, 0);
|
|
|
|
dc->priv->pad_remove_id =
|
|
|
|
g_signal_connect_object (dc->priv->uridecodebin, "pad-removed",
|
|
|
|
G_CALLBACK (uridecodebin_pad_removed_cb), dc, 0);
|
2012-08-06 11:23:51 +00:00
|
|
|
dc->priv->source_chg_id =
|
|
|
|
g_signal_connect_object (dc->priv->uridecodebin, "notify::source",
|
|
|
|
G_CALLBACK (uridecodebin_source_changed_cb), dc, 0);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
GST_LOG_OBJECT (dc, "Getting pipeline bus");
|
|
|
|
dc->priv->bus = gst_pipeline_get_bus ((GstPipeline *) dc->priv->pipeline);
|
|
|
|
|
2011-02-07 08:27:39 +00:00
|
|
|
dc->priv->bus_cb_id =
|
|
|
|
g_signal_connect_object (dc->priv->bus, "message",
|
|
|
|
G_CALLBACK (discoverer_bus_cb), dc, 0);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dc, "Done initializing Discoverer");
|
|
|
|
|
2011-07-15 10:32:25 +00:00
|
|
|
/* This is ugly. We get the GType of decodebin so we can quickly detect
|
|
|
|
* when a decodebin is added to uridecodebin so we can set the
|
2010-09-20 09:22:32 +00:00
|
|
|
* post-stream-topology setting to TRUE */
|
2011-02-07 08:27:39 +00:00
|
|
|
dc->priv->element_added_id =
|
|
|
|
g_signal_connect_object (dc->priv->uridecodebin, "element-added",
|
|
|
|
G_CALLBACK (uridecodebin_element_added_cb), dc, 0);
|
2011-07-15 10:32:25 +00:00
|
|
|
tmp = gst_element_factory_make ("decodebin", NULL);
|
|
|
|
dc->priv->decodebin_type = G_OBJECT_TYPE (tmp);
|
2010-09-20 09:22:32 +00:00
|
|
|
gst_object_unref (tmp);
|
2010-12-13 14:20:23 +00:00
|
|
|
|
|
|
|
/* create queries */
|
|
|
|
dc->priv->seeking_query = gst_query_new_seeking (format);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
discoverer_reset (GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (dc, "Resetting");
|
|
|
|
|
|
|
|
if (dc->priv->pending_uris) {
|
|
|
|
g_list_foreach (dc->priv->pending_uris, (GFunc) g_free, NULL);
|
|
|
|
g_list_free (dc->priv->pending_uris);
|
|
|
|
dc->priv->pending_uris = NULL;
|
|
|
|
}
|
|
|
|
|
2011-01-17 18:38:32 +00:00
|
|
|
if (dc->priv->pipeline)
|
|
|
|
gst_element_set_state ((GstElement *) dc->priv->pipeline, GST_STATE_NULL);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
2011-02-07 08:27:39 +00:00
|
|
|
#define DISCONNECT_SIGNAL(o,i) G_STMT_START{ \
|
|
|
|
if ((i) && g_signal_handler_is_connected ((o), (i))) \
|
|
|
|
g_signal_handler_disconnect ((o), (i)); \
|
|
|
|
(i) = 0; \
|
|
|
|
}G_STMT_END
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
static void
|
|
|
|
gst_discoverer_dispose (GObject * obj)
|
|
|
|
{
|
|
|
|
GstDiscoverer *dc = (GstDiscoverer *) obj;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dc, "Disposing");
|
|
|
|
|
|
|
|
discoverer_reset (dc);
|
|
|
|
|
|
|
|
if (G_LIKELY (dc->priv->pipeline)) {
|
2011-02-07 08:27:39 +00:00
|
|
|
/* Workaround for bug #118536 */
|
|
|
|
DISCONNECT_SIGNAL (dc->priv->uridecodebin, dc->priv->pad_added_id);
|
|
|
|
DISCONNECT_SIGNAL (dc->priv->uridecodebin, dc->priv->pad_remove_id);
|
2012-08-06 11:23:51 +00:00
|
|
|
DISCONNECT_SIGNAL (dc->priv->uridecodebin, dc->priv->source_chg_id);
|
2011-02-07 08:27:39 +00:00
|
|
|
DISCONNECT_SIGNAL (dc->priv->uridecodebin, dc->priv->element_added_id);
|
|
|
|
DISCONNECT_SIGNAL (dc->priv->bus, dc->priv->bus_cb_id);
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
/* pipeline was set to NULL in _reset */
|
|
|
|
gst_object_unref (dc->priv->pipeline);
|
|
|
|
gst_object_unref (dc->priv->bus);
|
2011-02-07 08:27:39 +00:00
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
dc->priv->pipeline = NULL;
|
|
|
|
dc->priv->uridecodebin = NULL;
|
|
|
|
dc->priv->bus = NULL;
|
|
|
|
}
|
|
|
|
|
2011-01-17 18:38:32 +00:00
|
|
|
gst_discoverer_stop (dc);
|
|
|
|
|
2010-12-13 14:20:23 +00:00
|
|
|
if (dc->priv->seeking_query) {
|
|
|
|
gst_query_unref (dc->priv->seeking_query);
|
|
|
|
dc->priv->seeking_query = NULL;
|
|
|
|
}
|
2011-02-08 07:12:32 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (gst_discoverer_parent_class)->dispose (obj);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
2012-09-10 00:10:33 +00:00
|
|
|
static void
|
|
|
|
gst_discoverer_finalize (GObject * obj)
|
|
|
|
{
|
|
|
|
GstDiscoverer *dc = (GstDiscoverer *) obj;
|
|
|
|
|
|
|
|
g_mutex_clear (&dc->priv->lock);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (gst_discoverer_parent_class)->finalize (obj);
|
|
|
|
}
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
static void
|
|
|
|
gst_discoverer_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstDiscoverer *dc = (GstDiscoverer *) object;
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_TIMEOUT:
|
|
|
|
gst_discoverer_set_timeout (dc, g_value_get_uint64 (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_discoverer_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstDiscoverer *dc = (GstDiscoverer *) object;
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_TIMEOUT:
|
|
|
|
DISCO_LOCK (dc);
|
|
|
|
g_value_set_uint64 (value, dc->priv->timeout);
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_discoverer_set_timeout (GstDiscoverer * dc, GstClockTime timeout)
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (dc, "timeout : %" GST_TIME_FORMAT, GST_TIME_ARGS (timeout));
|
|
|
|
|
|
|
|
/* FIXME : update current pending timeout if we're running */
|
|
|
|
DISCO_LOCK (dc);
|
|
|
|
dc->priv->timeout = timeout;
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
}
|
|
|
|
|
2011-11-01 00:34:28 +00:00
|
|
|
static GstPadProbeReturn
|
2011-11-08 10:07:18 +00:00
|
|
|
_event_probe (GstPad * pad, GstPadProbeInfo * info, PrivateStream * ps)
|
2010-09-20 09:22:32 +00:00
|
|
|
{
|
2011-11-08 10:07:18 +00:00
|
|
|
GstEvent *event = GST_PAD_PROBE_INFO_EVENT (info);
|
|
|
|
|
2012-11-20 13:37:51 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_TAG:{
|
|
|
|
GstTagList *tl = NULL, *tmp;
|
|
|
|
|
|
|
|
gst_event_parse_tag (event, &tl);
|
|
|
|
GST_DEBUG_OBJECT (pad, "tags %" GST_PTR_FORMAT, tl);
|
|
|
|
DISCO_LOCK (ps->dc);
|
|
|
|
/* If preroll is complete, drop these tags - the collected information is
|
|
|
|
* possibly already being processed and adding more tags would be racy */
|
|
|
|
if (G_LIKELY (ps->dc->priv->processing)) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "private stream %p old tags %" GST_PTR_FORMAT,
|
|
|
|
ps, ps->tags);
|
|
|
|
tmp = gst_tag_list_merge (ps->tags, tl, GST_TAG_MERGE_APPEND);
|
|
|
|
if (ps->tags)
|
|
|
|
gst_tag_list_unref (ps->tags);
|
|
|
|
ps->tags = tmp;
|
|
|
|
GST_DEBUG_OBJECT (pad, "private stream %p new tags %" GST_PTR_FORMAT,
|
|
|
|
ps, tmp);
|
|
|
|
} else
|
|
|
|
GST_DEBUG_OBJECT (pad, "Dropping tags since preroll is done");
|
|
|
|
DISCO_UNLOCK (ps->dc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_EVENT_TOC:{
|
|
|
|
GstToc *tmp;
|
|
|
|
|
|
|
|
gst_event_parse_toc (event, &tmp, NULL);
|
|
|
|
GST_DEBUG_OBJECT (pad, "toc %" GST_PTR_FORMAT, tmp);
|
|
|
|
DISCO_LOCK (ps->dc);
|
|
|
|
ps->toc = tmp;
|
|
|
|
if (G_LIKELY (ps->dc->priv->processing)) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "private stream %p toc %" GST_PTR_FORMAT, ps,
|
|
|
|
tmp);
|
|
|
|
} else
|
|
|
|
GST_DEBUG_OBJECT (pad, "Dropping toc since preroll is done");
|
|
|
|
DISCO_UNLOCK (ps->dc);
|
|
|
|
break;
|
|
|
|
}
|
2012-11-20 13:56:45 +00:00
|
|
|
case GST_EVENT_STREAM_START:{
|
|
|
|
const gchar *stream_id;
|
|
|
|
|
|
|
|
gst_event_parse_stream_start (event, &stream_id);
|
|
|
|
|
|
|
|
g_free (ps->stream_id);
|
|
|
|
ps->stream_id = stream_id ? g_strdup (stream_id) : NULL;
|
|
|
|
break;
|
|
|
|
}
|
2012-11-20 13:37:51 +00:00
|
|
|
default:
|
|
|
|
break;
|
2012-05-20 23:01:17 +00:00
|
|
|
}
|
|
|
|
|
2011-11-01 00:34:28 +00:00
|
|
|
return GST_PAD_PROBE_OK;
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
2012-09-02 01:41:34 +00:00
|
|
|
static GstStaticCaps subtitle_caps = GST_STATIC_CAPS ("text/x-raw; "
|
|
|
|
"subpicture/x-pgs; subpicture/x-dvb; subpicture/x-dvd; "
|
2012-01-07 19:39:42 +00:00
|
|
|
"application/x-subtitle-unknown; application/x-ssa; application/x-ass; "
|
2012-09-02 01:41:34 +00:00
|
|
|
"subtitle/x-kate; application/x-kate");
|
2012-01-07 19:39:42 +00:00
|
|
|
|
2011-08-24 14:04:50 +00:00
|
|
|
static gboolean
|
|
|
|
is_subtitle_caps (const GstCaps * caps)
|
2010-09-20 09:22:32 +00:00
|
|
|
{
|
2012-01-07 19:39:42 +00:00
|
|
|
GstCaps *subs_caps;
|
|
|
|
gboolean ret;
|
2010-11-03 09:07:07 +00:00
|
|
|
|
2012-01-07 19:39:42 +00:00
|
|
|
subs_caps = gst_static_caps_get (&subtitle_caps);
|
|
|
|
ret = gst_caps_can_intersect (caps, subs_caps);
|
|
|
|
gst_caps_unref (subs_caps);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
2012-01-07 19:39:42 +00:00
|
|
|
return ret;
|
2011-08-24 14:04:50 +00:00
|
|
|
}
|
|
|
|
|
2012-05-11 14:37:14 +00:00
|
|
|
static GstPadProbeReturn
|
|
|
|
got_subtitle_data (GstPad * pad, GstPadProbeInfo * info, GstDiscoverer * dc)
|
2012-05-10 20:08:21 +00:00
|
|
|
{
|
|
|
|
|
2012-05-11 14:37:14 +00:00
|
|
|
if (!(GST_IS_BUFFER (info->data) || (GST_IS_EVENT (info->data)
|
|
|
|
&& GST_EVENT_TYPE ((GstEvent *) info->data) == GST_EVENT_GAP)))
|
|
|
|
return GST_PAD_PROBE_OK;
|
2012-05-10 20:08:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
DISCO_LOCK (dc);
|
|
|
|
|
2012-05-11 14:37:14 +00:00
|
|
|
dc->priv->pending_subtitle_pads--;
|
|
|
|
|
|
|
|
if (dc->priv->pending_subtitle_pads == 0) {
|
2012-05-10 20:08:21 +00:00
|
|
|
GstMessage *msg = gst_message_new_application (NULL,
|
2012-05-11 14:37:14 +00:00
|
|
|
gst_structure_new_empty ("DiscovererDone"));
|
2012-05-10 20:08:21 +00:00
|
|
|
gst_element_post_message ((GstElement *) dc->priv->pipeline, msg);
|
|
|
|
}
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
|
2012-05-11 14:37:14 +00:00
|
|
|
return GST_PAD_PROBE_REMOVE;
|
|
|
|
|
2012-05-10 20:08:21 +00:00
|
|
|
}
|
|
|
|
|
2012-08-06 11:23:51 +00:00
|
|
|
static void
|
|
|
|
uridecodebin_source_changed_cb (GstElement * uridecodebin,
|
|
|
|
GParamSpec * pspec, GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GstElement *src;
|
|
|
|
/* get a handle to the source */
|
|
|
|
g_object_get (uridecodebin, pspec->name, &src, NULL);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dc, "got a new source %p", src);
|
|
|
|
|
|
|
|
g_signal_emit (dc, gst_discoverer_signals[SIGNAL_SOURCE_SETUP], 0, src);
|
|
|
|
gst_object_unref (src);
|
|
|
|
}
|
|
|
|
|
2011-08-24 14:04:50 +00:00
|
|
|
static void
|
|
|
|
uridecodebin_pad_added_cb (GstElement * uridecodebin, GstPad * pad,
|
|
|
|
GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
PrivateStream *ps;
|
|
|
|
GstPad *sinkpad = NULL;
|
|
|
|
GstCaps *caps;
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
GST_DEBUG_OBJECT (dc, "pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
|
|
|
|
|
|
|
ps = g_slice_new0 (PrivateStream);
|
|
|
|
|
|
|
|
ps->dc = dc;
|
|
|
|
ps->pad = pad;
|
|
|
|
ps->queue = gst_element_factory_make ("queue", NULL);
|
|
|
|
ps->sink = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (ps->queue == NULL || ps->sink == NULL))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
g_object_set (ps->sink, "silent", TRUE, NULL);
|
2010-09-22 10:10:24 +00:00
|
|
|
g_object_set (ps->queue, "max-size-buffers", 1, "silent", TRUE, NULL);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
2011-11-15 15:48:15 +00:00
|
|
|
caps = gst_pad_query_caps (pad, NULL);
|
2010-11-03 09:07:07 +00:00
|
|
|
|
2012-05-10 20:08:21 +00:00
|
|
|
sinkpad = gst_element_get_static_pad (ps->queue, "sink");
|
|
|
|
if (sinkpad == NULL)
|
|
|
|
goto error;
|
|
|
|
|
2011-08-24 14:04:50 +00:00
|
|
|
if (is_subtitle_caps (caps)) {
|
|
|
|
/* Subtitle streams are sparse and may not provide any information - don't
|
2010-11-03 09:07:07 +00:00
|
|
|
* wait for data to preroll */
|
2012-05-11 14:37:14 +00:00
|
|
|
gst_pad_add_probe (sinkpad, GST_PAD_PROBE_TYPE_DATA_DOWNSTREAM,
|
|
|
|
(GstPadProbeCallback) got_subtitle_data, dc, NULL);
|
2010-11-03 09:07:07 +00:00
|
|
|
g_object_set (ps->sink, "async", FALSE, NULL);
|
2012-05-10 20:08:21 +00:00
|
|
|
DISCO_LOCK (dc);
|
2012-05-11 14:37:14 +00:00
|
|
|
dc->priv->pending_subtitle_pads++;
|
2012-05-10 20:08:21 +00:00
|
|
|
DISCO_UNLOCK (dc);
|
2010-11-03 09:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
gst_bin_add_many (dc->priv->pipeline, ps->queue, ps->sink, NULL);
|
|
|
|
|
|
|
|
if (!gst_element_link_pads_full (ps->queue, "src", ps->sink, "sink",
|
|
|
|
GST_PAD_LINK_CHECK_NOTHING))
|
|
|
|
goto error;
|
|
|
|
if (!gst_element_sync_state_with_parent (ps->sink))
|
|
|
|
goto error;
|
|
|
|
if (!gst_element_sync_state_with_parent (ps->queue))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (gst_pad_link_full (pad, sinkpad,
|
|
|
|
GST_PAD_LINK_CHECK_NOTHING) != GST_PAD_LINK_OK)
|
|
|
|
goto error;
|
|
|
|
gst_object_unref (sinkpad);
|
|
|
|
|
|
|
|
/* Add an event probe */
|
2011-11-07 16:10:48 +00:00
|
|
|
gst_pad_add_probe (pad, GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM,
|
2011-06-01 17:34:54 +00:00
|
|
|
(GstPadProbeCallback) _event_probe, ps, NULL);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
DISCO_LOCK (dc);
|
|
|
|
dc->priv->streams = g_list_append (dc->priv->streams, ps);
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dc, "Done handling pad");
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
GST_ERROR_OBJECT (dc, "Error while handling pad");
|
|
|
|
if (sinkpad)
|
|
|
|
gst_object_unref (sinkpad);
|
|
|
|
if (ps->queue)
|
|
|
|
gst_object_unref (ps->queue);
|
|
|
|
if (ps->sink)
|
|
|
|
gst_object_unref (ps->sink);
|
|
|
|
g_slice_free (PrivateStream, ps);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
uridecodebin_pad_removed_cb (GstElement * uridecodebin, GstPad * pad,
|
|
|
|
GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
PrivateStream *ps;
|
|
|
|
GstPad *sinkpad;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dc, "pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
|
|
|
|
|
|
|
/* Find the PrivateStream */
|
|
|
|
DISCO_LOCK (dc);
|
|
|
|
for (tmp = dc->priv->streams; tmp; tmp = tmp->next) {
|
|
|
|
ps = (PrivateStream *) tmp->data;
|
|
|
|
if (ps->pad == pad)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tmp == NULL) {
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
GST_DEBUG ("The removed pad wasn't controlled by us !");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dc->priv->streams = g_list_delete_link (dc->priv->streams, tmp);
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
|
|
|
|
gst_element_set_state (ps->sink, GST_STATE_NULL);
|
|
|
|
gst_element_set_state (ps->queue, GST_STATE_NULL);
|
|
|
|
gst_element_unlink (ps->queue, ps->sink);
|
|
|
|
|
|
|
|
sinkpad = gst_element_get_static_pad (ps->queue, "sink");
|
|
|
|
gst_pad_unlink (pad, sinkpad);
|
|
|
|
gst_object_unref (sinkpad);
|
|
|
|
|
|
|
|
/* references removed here */
|
|
|
|
gst_bin_remove_many (dc->priv->pipeline, ps->sink, ps->queue, NULL);
|
|
|
|
|
|
|
|
if (ps->tags) {
|
2012-09-14 15:53:21 +00:00
|
|
|
gst_tag_list_unref (ps->tags);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
2012-05-20 23:01:17 +00:00
|
|
|
if (ps->toc) {
|
2012-06-24 21:47:05 +00:00
|
|
|
gst_toc_unref (ps->toc);
|
2012-05-20 23:01:17 +00:00
|
|
|
}
|
2012-11-20 13:56:45 +00:00
|
|
|
g_free (ps->stream_id);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
g_slice_free (PrivateStream, ps);
|
|
|
|
|
|
|
|
GST_DEBUG ("Done handling pad");
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstStructure *
|
|
|
|
collect_stream_information (GstDiscoverer * dc, PrivateStream * ps, guint idx)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
GstStructure *st;
|
|
|
|
gchar *stname;
|
|
|
|
|
|
|
|
stname = g_strdup_printf ("stream-%02d", idx);
|
2011-10-29 07:03:07 +00:00
|
|
|
st = gst_structure_new_empty (stname);
|
2010-09-20 09:22:32 +00:00
|
|
|
g_free (stname);
|
|
|
|
|
|
|
|
/* Get caps */
|
2011-08-15 10:18:15 +00:00
|
|
|
caps = gst_pad_get_current_caps (ps->pad);
|
2010-10-24 14:09:26 +00:00
|
|
|
if (!caps) {
|
|
|
|
GST_WARNING ("Couldn't get negotiated caps from %s:%s",
|
|
|
|
GST_DEBUG_PAD_NAME (ps->pad));
|
2011-11-15 15:48:15 +00:00
|
|
|
caps = gst_pad_query_caps (ps->pad, NULL);
|
2010-10-24 14:09:26 +00:00
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
if (caps) {
|
|
|
|
GST_DEBUG ("Got caps %" GST_PTR_FORMAT, caps);
|
|
|
|
gst_structure_id_set (st, _CAPS_QUARK, GST_TYPE_CAPS, caps, NULL);
|
|
|
|
|
|
|
|
gst_caps_unref (caps);
|
2010-10-24 14:09:26 +00:00
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
if (ps->tags)
|
2012-01-10 18:27:19 +00:00
|
|
|
gst_structure_id_set (st, _TAGS_QUARK, GST_TYPE_TAG_LIST, ps->tags, NULL);
|
2012-05-20 23:01:17 +00:00
|
|
|
if (ps->toc)
|
|
|
|
gst_structure_id_set (st, _TOC_QUARK, GST_TYPE_TOC, ps->toc, NULL);
|
2012-11-20 13:56:45 +00:00
|
|
|
if (ps->stream_id)
|
|
|
|
gst_structure_id_set (st, _STREAM_ID_QUARK, G_TYPE_STRING, ps->stream_id,
|
|
|
|
NULL);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
2012-01-10 18:07:19 +00:00
|
|
|
/* takes ownership of new_tags, may replace *taglist with a new one */
|
|
|
|
static void
|
|
|
|
gst_discoverer_merge_and_replace_tags (GstTagList ** taglist,
|
|
|
|
GstTagList * new_tags)
|
|
|
|
{
|
|
|
|
if (new_tags == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (*taglist == NULL) {
|
|
|
|
*taglist = new_tags;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_tag_list_insert (*taglist, new_tags, GST_TAG_MERGE_REPLACE);
|
2012-09-14 15:53:21 +00:00
|
|
|
gst_tag_list_unref (new_tags);
|
2012-01-10 18:07:19 +00:00
|
|
|
}
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
/* Parses a set of caps and tags in st and populates a GstDiscovererStreamInfo
|
|
|
|
* structure (parent, if !NULL, otherwise it allocates one)
|
|
|
|
*/
|
|
|
|
static GstDiscovererStreamInfo *
|
|
|
|
collect_information (GstDiscoverer * dc, const GstStructure * st,
|
|
|
|
GstDiscovererStreamInfo * parent)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
2012-01-10 18:27:19 +00:00
|
|
|
GstStructure *caps_st;
|
|
|
|
GstTagList *tags_st;
|
2012-05-20 23:01:17 +00:00
|
|
|
GstToc *toc_st;
|
2010-09-20 09:22:32 +00:00
|
|
|
const gchar *name;
|
2012-11-20 13:56:45 +00:00
|
|
|
gchar *stream_id;
|
2011-06-17 07:21:27 +00:00
|
|
|
int tmp;
|
2010-09-20 09:22:32 +00:00
|
|
|
guint utmp;
|
|
|
|
|
|
|
|
if (!st || !gst_structure_id_has_field (st, _CAPS_QUARK)) {
|
|
|
|
GST_WARNING ("Couldn't find caps !");
|
|
|
|
if (parent)
|
2012-01-11 12:16:28 +00:00
|
|
|
return gst_discoverer_stream_info_ref (parent);
|
2010-09-20 09:22:32 +00:00
|
|
|
else
|
|
|
|
return (GstDiscovererStreamInfo *)
|
2011-02-23 13:12:22 +00:00
|
|
|
g_object_new (GST_TYPE_DISCOVERER_STREAM_INFO, NULL);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gst_structure_id_get (st, _CAPS_QUARK, GST_TYPE_CAPS, &caps, NULL);
|
|
|
|
caps_st = gst_caps_get_structure (caps, 0);
|
|
|
|
name = gst_structure_get_name (caps_st);
|
|
|
|
|
|
|
|
if (g_str_has_prefix (name, "audio/")) {
|
|
|
|
GstDiscovererAudioInfo *info;
|
2012-09-09 20:11:20 +00:00
|
|
|
const gchar *format_str;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
if (parent)
|
2012-01-11 12:16:28 +00:00
|
|
|
info = (GstDiscovererAudioInfo *) gst_discoverer_stream_info_ref (parent);
|
2010-09-20 09:22:32 +00:00
|
|
|
else {
|
|
|
|
info = (GstDiscovererAudioInfo *)
|
2011-02-23 13:12:22 +00:00
|
|
|
g_object_new (GST_TYPE_DISCOVERER_AUDIO_INFO, NULL);
|
2012-01-11 12:16:28 +00:00
|
|
|
info->parent.caps = gst_caps_ref (caps);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (gst_structure_get_int (caps_st, "rate", &tmp))
|
|
|
|
info->sample_rate = (guint) tmp;
|
|
|
|
|
|
|
|
if (gst_structure_get_int (caps_st, "channels", &tmp))
|
|
|
|
info->channels = (guint) tmp;
|
|
|
|
|
2012-09-09 20:11:20 +00:00
|
|
|
/* FIXME: we only want to extract depth if raw audio is what's in the
|
|
|
|
* container (i.e. not if there is a decoder involved) */
|
|
|
|
format_str = gst_structure_get_string (caps_st, "format");
|
|
|
|
if (format_str != NULL) {
|
|
|
|
const GstAudioFormatInfo *finfo;
|
|
|
|
GstAudioFormat format;
|
|
|
|
|
|
|
|
format = gst_audio_format_from_string (format_str);
|
|
|
|
finfo = gst_audio_format_get_info (format);
|
|
|
|
info->depth = GST_AUDIO_FORMAT_INFO_DEPTH (finfo);
|
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
if (gst_structure_id_has_field (st, _TAGS_QUARK)) {
|
2012-01-10 18:27:19 +00:00
|
|
|
gst_structure_id_get (st, _TAGS_QUARK, GST_TYPE_TAG_LIST, &tags_st, NULL);
|
2012-01-12 23:25:22 +00:00
|
|
|
if (gst_tag_list_get_uint (tags_st, GST_TAG_BITRATE, &utmp) ||
|
|
|
|
gst_tag_list_get_uint (tags_st, GST_TAG_NOMINAL_BITRATE, &utmp))
|
2010-09-20 09:22:32 +00:00
|
|
|
info->bitrate = utmp;
|
|
|
|
|
2012-01-12 23:25:22 +00:00
|
|
|
if (gst_tag_list_get_uint (tags_st, GST_TAG_MAXIMUM_BITRATE, &utmp))
|
2010-09-20 09:22:32 +00:00
|
|
|
info->max_bitrate = utmp;
|
|
|
|
|
|
|
|
/* FIXME: Is it worth it to remove the tags we've parsed? */
|
2012-01-10 18:27:19 +00:00
|
|
|
gst_discoverer_merge_and_replace_tags (&info->parent.tags, tags_st);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
2012-05-20 23:01:17 +00:00
|
|
|
if (gst_structure_id_has_field (st, _TOC_QUARK)) {
|
|
|
|
gst_structure_id_get (st, _TOC_QUARK, GST_TYPE_TOC, &toc_st, NULL);
|
|
|
|
info->parent.toc = toc_st;
|
|
|
|
}
|
|
|
|
|
2012-11-20 13:56:45 +00:00
|
|
|
if (gst_structure_id_has_field (st, _STREAM_ID_QUARK)) {
|
|
|
|
gst_structure_id_get (st, _STREAM_ID_QUARK, G_TYPE_STRING, &stream_id,
|
|
|
|
NULL);
|
|
|
|
info->parent.stream_id = stream_id;
|
|
|
|
}
|
|
|
|
|
2011-08-24 15:29:08 +00:00
|
|
|
if (!info->language && ((GstDiscovererStreamInfo *) info)->tags) {
|
|
|
|
gchar *language;
|
|
|
|
if (gst_tag_list_get_string (((GstDiscovererStreamInfo *) info)->tags,
|
|
|
|
GST_TAG_LANGUAGE_CODE, &language)) {
|
|
|
|
info->language = language;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-11 12:16:28 +00:00
|
|
|
gst_caps_unref (caps);
|
2010-09-20 09:22:32 +00:00
|
|
|
return (GstDiscovererStreamInfo *) info;
|
|
|
|
|
|
|
|
} else if (g_str_has_prefix (name, "video/") ||
|
|
|
|
g_str_has_prefix (name, "image/")) {
|
|
|
|
GstDiscovererVideoInfo *info;
|
2011-06-17 07:21:27 +00:00
|
|
|
GstVideoInfo vinfo;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
if (parent)
|
2012-01-11 12:16:28 +00:00
|
|
|
info = (GstDiscovererVideoInfo *) gst_discoverer_stream_info_ref (parent);
|
2010-09-20 09:22:32 +00:00
|
|
|
else {
|
|
|
|
info = (GstDiscovererVideoInfo *)
|
2011-02-23 13:12:22 +00:00
|
|
|
g_object_new (GST_TYPE_DISCOVERER_VIDEO_INFO, NULL);
|
2012-01-11 12:16:28 +00:00
|
|
|
info->parent.caps = gst_caps_ref (caps);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
2012-08-13 09:27:47 +00:00
|
|
|
if (gst_video_info_from_caps (&vinfo, caps)) {
|
2011-06-17 07:21:27 +00:00
|
|
|
info->width = (guint) vinfo.width;
|
|
|
|
info->height = (guint) vinfo.height;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
2011-06-17 07:21:27 +00:00
|
|
|
info->depth = (guint) 0;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
2011-06-17 07:21:27 +00:00
|
|
|
info->par_num = vinfo.par_n;
|
|
|
|
info->par_denom = vinfo.par_d;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
2011-06-17 07:21:27 +00:00
|
|
|
info->framerate_num = vinfo.fps_n;
|
|
|
|
info->framerate_denom = vinfo.fps_d;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
2012-04-19 10:13:03 +00:00
|
|
|
info->interlaced =
|
|
|
|
vinfo.interlace_mode != GST_VIDEO_INTERLACE_MODE_PROGRESSIVE;
|
2011-06-17 07:21:27 +00:00
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
if (gst_structure_id_has_field (st, _TAGS_QUARK)) {
|
2012-01-10 18:27:19 +00:00
|
|
|
gst_structure_id_get (st, _TAGS_QUARK, GST_TYPE_TAG_LIST, &tags_st, NULL);
|
2012-01-12 23:25:22 +00:00
|
|
|
if (gst_tag_list_get_uint (tags_st, GST_TAG_BITRATE, &utmp) ||
|
|
|
|
gst_tag_list_get_uint (tags_st, GST_TAG_NOMINAL_BITRATE, &utmp))
|
2010-09-20 09:22:32 +00:00
|
|
|
info->bitrate = utmp;
|
|
|
|
|
2012-01-12 23:25:22 +00:00
|
|
|
if (gst_tag_list_get_uint (tags_st, GST_TAG_MAXIMUM_BITRATE, &utmp))
|
2010-09-20 09:22:32 +00:00
|
|
|
info->max_bitrate = utmp;
|
|
|
|
|
|
|
|
/* FIXME: Is it worth it to remove the tags we've parsed? */
|
2012-01-10 18:07:19 +00:00
|
|
|
gst_discoverer_merge_and_replace_tags (&info->parent.tags,
|
|
|
|
(GstTagList *) tags_st);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
2012-05-20 23:01:17 +00:00
|
|
|
if (gst_structure_id_has_field (st, _TOC_QUARK)) {
|
|
|
|
gst_structure_id_get (st, _TOC_QUARK, GST_TYPE_TOC, &toc_st, NULL);
|
|
|
|
info->parent.toc = toc_st;
|
|
|
|
}
|
|
|
|
|
2012-11-20 13:56:45 +00:00
|
|
|
if (gst_structure_id_has_field (st, _STREAM_ID_QUARK)) {
|
|
|
|
gst_structure_id_get (st, _STREAM_ID_QUARK, G_TYPE_STRING, &stream_id,
|
|
|
|
NULL);
|
|
|
|
info->parent.stream_id = stream_id;
|
|
|
|
}
|
|
|
|
|
2012-01-11 12:16:28 +00:00
|
|
|
gst_caps_unref (caps);
|
2010-09-20 09:22:32 +00:00
|
|
|
return (GstDiscovererStreamInfo *) info;
|
|
|
|
|
2011-08-24 14:04:50 +00:00
|
|
|
} else if (is_subtitle_caps (caps)) {
|
|
|
|
GstDiscovererSubtitleInfo *info;
|
|
|
|
|
|
|
|
if (parent)
|
2012-01-11 12:16:28 +00:00
|
|
|
info =
|
|
|
|
(GstDiscovererSubtitleInfo *) gst_discoverer_stream_info_ref (parent);
|
2011-08-24 14:04:50 +00:00
|
|
|
else {
|
|
|
|
info = (GstDiscovererSubtitleInfo *)
|
2011-08-29 09:38:01 +00:00
|
|
|
g_object_new (GST_TYPE_DISCOVERER_SUBTITLE_INFO, NULL);
|
2012-01-11 12:16:28 +00:00
|
|
|
info->parent.caps = gst_caps_ref (caps);
|
2011-08-24 14:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (gst_structure_id_has_field (st, _TAGS_QUARK)) {
|
|
|
|
const gchar *language;
|
|
|
|
|
2012-01-10 18:27:19 +00:00
|
|
|
gst_structure_id_get (st, _TAGS_QUARK, GST_TYPE_TAG_LIST, &tags_st, NULL);
|
2011-08-24 14:04:50 +00:00
|
|
|
|
|
|
|
language = gst_structure_get_string (caps_st, GST_TAG_LANGUAGE_CODE);
|
|
|
|
if (language)
|
|
|
|
info->language = g_strdup (language);
|
|
|
|
|
|
|
|
/* FIXME: Is it worth it to remove the tags we've parsed? */
|
2012-01-10 18:27:19 +00:00
|
|
|
gst_discoverer_merge_and_replace_tags (&info->parent.tags, tags_st);
|
2011-08-24 14:04:50 +00:00
|
|
|
}
|
|
|
|
|
2012-05-20 23:01:17 +00:00
|
|
|
if (gst_structure_id_has_field (st, _TOC_QUARK)) {
|
|
|
|
gst_structure_id_get (st, _TOC_QUARK, GST_TYPE_TOC, &toc_st, NULL);
|
|
|
|
info->parent.toc = toc_st;
|
|
|
|
}
|
|
|
|
|
2012-11-20 13:56:45 +00:00
|
|
|
if (gst_structure_id_has_field (st, _STREAM_ID_QUARK)) {
|
|
|
|
gst_structure_id_get (st, _STREAM_ID_QUARK, G_TYPE_STRING, &stream_id,
|
|
|
|
NULL);
|
|
|
|
info->parent.stream_id = stream_id;
|
|
|
|
}
|
|
|
|
|
2011-08-24 13:59:38 +00:00
|
|
|
if (!info->language && ((GstDiscovererStreamInfo *) info)->tags) {
|
|
|
|
gchar *language;
|
|
|
|
if (gst_tag_list_get_string (((GstDiscovererStreamInfo *) info)->tags,
|
|
|
|
GST_TAG_LANGUAGE_CODE, &language)) {
|
|
|
|
info->language = language;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-11 12:16:28 +00:00
|
|
|
gst_caps_unref (caps);
|
2011-08-24 14:04:50 +00:00
|
|
|
return (GstDiscovererStreamInfo *) info;
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
} else {
|
|
|
|
/* None of the above - populate what information we can */
|
|
|
|
GstDiscovererStreamInfo *info;
|
|
|
|
|
|
|
|
if (parent)
|
2012-01-11 12:16:28 +00:00
|
|
|
info = gst_discoverer_stream_info_ref (parent);
|
2010-09-20 09:22:32 +00:00
|
|
|
else {
|
|
|
|
info = (GstDiscovererStreamInfo *)
|
2011-02-23 13:12:22 +00:00
|
|
|
g_object_new (GST_TYPE_DISCOVERER_STREAM_INFO, NULL);
|
2012-01-11 12:16:28 +00:00
|
|
|
info->caps = gst_caps_ref (caps);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
2012-05-11 14:37:14 +00:00
|
|
|
if (gst_structure_id_get (st, _TAGS_QUARK, GST_TYPE_TAG_LIST, &tags_st,
|
|
|
|
NULL)) {
|
2012-01-10 18:27:19 +00:00
|
|
|
gst_discoverer_merge_and_replace_tags (&info->tags, tags_st);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
2012-05-20 23:01:17 +00:00
|
|
|
if (gst_structure_id_get (st, _TOC_QUARK, GST_TYPE_TOC, &toc_st, NULL)) {
|
|
|
|
info->toc = toc_st;
|
|
|
|
}
|
|
|
|
|
2012-11-20 13:56:45 +00:00
|
|
|
if (gst_structure_id_get (st, _STREAM_ID_QUARK, G_TYPE_STRING, &stream_id,
|
|
|
|
NULL)) {
|
|
|
|
info->stream_id = stream_id;
|
|
|
|
}
|
|
|
|
|
2012-01-11 12:16:28 +00:00
|
|
|
gst_caps_unref (caps);
|
2010-09-20 09:22:32 +00:00
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstStructure *
|
|
|
|
find_stream_for_node (GstDiscoverer * dc, const GstStructure * topology)
|
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
GstPad *target_pad = NULL;
|
|
|
|
GstStructure *st = NULL;
|
|
|
|
PrivateStream *ps;
|
|
|
|
guint i;
|
|
|
|
GList *tmp;
|
|
|
|
|
|
|
|
if (!gst_structure_id_has_field (topology, _TOPOLOGY_PAD_QUARK)) {
|
2012-08-13 09:27:26 +00:00
|
|
|
GST_DEBUG ("Could not find pad for node %" GST_PTR_FORMAT, topology);
|
2010-09-20 09:22:32 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_structure_id_get (topology, _TOPOLOGY_PAD_QUARK,
|
|
|
|
GST_TYPE_PAD, &pad, NULL);
|
|
|
|
|
2012-01-11 11:55:36 +00:00
|
|
|
if (!dc->priv->streams) {
|
|
|
|
gst_object_unref (pad);
|
2010-09-20 09:22:32 +00:00
|
|
|
return NULL;
|
2012-01-11 11:55:36 +00:00
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
for (i = 0, tmp = dc->priv->streams; tmp; tmp = tmp->next, i++) {
|
|
|
|
ps = (PrivateStream *) tmp->data;
|
|
|
|
|
|
|
|
target_pad = gst_ghost_pad_get_target (GST_GHOST_PAD (ps->pad));
|
|
|
|
gst_object_unref (target_pad);
|
|
|
|
|
|
|
|
if (target_pad == pad)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tmp)
|
|
|
|
st = collect_stream_information (dc, ps, i);
|
|
|
|
|
|
|
|
gst_object_unref (pad);
|
|
|
|
|
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-01-11 11:55:59 +00:00
|
|
|
child_is_raw_stream (const GstCaps * parent, const GstCaps * child)
|
2010-09-20 09:22:32 +00:00
|
|
|
{
|
2012-01-11 11:55:59 +00:00
|
|
|
const GstStructure *st1, *st2;
|
2010-09-20 09:22:32 +00:00
|
|
|
const gchar *name1, *name2;
|
|
|
|
|
|
|
|
st1 = gst_caps_get_structure (parent, 0);
|
|
|
|
name1 = gst_structure_get_name (st1);
|
|
|
|
st2 = gst_caps_get_structure (child, 0);
|
|
|
|
name2 = gst_structure_get_name (st2);
|
|
|
|
|
|
|
|
if ((g_str_has_prefix (name1, "audio/") &&
|
|
|
|
g_str_has_prefix (name2, "audio/x-raw")) ||
|
|
|
|
((g_str_has_prefix (name1, "video/") ||
|
|
|
|
g_str_has_prefix (name1, "image/")) &&
|
|
|
|
g_str_has_prefix (name2, "video/x-raw"))) {
|
|
|
|
/* child is the "raw" sub-stream corresponding to parent */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-08-24 14:09:47 +00:00
|
|
|
if (is_subtitle_caps (parent))
|
|
|
|
return TRUE;
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If a parent is non-NULL, collected stream information will be appended to it
|
|
|
|
* (and where the information exists, it will be overriden)
|
|
|
|
*/
|
|
|
|
static GstDiscovererStreamInfo *
|
|
|
|
parse_stream_topology (GstDiscoverer * dc, const GstStructure * topology,
|
|
|
|
GstDiscovererStreamInfo * parent)
|
|
|
|
{
|
|
|
|
GstDiscovererStreamInfo *res = NULL;
|
|
|
|
GstCaps *caps = NULL;
|
|
|
|
const GValue *nval = NULL;
|
|
|
|
|
|
|
|
GST_DEBUG ("parsing: %" GST_PTR_FORMAT, topology);
|
|
|
|
|
|
|
|
nval = gst_structure_get_value (topology, "next");
|
|
|
|
|
|
|
|
if (nval == NULL || GST_VALUE_HOLDS_STRUCTURE (nval)) {
|
|
|
|
GstStructure *st = find_stream_for_node (dc, topology);
|
|
|
|
gboolean add_to_list = TRUE;
|
|
|
|
|
|
|
|
if (st) {
|
|
|
|
res = collect_information (dc, st, parent);
|
|
|
|
gst_structure_free (st);
|
|
|
|
} else {
|
|
|
|
/* Didn't find a stream structure, so let's just use the caps we have */
|
|
|
|
res = collect_information (dc, topology, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nval == NULL) {
|
|
|
|
/* FIXME : aggregate with information from main streams */
|
|
|
|
GST_DEBUG ("Coudn't find 'next' ! might be the last entry");
|
|
|
|
} else {
|
|
|
|
GstCaps *caps;
|
|
|
|
const GstStructure *st;
|
|
|
|
|
|
|
|
st = gst_value_get_structure (nval);
|
|
|
|
|
2010-09-20 14:45:32 +00:00
|
|
|
GST_DEBUG ("next is a structure %" GST_PTR_FORMAT, st);
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
if (!parent)
|
|
|
|
parent = res;
|
|
|
|
|
|
|
|
if (gst_structure_id_get (st, _CAPS_QUARK, GST_TYPE_CAPS, &caps, NULL)) {
|
|
|
|
if (gst_caps_can_intersect (parent->caps, caps)) {
|
|
|
|
/* We sometimes get an extra sub-stream from the parser. If this is
|
|
|
|
* the case, we just replace the parent caps with this stream's caps
|
|
|
|
* since they might contain more information */
|
2012-01-10 17:48:44 +00:00
|
|
|
gst_caps_replace (&parent->caps, caps);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
parse_stream_topology (dc, st, parent);
|
|
|
|
add_to_list = FALSE;
|
|
|
|
} else if (child_is_raw_stream (parent->caps, caps)) {
|
|
|
|
/* This is the "raw" stream corresponding to the parent. This
|
|
|
|
* contains more information than the parent, tags etc. */
|
|
|
|
parse_stream_topology (dc, st, parent);
|
|
|
|
add_to_list = FALSE;
|
|
|
|
} else {
|
|
|
|
GstDiscovererStreamInfo *next = parse_stream_topology (dc, st, NULL);
|
|
|
|
res->next = next;
|
|
|
|
next->previous = res;
|
|
|
|
}
|
2012-01-10 17:48:44 +00:00
|
|
|
gst_caps_unref (caps);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (add_to_list) {
|
|
|
|
dc->priv->current_info->stream_list =
|
|
|
|
g_list_append (dc->priv->current_info->stream_list, res);
|
2012-01-11 12:16:28 +00:00
|
|
|
} else {
|
|
|
|
gst_discoverer_stream_info_unref (res);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} else if (GST_VALUE_HOLDS_LIST (nval)) {
|
|
|
|
guint i, len;
|
|
|
|
GstDiscovererContainerInfo *cont;
|
|
|
|
GstTagList *tags;
|
|
|
|
|
|
|
|
if (!gst_structure_id_get (topology, _CAPS_QUARK,
|
|
|
|
GST_TYPE_CAPS, &caps, NULL))
|
|
|
|
GST_WARNING ("Couldn't find caps !");
|
|
|
|
|
|
|
|
len = gst_value_list_get_size (nval);
|
|
|
|
GST_DEBUG ("next is a list of %d entries", len);
|
|
|
|
|
|
|
|
cont = (GstDiscovererContainerInfo *)
|
2011-02-23 13:12:22 +00:00
|
|
|
g_object_new (GST_TYPE_DISCOVERER_CONTAINER_INFO, NULL);
|
2010-09-20 09:22:32 +00:00
|
|
|
cont->parent.caps = caps;
|
|
|
|
res = (GstDiscovererStreamInfo *) cont;
|
|
|
|
|
|
|
|
if (gst_structure_id_has_field (topology, _TAGS_QUARK)) {
|
2011-02-16 09:57:31 +00:00
|
|
|
GstTagList *tmp;
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
gst_structure_id_get (topology, _TAGS_QUARK,
|
2012-01-10 18:27:19 +00:00
|
|
|
GST_TYPE_TAG_LIST, &tags, NULL);
|
2011-02-16 09:56:16 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("Merge tags %" GST_PTR_FORMAT, tags);
|
|
|
|
|
2011-02-16 09:57:31 +00:00
|
|
|
tmp =
|
2010-09-20 09:22:32 +00:00
|
|
|
gst_tag_list_merge (cont->parent.tags, (GstTagList *) tags,
|
|
|
|
GST_TAG_MERGE_APPEND);
|
2012-09-14 15:53:21 +00:00
|
|
|
gst_tag_list_unref (tags);
|
2011-02-16 09:57:31 +00:00
|
|
|
if (cont->parent.tags)
|
2012-09-14 15:53:21 +00:00
|
|
|
gst_tag_list_unref (cont->parent.tags);
|
2011-02-16 09:57:31 +00:00
|
|
|
cont->parent.tags = tmp;
|
2011-02-16 09:56:16 +00:00
|
|
|
GST_DEBUG ("Container info tags %" GST_PTR_FORMAT, tmp);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
const GValue *subv = gst_value_list_get_value (nval, i);
|
|
|
|
const GstStructure *subst = gst_value_get_structure (subv);
|
|
|
|
GstDiscovererStreamInfo *substream;
|
|
|
|
|
|
|
|
GST_DEBUG ("%d %" GST_PTR_FORMAT, i, subst);
|
|
|
|
|
|
|
|
substream = parse_stream_topology (dc, subst, NULL);
|
|
|
|
|
|
|
|
substream->previous = res;
|
|
|
|
cont->streams =
|
|
|
|
g_list_append (cont->streams,
|
|
|
|
gst_discoverer_stream_info_ref (substream));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Called when pipeline is pre-rolled */
|
|
|
|
static void
|
|
|
|
discoverer_collect (GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GST_DEBUG ("Collecting information");
|
|
|
|
|
|
|
|
/* Stop the timeout handler if present */
|
|
|
|
if (dc->priv->timeoutid) {
|
|
|
|
g_source_remove (dc->priv->timeoutid);
|
|
|
|
dc->priv->timeoutid = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dc->priv->streams) {
|
|
|
|
/* FIXME : Make this querying optional */
|
|
|
|
if (TRUE) {
|
2010-12-13 14:20:23 +00:00
|
|
|
GstElement *pipeline = (GstElement *) dc->priv->pipeline;
|
2010-09-20 09:22:32 +00:00
|
|
|
gint64 dur;
|
|
|
|
|
|
|
|
GST_DEBUG ("Attempting to query duration");
|
|
|
|
|
2011-07-27 00:16:08 +00:00
|
|
|
if (gst_element_query_duration (pipeline, GST_FORMAT_TIME, &dur)) {
|
|
|
|
GST_DEBUG ("Got duration %" GST_TIME_FORMAT, GST_TIME_ARGS (dur));
|
|
|
|
dc->priv->current_info->duration = (guint64) dur;
|
2012-02-14 19:23:27 +00:00
|
|
|
} else {
|
|
|
|
GstStateChangeReturn sret;
|
|
|
|
|
|
|
|
/* Some parsers may not even return a rough estimate right away, e.g.
|
|
|
|
* because they've only processed a single frame so far, so if we
|
|
|
|
* didn't get a duration the first time, spin a bit and try again.
|
|
|
|
* Ugly, but still better than making parsers or other elements return
|
|
|
|
* completely bogus values. We need some API extensions to solve this
|
|
|
|
* better. */
|
|
|
|
GST_INFO ("No duration yet, try a bit harder..");
|
|
|
|
sret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
|
|
if (sret != GST_STATE_CHANGE_FAILURE) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; ++i) {
|
|
|
|
g_usleep (G_USEC_PER_SEC / 20);
|
2012-02-16 13:23:28 +00:00
|
|
|
if (gst_element_query_duration (pipeline, GST_FORMAT_TIME, &dur)
|
|
|
|
&& dur > 0) {
|
2012-02-14 19:23:27 +00:00
|
|
|
GST_DEBUG ("Got duration %" GST_TIME_FORMAT, GST_TIME_ARGS (dur));
|
|
|
|
dc->priv->current_info->duration = (guint64) dur;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
2010-12-13 14:20:23 +00:00
|
|
|
|
|
|
|
if (dc->priv->seeking_query) {
|
2011-05-17 09:25:31 +00:00
|
|
|
if (gst_element_query (pipeline, dc->priv->seeking_query)) {
|
2011-07-27 00:16:08 +00:00
|
|
|
GstFormat format;
|
2010-12-13 14:20:23 +00:00
|
|
|
gboolean seekable;
|
|
|
|
|
|
|
|
gst_query_parse_seeking (dc->priv->seeking_query, &format,
|
|
|
|
&seekable, NULL, NULL);
|
|
|
|
if (format == GST_FORMAT_TIME) {
|
|
|
|
GST_DEBUG ("Got seekable %d", seekable);
|
|
|
|
dc->priv->current_info->seekable = seekable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (dc->priv->current_topology)
|
|
|
|
dc->priv->current_info->stream_info = parse_stream_topology (dc,
|
|
|
|
dc->priv->current_topology, NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Images need some special handling. They do not have a duration, have
|
|
|
|
* caps named image/<foo> (th exception being MJPEG video which is also
|
|
|
|
* type image/jpeg), and should consist of precisely one stream (actually
|
|
|
|
* initially there are 2, the image and raw stream, but we squash these
|
2011-08-24 14:04:50 +00:00
|
|
|
* while parsing the stream topology). At some point, if we find that these
|
2010-09-20 09:22:32 +00:00
|
|
|
* conditions are not sufficient, we can count the number of decoders and
|
|
|
|
* parsers in the chain, and if there's more than one decoder, or any
|
|
|
|
* parser at all, we should not mark this as an image.
|
|
|
|
*/
|
|
|
|
if (dc->priv->current_info->duration == 0 &&
|
|
|
|
dc->priv->current_info->stream_info != NULL &&
|
|
|
|
dc->priv->current_info->stream_info->next == NULL) {
|
2012-09-09 18:48:54 +00:00
|
|
|
GstDiscovererStreamInfo *stream_info;
|
|
|
|
GstStructure *st;
|
|
|
|
|
|
|
|
stream_info = dc->priv->current_info->stream_info;
|
|
|
|
st = gst_caps_get_structure (stream_info->caps, 0);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
if (g_str_has_prefix (gst_structure_get_name (st), "image/"))
|
2012-09-09 18:48:54 +00:00
|
|
|
((GstDiscovererVideoInfo *) stream_info)->is_image = TRUE;
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dc->priv->async) {
|
|
|
|
GST_DEBUG ("Emitting 'discoverered'");
|
|
|
|
g_signal_emit (dc, gst_discoverer_signals[SIGNAL_DISCOVERED], 0,
|
|
|
|
dc->priv->current_info, dc->priv->current_error);
|
|
|
|
/* Clients get a copy of current_info since it is a boxed type */
|
|
|
|
gst_discoverer_info_unref (dc->priv->current_info);
|
2012-07-30 23:19:36 +00:00
|
|
|
dc->priv->current_info = NULL;
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-07 07:34:55 +00:00
|
|
|
static void
|
|
|
|
get_async_cb (gpointer cb_data, GSource * source, GSourceFunc * func,
|
|
|
|
gpointer * data)
|
|
|
|
{
|
|
|
|
*func = (GSourceFunc) async_timeout_cb;
|
|
|
|
*data = cb_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wrapper since GSourceCallbackFuncs don't expect a return value from ref() */
|
|
|
|
static void
|
|
|
|
_void_g_object_ref (gpointer object)
|
|
|
|
{
|
|
|
|
g_object_ref (G_OBJECT (object));
|
|
|
|
}
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
static void
|
|
|
|
handle_current_async (GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GSource *source;
|
2011-02-07 07:34:55 +00:00
|
|
|
static GSourceCallbackFuncs cb_funcs = {
|
2011-06-01 03:38:56 +00:00
|
|
|
_void_g_object_ref,
|
|
|
|
g_object_unref,
|
|
|
|
get_async_cb,
|
2011-02-07 07:34:55 +00:00
|
|
|
};
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
/* Attach a timeout to the main context */
|
|
|
|
source = g_timeout_source_new (dc->priv->timeout / GST_MSECOND);
|
2011-02-07 07:34:55 +00:00
|
|
|
g_source_set_callback_indirect (source, g_object_ref (dc), &cb_funcs);
|
2010-09-20 09:22:32 +00:00
|
|
|
dc->priv->timeoutid = g_source_attach (source, dc->priv->ctx);
|
|
|
|
g_source_unref (source);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns TRUE if processing should stop */
|
|
|
|
static gboolean
|
|
|
|
handle_message (GstDiscoverer * dc, GstMessage * msg)
|
|
|
|
{
|
|
|
|
gboolean done = FALSE;
|
|
|
|
|
2011-02-16 09:56:16 +00:00
|
|
|
GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg), "got a %s message",
|
|
|
|
GST_MESSAGE_TYPE_NAME (msg));
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
switch (GST_MESSAGE_TYPE (msg)) {
|
|
|
|
case GST_MESSAGE_ERROR:{
|
|
|
|
GError *gerr;
|
|
|
|
gchar *debug;
|
|
|
|
|
|
|
|
gst_message_parse_error (msg, &gerr, &debug);
|
2011-02-16 09:56:16 +00:00
|
|
|
GST_WARNING_OBJECT (GST_MESSAGE_SRC (msg),
|
|
|
|
"Got an error [debug:%s], [message:%s]", debug, gerr->message);
|
2010-09-20 09:22:32 +00:00
|
|
|
dc->priv->current_error = gerr;
|
|
|
|
g_free (debug);
|
|
|
|
|
|
|
|
/* We need to stop */
|
|
|
|
done = TRUE;
|
|
|
|
|
2012-02-29 11:25:24 +00:00
|
|
|
/* Don't override missing plugin result code for missing plugin errors */
|
|
|
|
if (dc->priv->current_info->result != GST_DISCOVERER_MISSING_PLUGINS ||
|
|
|
|
(!g_error_matches (gerr, GST_CORE_ERROR,
|
|
|
|
GST_CORE_ERROR_MISSING_PLUGIN) &&
|
|
|
|
!g_error_matches (gerr, GST_STREAM_ERROR,
|
|
|
|
GST_STREAM_ERROR_CODEC_NOT_FOUND))) {
|
|
|
|
GST_DEBUG ("Setting result to ERROR");
|
|
|
|
dc->priv->current_info->result = GST_DISCOVERER_ERROR;
|
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GST_MESSAGE_EOS:
|
|
|
|
GST_DEBUG ("Got EOS !");
|
|
|
|
done = TRUE;
|
|
|
|
break;
|
|
|
|
|
2012-05-10 20:08:21 +00:00
|
|
|
case GST_MESSAGE_APPLICATION:{
|
|
|
|
const gchar *name;
|
|
|
|
gboolean async_done;
|
|
|
|
name = gst_structure_get_name (gst_message_get_structure (msg));
|
|
|
|
/* Maybe ASYNC_DONE is received & we're just waiting for subtitle tags */
|
|
|
|
DISCO_LOCK (dc);
|
|
|
|
async_done = dc->priv->async_done;
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
if (g_str_equal (name, "DiscovererDone") && async_done)
|
|
|
|
return TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
case GST_MESSAGE_ASYNC_DONE:
|
|
|
|
if (GST_MESSAGE_SRC (msg) == (GstObject *) dc->priv->pipeline) {
|
|
|
|
GST_DEBUG ("Finished changing state asynchronously");
|
2012-05-10 20:08:21 +00:00
|
|
|
DISCO_LOCK (dc);
|
2012-05-11 14:37:14 +00:00
|
|
|
if (dc->priv->pending_subtitle_pads == 0) {
|
2012-05-10 20:08:21 +00:00
|
|
|
done = TRUE;
|
|
|
|
} else {
|
|
|
|
/* Remember that ASYNC_DONE has been received, wait for subtitles */
|
|
|
|
dc->priv->async_done = TRUE;
|
|
|
|
}
|
|
|
|
DISCO_UNLOCK (dc);
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GST_MESSAGE_ELEMENT:
|
|
|
|
{
|
2011-05-10 11:35:49 +00:00
|
|
|
GQuark sttype;
|
|
|
|
const GstStructure *structure;
|
|
|
|
|
|
|
|
structure = gst_message_get_structure (msg);
|
|
|
|
sttype = gst_structure_get_name_id (structure);
|
2010-09-20 09:22:32 +00:00
|
|
|
GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg),
|
2011-05-10 11:35:49 +00:00
|
|
|
"structure %" GST_PTR_FORMAT, structure);
|
2010-09-20 09:22:32 +00:00
|
|
|
if (sttype == _MISSING_PLUGIN_QUARK) {
|
2011-02-16 09:56:16 +00:00
|
|
|
GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg),
|
|
|
|
"Setting result to MISSING_PLUGINS");
|
2010-09-20 09:22:32 +00:00
|
|
|
dc->priv->current_info->result = GST_DISCOVERER_MISSING_PLUGINS;
|
2012-01-12 14:26:05 +00:00
|
|
|
if (dc->priv->current_info->misc)
|
|
|
|
gst_structure_free (dc->priv->current_info->misc);
|
2011-05-10 11:35:49 +00:00
|
|
|
dc->priv->current_info->misc = gst_structure_copy (structure);
|
2010-09-20 09:22:32 +00:00
|
|
|
} else if (sttype == _STREAM_TOPOLOGY_QUARK) {
|
2012-01-12 14:26:05 +00:00
|
|
|
if (dc->priv->current_topology)
|
|
|
|
gst_structure_free (dc->priv->current_topology);
|
2011-05-10 11:35:49 +00:00
|
|
|
dc->priv->current_topology = gst_structure_copy (structure);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GST_MESSAGE_TAG:
|
|
|
|
{
|
2010-12-19 12:41:22 +00:00
|
|
|
GstTagList *tl, *tmp;
|
2010-09-20 09:22:32 +00:00
|
|
|
|
|
|
|
gst_message_parse_tag (msg, &tl);
|
2011-02-16 09:56:16 +00:00
|
|
|
GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg), "Got tags %" GST_PTR_FORMAT, tl);
|
2010-09-20 09:22:32 +00:00
|
|
|
/* Merge with current tags */
|
2010-12-19 12:41:22 +00:00
|
|
|
tmp =
|
2010-09-20 09:22:32 +00:00
|
|
|
gst_tag_list_merge (dc->priv->current_info->tags, tl,
|
|
|
|
GST_TAG_MERGE_APPEND);
|
2012-09-14 15:53:21 +00:00
|
|
|
gst_tag_list_unref (tl);
|
2010-12-19 12:41:22 +00:00
|
|
|
if (dc->priv->current_info->tags)
|
2012-09-14 15:53:21 +00:00
|
|
|
gst_tag_list_unref (dc->priv->current_info->tags);
|
2010-12-19 12:41:22 +00:00
|
|
|
dc->priv->current_info->tags = tmp;
|
2011-02-16 09:56:16 +00:00
|
|
|
GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg), "Current info %p, tags %"
|
|
|
|
GST_PTR_FORMAT, dc->priv->current_info, tmp);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2012-05-20 23:01:17 +00:00
|
|
|
case GST_MESSAGE_TOC:
|
|
|
|
{
|
|
|
|
GstToc *tmp;
|
|
|
|
|
|
|
|
gst_message_parse_toc (msg, &tmp, NULL);
|
|
|
|
GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg), "Got toc %" GST_PTR_FORMAT, tmp);
|
|
|
|
dc->priv->current_info->toc = tmp;
|
|
|
|
GST_DEBUG_OBJECT (GST_MESSAGE_SRC (msg), "Current info %p, toc %"
|
|
|
|
GST_PTR_FORMAT, dc->priv->current_info, tmp);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return done;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_current_sync (GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GTimer *timer;
|
|
|
|
gdouble deadline = ((gdouble) dc->priv->timeout) / GST_SECOND;
|
|
|
|
GstMessage *msg;
|
|
|
|
gboolean done = FALSE;
|
|
|
|
|
|
|
|
timer = g_timer_new ();
|
|
|
|
g_timer_start (timer);
|
|
|
|
|
|
|
|
do {
|
|
|
|
/* poll bus with timeout */
|
|
|
|
/* FIXME : make the timeout more fine-tuned */
|
|
|
|
if ((msg = gst_bus_timed_pop (dc->priv->bus, GST_SECOND / 2))) {
|
|
|
|
done = handle_message (dc, msg);
|
|
|
|
gst_message_unref (msg);
|
|
|
|
}
|
|
|
|
} while (!done && (g_timer_elapsed (timer, NULL) < deadline));
|
|
|
|
|
|
|
|
/* return result */
|
|
|
|
if (!done) {
|
2010-09-22 10:35:59 +00:00
|
|
|
GST_DEBUG ("we timed out! Setting result to TIMEOUT");
|
2010-09-20 09:22:32 +00:00
|
|
|
dc->priv->current_info->result = GST_DISCOVERER_TIMEOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG ("Done");
|
|
|
|
|
|
|
|
g_timer_stop (timer);
|
|
|
|
g_timer_destroy (timer);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_setup_locked (GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GstStateChangeReturn ret;
|
|
|
|
|
|
|
|
GST_DEBUG ("Setting up");
|
|
|
|
|
|
|
|
/* Pop URI off the pending URI list */
|
|
|
|
dc->priv->current_info =
|
2011-02-23 13:12:22 +00:00
|
|
|
(GstDiscovererInfo *) g_object_new (GST_TYPE_DISCOVERER_INFO, NULL);
|
2010-09-20 09:22:32 +00:00
|
|
|
dc->priv->current_info->uri = (gchar *) dc->priv->pending_uris->data;
|
|
|
|
dc->priv->pending_uris =
|
|
|
|
g_list_delete_link (dc->priv->pending_uris, dc->priv->pending_uris);
|
|
|
|
|
|
|
|
/* set uri on uridecodebin */
|
|
|
|
g_object_set (dc->priv->uridecodebin, "uri", dc->priv->current_info->uri,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
GST_DEBUG ("Current is now %s", dc->priv->current_info->uri);
|
|
|
|
|
|
|
|
dc->priv->processing = TRUE;
|
|
|
|
|
|
|
|
/* set pipeline to PAUSED */
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
GST_DEBUG ("Setting pipeline to PAUSED");
|
|
|
|
ret =
|
|
|
|
gst_element_set_state ((GstElement *) dc->priv->pipeline,
|
|
|
|
GST_STATE_PAUSED);
|
2013-09-19 10:58:53 +00:00
|
|
|
if (ret == GST_STATE_CHANGE_NO_PREROLL) {
|
|
|
|
GST_DEBUG ("Source is live, switching to PLAYING");
|
|
|
|
ret =
|
|
|
|
gst_element_set_state ((GstElement *) dc->priv->pipeline,
|
|
|
|
GST_STATE_PLAYING);
|
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
DISCO_LOCK (dc);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dc, "Pipeline going to PAUSED : %s",
|
|
|
|
gst_element_state_change_return_get_name (ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
discoverer_cleanup (GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GST_DEBUG ("Cleaning up");
|
|
|
|
|
|
|
|
gst_bus_set_flushing (dc->priv->bus, TRUE);
|
|
|
|
gst_element_set_state ((GstElement *) dc->priv->pipeline, GST_STATE_READY);
|
|
|
|
gst_bus_set_flushing (dc->priv->bus, FALSE);
|
|
|
|
|
|
|
|
DISCO_LOCK (dc);
|
|
|
|
if (dc->priv->current_error)
|
|
|
|
g_error_free (dc->priv->current_error);
|
|
|
|
dc->priv->current_error = NULL;
|
|
|
|
if (dc->priv->current_topology) {
|
|
|
|
gst_structure_free (dc->priv->current_topology);
|
|
|
|
dc->priv->current_topology = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
dc->priv->current_info = NULL;
|
|
|
|
|
2012-05-11 14:37:14 +00:00
|
|
|
dc->priv->pending_subtitle_pads = 0;
|
2012-05-10 20:08:21 +00:00
|
|
|
dc->priv->async_done = FALSE;
|
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
/* Try popping the next uri */
|
|
|
|
if (dc->priv->async) {
|
|
|
|
if (dc->priv->pending_uris != NULL) {
|
|
|
|
_setup_locked (dc);
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
/* Start timeout */
|
|
|
|
handle_current_async (dc);
|
|
|
|
} else {
|
|
|
|
/* We're done ! */
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
g_signal_emit (dc, gst_discoverer_signals[SIGNAL_FINISHED], 0);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
|
|
|
|
GST_DEBUG ("out");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
discoverer_bus_cb (GstBus * bus, GstMessage * msg, GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
if (dc->priv->processing) {
|
|
|
|
if (handle_message (dc, msg)) {
|
|
|
|
GST_DEBUG ("Stopping asynchronously");
|
2011-01-17 19:39:53 +00:00
|
|
|
/* Serialise with _event_probe() */
|
|
|
|
DISCO_LOCK (dc);
|
2010-09-20 09:22:32 +00:00
|
|
|
dc->priv->processing = FALSE;
|
2011-01-17 19:39:53 +00:00
|
|
|
DISCO_UNLOCK (dc);
|
2010-09-20 09:22:32 +00:00
|
|
|
discoverer_collect (dc);
|
|
|
|
discoverer_cleanup (dc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
async_timeout_cb (GstDiscoverer * dc)
|
|
|
|
{
|
2011-01-17 10:00:08 +00:00
|
|
|
if (!g_source_is_destroyed (g_main_current_source ())) {
|
|
|
|
dc->priv->timeoutid = 0;
|
|
|
|
GST_DEBUG ("Setting result to TIMEOUT");
|
|
|
|
dc->priv->current_info->result = GST_DISCOVERER_TIMEOUT;
|
|
|
|
dc->priv->processing = FALSE;
|
|
|
|
discoverer_collect (dc);
|
|
|
|
discoverer_cleanup (dc);
|
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If there is a pending URI, it will pop it from the list of pending
|
|
|
|
* URIs and start the discovery on it.
|
|
|
|
*
|
|
|
|
* Returns GST_DISCOVERER_OK if the next URI was popped and is processing,
|
|
|
|
* else a error flag.
|
|
|
|
*/
|
|
|
|
static GstDiscovererResult
|
|
|
|
start_discovering (GstDiscoverer * dc)
|
|
|
|
{
|
|
|
|
GstDiscovererResult res = GST_DISCOVERER_OK;
|
|
|
|
|
|
|
|
GST_DEBUG ("Starting");
|
|
|
|
|
|
|
|
DISCO_LOCK (dc);
|
|
|
|
if (dc->priv->pending_uris == NULL) {
|
|
|
|
GST_WARNING ("No URI to process");
|
2010-09-22 10:35:59 +00:00
|
|
|
res = GST_DISCOVERER_URI_INVALID;
|
2010-09-20 09:22:32 +00:00
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
goto beach;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dc->priv->current_info != NULL) {
|
|
|
|
GST_WARNING ("Already processing a file");
|
2010-09-22 10:35:59 +00:00
|
|
|
res = GST_DISCOVERER_BUSY;
|
2010-09-20 09:22:32 +00:00
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
goto beach;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_signal_emit (dc, gst_discoverer_signals[SIGNAL_STARTING], 0);
|
|
|
|
|
|
|
|
_setup_locked (dc);
|
|
|
|
|
|
|
|
DISCO_UNLOCK (dc);
|
|
|
|
|
|
|
|
if (dc->priv->async)
|
|
|
|
handle_current_async (dc);
|
|
|
|
else
|
|
|
|
handle_current_sync (dc);
|
|
|
|
|
|
|
|
beach:
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_discoverer_start:
|
|
|
|
* @discoverer: A #GstDiscoverer
|
2011-02-16 09:56:16 +00:00
|
|
|
*
|
2010-09-20 09:22:32 +00:00
|
|
|
* Allow asynchronous discovering of URIs to take place.
|
|
|
|
* A #GMainLoop must be available for #GstDiscoverer to properly work in
|
|
|
|
* asynchronous mode.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_discoverer_start (GstDiscoverer * discoverer)
|
|
|
|
{
|
|
|
|
GSource *source;
|
|
|
|
GMainContext *ctx = NULL;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (discoverer, "Starting...");
|
|
|
|
|
|
|
|
if (discoverer->priv->async) {
|
|
|
|
GST_DEBUG_OBJECT (discoverer, "We were already started");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
discoverer->priv->async = TRUE;
|
|
|
|
discoverer->priv->running = TRUE;
|
|
|
|
|
|
|
|
ctx = g_main_context_get_thread_default ();
|
2010-12-04 14:45:58 +00:00
|
|
|
|
2010-09-20 09:22:32 +00:00
|
|
|
/* Connect to bus signals */
|
|
|
|
if (ctx == NULL)
|
|
|
|
ctx = g_main_context_default ();
|
|
|
|
|
|
|
|
source = gst_bus_create_watch (discoverer->priv->bus);
|
|
|
|
g_source_set_callback (source, (GSourceFunc) gst_bus_async_signal_func,
|
|
|
|
NULL, NULL);
|
|
|
|
discoverer->priv->sourceid = g_source_attach (source, ctx);
|
|
|
|
g_source_unref (source);
|
|
|
|
discoverer->priv->ctx = g_main_context_ref (ctx);
|
|
|
|
|
|
|
|
start_discovering (discoverer);
|
|
|
|
GST_DEBUG_OBJECT (discoverer, "Started");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_discoverer_stop:
|
|
|
|
* @discoverer: A #GstDiscoverer
|
|
|
|
*
|
|
|
|
* Stop the discovery of any pending URIs and clears the list of
|
|
|
|
* pending URIS (if any).
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_discoverer_stop (GstDiscoverer * discoverer)
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (discoverer, "Stopping...");
|
|
|
|
|
|
|
|
if (!discoverer->priv->async) {
|
|
|
|
GST_DEBUG_OBJECT (discoverer,
|
|
|
|
"We were already stopped, or running synchronously");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
DISCO_LOCK (discoverer);
|
|
|
|
if (discoverer->priv->processing) {
|
|
|
|
/* We prevent any further processing by setting the bus to
|
|
|
|
* flushing and setting the pipeline to READY.
|
|
|
|
* _reset() will take care of the rest of the cleanup */
|
2011-01-17 18:38:32 +00:00
|
|
|
if (discoverer->priv->bus)
|
|
|
|
gst_bus_set_flushing (discoverer->priv->bus, TRUE);
|
|
|
|
if (discoverer->priv->pipeline)
|
|
|
|
gst_element_set_state ((GstElement *) discoverer->priv->pipeline,
|
|
|
|
GST_STATE_READY);
|
2010-09-20 09:22:32 +00:00
|
|
|
}
|
|
|
|
discoverer->priv->running = FALSE;
|
|
|
|
DISCO_UNLOCK (discoverer);
|
|
|
|
|
|
|
|
/* Remove timeout handler */
|
|
|
|
if (discoverer->priv->timeoutid) {
|
|
|
|
g_source_remove (discoverer->priv->timeoutid);
|
|
|
|
discoverer->priv->timeoutid = 0;
|
|
|
|
}
|
|
|
|
/* Remove signal watch */
|
|
|
|
if (discoverer->priv->sourceid) {
|
|
|
|
g_source_remove (discoverer->priv->sourceid);
|
|
|
|
discoverer->priv->sourceid = 0;
|
|
|
|
}
|
|
|
|
/* Unref main context */
|
|
|
|
if (discoverer->priv->ctx) {
|
|
|
|
g_main_context_unref (discoverer->priv->ctx);
|
|
|
|
discoverer->priv->ctx = NULL;
|
|
|
|
}
|
|
|
|
discoverer_reset (discoverer);
|
|
|
|
|
|
|
|
discoverer->priv->async = FALSE;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (discoverer, "Stopped");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_discoverer_discover_uri_async:
|
|
|
|
* @discoverer: A #GstDiscoverer
|
|
|
|
* @uri: the URI to add.
|
|
|
|
*
|
|
|
|
* Appends the given @uri to the list of URIs to discoverer. The actual
|
2010-09-20 18:04:48 +00:00
|
|
|
* discovery of the @uri will only take place if gst_discoverer_start() has
|
2010-09-20 09:22:32 +00:00
|
|
|
* been called.
|
|
|
|
*
|
2011-01-05 10:23:09 +00:00
|
|
|
* A copy of @uri will be made internally, so the caller can safely g_free()
|
|
|
|
* afterwards.
|
2010-09-20 09:22:32 +00:00
|
|
|
*
|
2011-09-13 19:10:43 +00:00
|
|
|
* Returns: %TRUE if the @uri was successfully appended to the list of pending
|
2010-09-20 18:04:48 +00:00
|
|
|
* uris, else %FALSE
|
2010-09-20 09:22:32 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_discoverer_discover_uri_async (GstDiscoverer * discoverer,
|
|
|
|
const gchar * uri)
|
|
|
|
{
|
|
|
|
gboolean can_run;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (discoverer, "uri : %s", uri);
|
|
|
|
|
|
|
|
DISCO_LOCK (discoverer);
|
|
|
|
can_run = (discoverer->priv->pending_uris == NULL);
|
|
|
|
discoverer->priv->pending_uris =
|
|
|
|
g_list_append (discoverer->priv->pending_uris, g_strdup (uri));
|
|
|
|
DISCO_UNLOCK (discoverer);
|
|
|
|
|
|
|
|
if (can_run)
|
|
|
|
start_discovering (discoverer);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Synchronous mode */
|
|
|
|
/**
|
|
|
|
* gst_discoverer_discover_uri:
|
|
|
|
* @discoverer: A #GstDiscoverer
|
|
|
|
* @uri: The URI to run on.
|
2011-06-18 09:16:19 +00:00
|
|
|
* @err: (out) (allow-none): If an error occurred, this field will be filled in.
|
2010-09-20 09:22:32 +00:00
|
|
|
*
|
|
|
|
* Synchronously discovers the given @uri.
|
|
|
|
*
|
2011-01-05 10:23:09 +00:00
|
|
|
* A copy of @uri will be made internally, so the caller can safely g_free()
|
2010-12-21 17:51:29 +00:00
|
|
|
* afterwards.
|
2010-09-20 09:22:32 +00:00
|
|
|
*
|
2011-01-05 10:23:09 +00:00
|
|
|
* Returns: (transfer full): the result of the scanning. Can be %NULL if an
|
|
|
|
* error occurred.
|
2010-09-20 09:22:32 +00:00
|
|
|
*/
|
|
|
|
GstDiscovererInfo *
|
|
|
|
gst_discoverer_discover_uri (GstDiscoverer * discoverer, const gchar * uri,
|
|
|
|
GError ** err)
|
|
|
|
{
|
|
|
|
GstDiscovererResult res = 0;
|
|
|
|
GstDiscovererInfo *info;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (discoverer, "uri:%s", uri);
|
|
|
|
|
|
|
|
DISCO_LOCK (discoverer);
|
|
|
|
if (G_UNLIKELY (discoverer->priv->current_info)) {
|
|
|
|
DISCO_UNLOCK (discoverer);
|
|
|
|
GST_WARNING_OBJECT (discoverer, "Already handling a uri");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
discoverer->priv->pending_uris =
|
|
|
|
g_list_append (discoverer->priv->pending_uris, g_strdup (uri));
|
|
|
|
DISCO_UNLOCK (discoverer);
|
|
|
|
|
|
|
|
res = start_discovering (discoverer);
|
|
|
|
discoverer_collect (discoverer);
|
|
|
|
|
|
|
|
/* Get results */
|
2011-06-18 09:16:19 +00:00
|
|
|
if (err) {
|
|
|
|
if (discoverer->priv->current_error)
|
|
|
|
*err = g_error_copy (discoverer->priv->current_error);
|
|
|
|
else
|
|
|
|
*err = NULL;
|
|
|
|
}
|
2010-09-22 10:35:59 +00:00
|
|
|
if (res != GST_DISCOVERER_OK) {
|
|
|
|
GST_DEBUG ("Setting result to %d (was %d)", res,
|
|
|
|
discoverer->priv->current_info->result);
|
|
|
|
discoverer->priv->current_info->result = res;
|
|
|
|
}
|
2010-09-20 09:22:32 +00:00
|
|
|
info = discoverer->priv->current_info;
|
|
|
|
|
|
|
|
discoverer_cleanup (discoverer);
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_discoverer_new:
|
2010-10-15 16:23:44 +00:00
|
|
|
* @timeout: timeout per file, in nanoseconds. Allowed are values between
|
|
|
|
* one second (#GST_SECOND) and one hour (3600 * #GST_SECOND)
|
2010-09-20 09:22:32 +00:00
|
|
|
* @err: a pointer to a #GError. can be %NULL
|
|
|
|
*
|
|
|
|
* Creates a new #GstDiscoverer with the provided timeout.
|
|
|
|
*
|
2010-12-21 17:51:29 +00:00
|
|
|
* Returns: (transfer full): The new #GstDiscoverer.
|
2011-01-05 10:23:09 +00:00
|
|
|
* If an error occurred when creating the discoverer, @err will be set
|
2010-10-15 16:23:44 +00:00
|
|
|
* accordingly and %NULL will be returned. If @err is set, the caller must
|
|
|
|
* free it when no longer needed using g_error_free().
|
2010-09-20 09:22:32 +00:00
|
|
|
*/
|
|
|
|
GstDiscoverer *
|
|
|
|
gst_discoverer_new (GstClockTime timeout, GError ** err)
|
|
|
|
{
|
|
|
|
GstDiscoverer *res;
|
|
|
|
|
|
|
|
res = g_object_new (GST_TYPE_DISCOVERER, "timeout", timeout, NULL);
|
|
|
|
if (res->priv->uridecodebin == NULL) {
|
|
|
|
if (err)
|
|
|
|
*err = g_error_new (GST_CORE_ERROR, GST_CORE_ERROR_MISSING_PLUGIN,
|
|
|
|
"Couldn't create 'uridecodebin' element");
|
|
|
|
gst_object_unref (res);
|
|
|
|
res = NULL;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|