2009-08-04 15:13:11 +00:00
|
|
|
/* GStreamer Editing Services
|
2009-11-30 14:14:25 +00:00
|
|
|
* Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
|
|
|
|
* 2009 Nokia Corporation
|
2009-08-04 15:13:11 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2009-09-10 16:40:51 +00:00
|
|
|
/**
|
|
|
|
* SECTION:ges-timeline
|
|
|
|
* @short_description: Multimedia timeline
|
|
|
|
*
|
|
|
|
* #GESTimeline is the central object for any multimedia timeline.
|
2011-01-08 10:22:36 +00:00
|
|
|
*
|
2009-09-10 16:40:51 +00:00
|
|
|
* Contains a list of #GESTimelineLayer which users should use to arrange the
|
|
|
|
* various timeline objects through time.
|
|
|
|
*
|
2010-05-31 16:59:12 +00:00
|
|
|
* The output type is determined by the #GESTrack that are set on
|
2009-09-10 16:40:51 +00:00
|
|
|
* the #GESTimeline.
|
2010-11-26 17:38:49 +00:00
|
|
|
*
|
|
|
|
* To save/load a timeline, you can use the ges_timeline_load_from_uri() and
|
|
|
|
* ges_timeline_save_to_uri() methods to use the default format. If you wish
|
|
|
|
* to specify the format to save/load the timeline from, please consult the
|
|
|
|
* documentation about #GESFormatter.
|
2009-09-10 16:40:51 +00:00
|
|
|
*/
|
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
#include "gesmarshal.h"
|
2009-08-06 17:51:29 +00:00
|
|
|
#include "ges-internal.h"
|
2009-08-04 15:13:11 +00:00
|
|
|
#include "ges-timeline.h"
|
2009-08-06 15:38:43 +00:00
|
|
|
#include "ges-track.h"
|
|
|
|
#include "ges-timeline-layer.h"
|
|
|
|
#include "ges.h"
|
2009-08-04 15:13:11 +00:00
|
|
|
|
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
G_DEFINE_TYPE (GESTimeline, ges_timeline, GST_TYPE_BIN);
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
struct _GESTimelinePrivate
|
|
|
|
{
|
|
|
|
GList *layers; /* A list of GESTimelineLayer sorted by priority */
|
|
|
|
GList *tracks; /* A list of private track data */
|
|
|
|
|
|
|
|
/* discoverer used for virgin sources */
|
|
|
|
GstDiscoverer *discoverer;
|
|
|
|
/* Objects that are being discovered FIXME : LOCK ! */
|
|
|
|
GList *pendingobjects;
|
|
|
|
/* Whether we are changing state asynchronously or not */
|
|
|
|
gboolean async_pending;
|
|
|
|
};
|
|
|
|
|
2009-09-08 17:44:03 +00:00
|
|
|
/* private structure to contain our track-related information */
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GESTimeline *timeline;
|
|
|
|
GESTrack *track;
|
|
|
|
GstPad *pad; /* Pad from the track */
|
|
|
|
GstPad *ghostpad;
|
|
|
|
} TrackPrivate;
|
2009-08-06 15:38:43 +00:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
TRACK_ADDED,
|
|
|
|
TRACK_REMOVED,
|
|
|
|
LAYER_ADDED,
|
|
|
|
LAYER_REMOVED,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2010-05-19 10:36:11 +00:00
|
|
|
static GstBinClass *parent_class;
|
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
static guint ges_timeline_signals[LAST_SIGNAL] = { 0 };
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2011-01-11 15:35:05 +00:00
|
|
|
static gint custom_find_track (TrackPrivate * tr_priv, GESTrack * track);
|
2010-05-19 10:36:11 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
ges_timeline_change_state (GstElement * element, GstStateChange transition);
|
|
|
|
static void
|
2010-09-23 16:33:27 +00:00
|
|
|
discoverer_finished_cb (GstDiscoverer * discoverer, GESTimeline * timeline);
|
2010-05-19 10:36:11 +00:00
|
|
|
static void
|
|
|
|
discoverer_discovered_cb (GstDiscoverer * discoverer,
|
2010-09-23 16:33:27 +00:00
|
|
|
GstDiscovererInfo * info, GError * err, GESTimeline * timeline);
|
2010-05-19 10:36:11 +00:00
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
static void
|
|
|
|
ges_timeline_get_property (GObject * object, guint property_id,
|
2009-08-04 15:16:31 +00:00
|
|
|
GValue * value, GParamSpec * pspec)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
|
|
|
switch (property_id) {
|
2009-08-04 15:16:31 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-08-04 15:16:31 +00:00
|
|
|
ges_timeline_set_property (GObject * object, guint property_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
|
|
|
switch (property_id) {
|
2009-08-04 15:16:31 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-08-04 15:16:31 +00:00
|
|
|
ges_timeline_dispose (GObject * object)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2011-01-08 10:22:36 +00:00
|
|
|
GESTimelinePrivate *priv = GES_TIMELINE (object)->priv;
|
2010-05-19 10:36:11 +00:00
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
if (priv->discoverer) {
|
|
|
|
gst_discoverer_stop (priv->discoverer);
|
|
|
|
g_object_unref (priv->discoverer);
|
|
|
|
priv->discoverer = NULL;
|
2010-05-19 10:36:11 +00:00
|
|
|
}
|
2010-06-09 11:52:35 +00:00
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
while (priv->layers) {
|
|
|
|
GESTimelineLayer *layer = (GESTimelineLayer *) priv->layers->data;
|
|
|
|
ges_timeline_remove_layer (GES_TIMELINE (object), layer);
|
2010-06-09 11:52:35 +00:00
|
|
|
}
|
|
|
|
|
2010-09-23 13:47:48 +00:00
|
|
|
/* FIXME: it should be possible to remove tracks before removing
|
|
|
|
* layers, but at the moment this creates a problem because the track
|
|
|
|
* objects aren't notified that their gnlobjects have been destroyed.
|
|
|
|
*/
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
while (priv->tracks) {
|
|
|
|
TrackPrivate *tr_priv = (TrackPrivate *) priv->tracks->data;
|
|
|
|
ges_timeline_remove_track (GES_TIMELINE (object), tr_priv->track);
|
2010-09-23 13:47:48 +00:00
|
|
|
}
|
|
|
|
|
2009-08-04 15:13:11 +00:00
|
|
|
G_OBJECT_CLASS (ges_timeline_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-08-04 15:16:31 +00:00
|
|
|
ges_timeline_finalize (GObject * object)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (ges_timeline_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-08-04 15:16:31 +00:00
|
|
|
ges_timeline_class_init (GESTimelineClass * klass)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2010-05-19 10:36:11 +00:00
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GESTimelinePrivate));
|
|
|
|
|
2010-05-19 10:36:11 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
|
|
|
element_class->change_state = ges_timeline_change_state;
|
2009-08-04 15:13:11 +00:00
|
|
|
|
|
|
|
object_class->get_property = ges_timeline_get_property;
|
|
|
|
object_class->set_property = ges_timeline_set_property;
|
|
|
|
object_class->dispose = ges_timeline_dispose;
|
|
|
|
object_class->finalize = ges_timeline_finalize;
|
2009-08-06 15:38:43 +00:00
|
|
|
|
2009-09-16 10:37:45 +00:00
|
|
|
/**
|
|
|
|
* GESTimeline::track-added
|
|
|
|
* @timeline: the #GESTimeline
|
|
|
|
* @track: the #GESTrack that was added to the timeline
|
|
|
|
*
|
|
|
|
* Will be emitted after the track was added to the timeline.
|
|
|
|
*/
|
2009-08-06 15:38:43 +00:00
|
|
|
ges_timeline_signals[TRACK_ADDED] =
|
|
|
|
g_signal_new ("track-added", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GESTimelineClass, track_added), NULL,
|
|
|
|
NULL, ges_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GES_TYPE_TRACK);
|
|
|
|
|
2009-09-16 10:37:45 +00:00
|
|
|
/**
|
|
|
|
* GESTimeline::track-removed
|
|
|
|
* @timeline: the #GESTimeline
|
|
|
|
* @track: the #GESTrack that was removed from the timeline
|
|
|
|
*
|
|
|
|
* Will be emitted after the track was removed from the timeline.
|
|
|
|
*/
|
2009-08-06 15:38:43 +00:00
|
|
|
ges_timeline_signals[TRACK_REMOVED] =
|
|
|
|
g_signal_new ("track-removed", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GESTimelineClass, track_removed),
|
|
|
|
NULL, NULL, ges_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GES_TYPE_TRACK);
|
|
|
|
|
2009-09-16 10:37:45 +00:00
|
|
|
/**
|
|
|
|
* GESTimeline::layer-added
|
|
|
|
* @timeline: the #GESTimeline
|
|
|
|
* @layer: the #GESTimelineLayer that was added to the timeline
|
|
|
|
*
|
|
|
|
* Will be emitted after the layer was added to the timeline.
|
|
|
|
*/
|
2009-08-06 15:38:43 +00:00
|
|
|
ges_timeline_signals[LAYER_ADDED] =
|
|
|
|
g_signal_new ("layer-added", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GESTimelineClass, layer_added), NULL,
|
|
|
|
NULL, ges_marshal_VOID__OBJECT, G_TYPE_NONE, 1, GES_TYPE_TIMELINE_LAYER);
|
|
|
|
|
2009-09-16 10:37:45 +00:00
|
|
|
/**
|
|
|
|
* GESTimeline::layer-removed
|
|
|
|
* @timeline: the #GESTimeline
|
|
|
|
* @layer: the #GESTimelineLayer that was removed from the timeline
|
|
|
|
*
|
|
|
|
* Will be emitted after the layer was removed from the timeline.
|
|
|
|
*/
|
2009-08-06 15:38:43 +00:00
|
|
|
ges_timeline_signals[LAYER_REMOVED] =
|
|
|
|
g_signal_new ("layer-removed", G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GESTimelineClass, layer_removed),
|
|
|
|
NULL, NULL, ges_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
|
|
|
|
GES_TYPE_TIMELINE_LAYER);
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-08-04 15:16:31 +00:00
|
|
|
ges_timeline_init (GESTimeline * self)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2011-01-08 10:22:36 +00:00
|
|
|
|
|
|
|
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
|
|
|
|
GES_TYPE_TIMELINE, GESTimelinePrivate);
|
|
|
|
|
|
|
|
self->priv->layers = NULL;
|
|
|
|
self->priv->tracks = NULL;
|
2010-05-19 10:36:11 +00:00
|
|
|
|
|
|
|
/* New discoverer with a 15s timeout */
|
2011-01-08 10:22:36 +00:00
|
|
|
self->priv->discoverer = gst_discoverer_new (15 * GST_SECOND, NULL);
|
|
|
|
g_signal_connect (self->priv->discoverer, "finished",
|
2010-09-23 16:33:27 +00:00
|
|
|
G_CALLBACK (discoverer_finished_cb), self);
|
2011-01-08 10:22:36 +00:00
|
|
|
g_signal_connect (self->priv->discoverer, "discovered",
|
2010-05-19 10:36:11 +00:00
|
|
|
G_CALLBACK (discoverer_discovered_cb), self);
|
2011-01-08 10:22:36 +00:00
|
|
|
gst_discoverer_start (self->priv->discoverer);
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 10:37:45 +00:00
|
|
|
/**
|
|
|
|
* ges_timeline_new:
|
|
|
|
*
|
|
|
|
* Creates a new empty #GESTimeline.
|
|
|
|
*
|
|
|
|
* Returns: The new timeline.
|
|
|
|
*/
|
|
|
|
|
2009-08-04 15:16:31 +00:00
|
|
|
GESTimeline *
|
2009-08-04 15:13:11 +00:00
|
|
|
ges_timeline_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (GES_TYPE_TIMELINE, NULL);
|
|
|
|
}
|
|
|
|
|
2010-09-29 11:43:47 +00:00
|
|
|
/**
|
|
|
|
* ges_timeline_new_from_uri:
|
|
|
|
* @uri: the URI to load from
|
|
|
|
*
|
|
|
|
* Creates a timeline from the given URI.
|
|
|
|
*
|
|
|
|
* Returns: A new timeline if the uri was loaded successfully, or NULL if the
|
2011-01-08 10:22:36 +00:00
|
|
|
* uri could not be loaded
|
2010-09-29 11:43:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
GESTimeline *
|
2011-02-16 15:21:48 +00:00
|
|
|
ges_timeline_new_from_uri (const gchar * uri)
|
2010-09-29 11:43:47 +00:00
|
|
|
{
|
|
|
|
GESTimeline *ret;
|
|
|
|
|
2010-11-26 17:38:49 +00:00
|
|
|
/* FIXME : we should have a GError** argument so the user can know why
|
2011-01-08 10:22:36 +00:00
|
|
|
* it wasn't able to load the uri
|
2010-11-26 17:38:49 +00:00
|
|
|
*/
|
|
|
|
|
2010-09-29 11:43:47 +00:00
|
|
|
ret = ges_timeline_new ();
|
|
|
|
|
|
|
|
if (!ges_timeline_load_from_uri (ret, uri)) {
|
|
|
|
g_object_unref (ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-16 10:37:45 +00:00
|
|
|
/**
|
|
|
|
* ges_timeline_load_from_uri:
|
2010-09-29 11:43:47 +00:00
|
|
|
* @timeline: an empty #GESTimeline into which to load the formatter
|
2009-09-16 10:37:45 +00:00
|
|
|
* @uri: The URI to load from
|
|
|
|
*
|
2010-09-29 11:43:47 +00:00
|
|
|
* Loads the contents of URI into the given timeline.
|
2009-09-16 10:37:45 +00:00
|
|
|
*
|
2010-09-29 11:43:47 +00:00
|
|
|
* Returns: TRUE if the timeline was loaded successfully, or FALSE if the uri
|
|
|
|
* could not be loaded.
|
2009-09-16 10:37:45 +00:00
|
|
|
*/
|
|
|
|
|
2010-09-29 11:43:47 +00:00
|
|
|
gboolean
|
2011-02-16 15:21:48 +00:00
|
|
|
ges_timeline_load_from_uri (GESTimeline * timeline, const gchar * uri)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2010-09-29 11:43:47 +00:00
|
|
|
GESFormatter *p = NULL;
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
2010-11-26 17:38:49 +00:00
|
|
|
/* FIXME : we should have a GError** argument so the user can know why
|
2011-01-08 10:22:36 +00:00
|
|
|
* it wasn't able to load the uri
|
2010-11-26 17:38:49 +00:00
|
|
|
*/
|
|
|
|
|
2010-09-29 11:43:47 +00:00
|
|
|
if (!(p = ges_formatter_new_for_uri (uri))) {
|
|
|
|
GST_ERROR ("unsupported uri '%s'", uri);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ges_formatter_load_from_uri (p, timeline, uri)) {
|
|
|
|
GST_ERROR ("error deserializing formatter");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (p)
|
|
|
|
g_object_unref (p);
|
|
|
|
return ret;
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 10:37:45 +00:00
|
|
|
/**
|
2010-09-29 11:43:47 +00:00
|
|
|
* ges_timeline_save_to_uri:
|
2009-09-16 10:37:45 +00:00
|
|
|
* @timeline: a #GESTimeline
|
|
|
|
* @uri: The location to save to
|
|
|
|
*
|
|
|
|
* Saves the timeline to the given location
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the timeline was successfully saved to the given location,
|
|
|
|
* else FALSE.
|
|
|
|
*/
|
|
|
|
|
2009-08-04 15:13:11 +00:00
|
|
|
gboolean
|
2011-02-16 15:21:48 +00:00
|
|
|
ges_timeline_save_to_uri (GESTimeline * timeline, const gchar * uri)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2010-09-29 11:43:47 +00:00
|
|
|
GESFormatter *p = NULL;
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
2010-11-26 17:38:49 +00:00
|
|
|
/* FIXME : How will the user be able to chose the format he
|
|
|
|
* wishes to store to ? */
|
|
|
|
|
|
|
|
/* FIXME : How will we ensure a timeline loaded with a certain format
|
|
|
|
* will be saved with the same one by default ? We need to make this
|
|
|
|
* easy from an API perspective */
|
|
|
|
|
|
|
|
/* FIXME : we should have a GError** argument so the user can know why
|
|
|
|
* it wasn't able to save
|
|
|
|
*/
|
|
|
|
|
2010-09-29 11:43:47 +00:00
|
|
|
if (!(p = ges_formatter_new_for_uri (uri))) {
|
|
|
|
GST_ERROR ("unsupported uri '%s'", uri);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ges_formatter_save_to_uri (p, timeline, uri)) {
|
|
|
|
GST_ERROR ("error serializing formatter");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (p)
|
|
|
|
g_object_unref (p);
|
|
|
|
return ret;
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
2010-10-20 17:00:24 +00:00
|
|
|
static void
|
|
|
|
add_object_to_track (GESTimelineObject * object, GESTrack * track)
|
|
|
|
{
|
|
|
|
if (!ges_timeline_object_create_track_objects (object, track)) {
|
|
|
|
GST_WARNING ("error creating track objects");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
static void
|
2010-05-19 10:36:11 +00:00
|
|
|
add_object_to_tracks (GESTimeline * timeline, GESTimelineObject * object)
|
2009-08-06 15:38:43 +00:00
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
for (tmp = timeline->priv->tracks; tmp; tmp = g_list_next (tmp)) {
|
|
|
|
TrackPrivate *tr_priv = (TrackPrivate *) tmp->data;
|
|
|
|
GESTrack *track = tr_priv->track;
|
2009-08-06 15:38:43 +00:00
|
|
|
|
|
|
|
GST_LOG ("Trying with track %p", track);
|
2010-10-20 17:00:24 +00:00
|
|
|
add_object_to_track (object, track);
|
2009-08-06 15:38:43 +00:00
|
|
|
}
|
2010-05-19 10:36:11 +00:00
|
|
|
}
|
|
|
|
|
2010-10-20 17:00:24 +00:00
|
|
|
|
2010-05-19 10:36:11 +00:00
|
|
|
static void
|
|
|
|
do_async_start (GESTimeline * timeline)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
2010-05-25 14:22:58 +00:00
|
|
|
GList *tmp;
|
2010-05-19 10:36:11 +00:00
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
timeline->priv->async_pending = TRUE;
|
2010-05-19 10:36:11 +00:00
|
|
|
|
2010-05-25 14:22:58 +00:00
|
|
|
/* Freeze state of tracks */
|
2011-01-08 10:22:36 +00:00
|
|
|
for (tmp = timeline->priv->tracks; tmp; tmp = tmp->next) {
|
|
|
|
TrackPrivate *tr_priv = (TrackPrivate *) tmp->data;
|
|
|
|
gst_element_set_locked_state ((GstElement *) tr_priv->track, TRUE);
|
2010-05-25 14:22:58 +00:00
|
|
|
}
|
|
|
|
|
2010-05-19 10:36:11 +00:00
|
|
|
message = gst_message_new_async_start (GST_OBJECT_CAST (timeline), FALSE);
|
|
|
|
parent_class->handle_message (GST_BIN_CAST (timeline), message);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_async_done (GESTimeline * timeline)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
if (timeline->priv->async_pending) {
|
2010-05-25 14:22:58 +00:00
|
|
|
GList *tmp;
|
|
|
|
/* Unfreeze state of tracks */
|
2011-01-08 10:22:36 +00:00
|
|
|
for (tmp = timeline->priv->tracks; tmp; tmp = tmp->next) {
|
|
|
|
TrackPrivate *tr_priv = (TrackPrivate *) tmp->data;
|
|
|
|
gst_element_set_locked_state ((GstElement *) tr_priv->track, FALSE);
|
|
|
|
gst_element_sync_state_with_parent ((GstElement *) tr_priv->track);
|
2010-05-25 14:22:58 +00:00
|
|
|
}
|
|
|
|
|
2010-05-19 10:36:11 +00:00
|
|
|
GST_DEBUG_OBJECT (timeline, "Emitting async-done");
|
|
|
|
message = gst_message_new_async_done (GST_OBJECT_CAST (timeline));
|
|
|
|
parent_class->handle_message (GST_BIN_CAST (timeline), message);
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
timeline->priv->async_pending = FALSE;
|
2010-05-19 10:36:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-09-23 16:33:27 +00:00
|
|
|
discoverer_finished_cb (GstDiscoverer * discoverer, GESTimeline * timeline)
|
2010-05-19 10:36:11 +00:00
|
|
|
{
|
|
|
|
do_async_done (timeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
discoverer_discovered_cb (GstDiscoverer * discoverer,
|
2010-09-23 16:33:27 +00:00
|
|
|
GstDiscovererInfo * info, GError * err, GESTimeline * timeline)
|
2010-05-19 10:36:11 +00:00
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
gboolean found = FALSE;
|
2010-08-10 14:17:07 +00:00
|
|
|
gboolean is_image = FALSE;
|
2010-05-19 10:36:11 +00:00
|
|
|
GESTimelineFileSource *tfs = NULL;
|
2011-01-08 10:22:36 +00:00
|
|
|
GESTimelinePrivate *priv = timeline->priv;
|
2010-09-23 16:33:27 +00:00
|
|
|
const gchar *uri = gst_discoverer_info_get_uri (info);
|
2010-05-19 10:36:11 +00:00
|
|
|
|
2010-09-23 16:33:27 +00:00
|
|
|
GST_DEBUG ("Discovered uri %s", uri);
|
2010-05-19 10:36:11 +00:00
|
|
|
|
|
|
|
/* Find corresponding TimelineFileSource in the sources */
|
2011-01-08 10:22:36 +00:00
|
|
|
for (tmp = priv->pendingobjects; tmp; tmp = tmp->next) {
|
2010-05-19 10:36:11 +00:00
|
|
|
tfs = (GESTimelineFileSource *) tmp->data;
|
|
|
|
|
2011-01-08 14:25:22 +00:00
|
|
|
if (!g_strcmp0 (ges_timeline_filesource_get_uri (tfs), uri)) {
|
2010-05-19 10:36:11 +00:00
|
|
|
found = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found) {
|
2010-09-23 16:33:27 +00:00
|
|
|
GList *stream_list;
|
2011-01-08 14:25:22 +00:00
|
|
|
GESTrackType tfs_supportedformats;
|
2010-09-23 16:33:27 +00:00
|
|
|
|
2010-05-19 10:36:11 +00:00
|
|
|
/* Remove object from list */
|
2011-01-08 10:22:36 +00:00
|
|
|
priv->pendingobjects = g_list_delete_link (priv->pendingobjects, tmp);
|
2010-05-19 10:36:11 +00:00
|
|
|
|
|
|
|
/* FIXME : Handle errors in discovery */
|
2010-09-23 16:33:27 +00:00
|
|
|
stream_list = gst_discoverer_info_get_stream_list (info);
|
2010-05-19 10:36:11 +00:00
|
|
|
|
|
|
|
/* Update timelinefilesource properties based on info */
|
2010-09-23 16:33:27 +00:00
|
|
|
for (tmp = stream_list; tmp; tmp = tmp->next) {
|
|
|
|
GstDiscovererStreamInfo *sinf = (GstDiscovererStreamInfo *) tmp->data;
|
2010-05-19 10:36:11 +00:00
|
|
|
|
2011-01-08 14:25:22 +00:00
|
|
|
tfs_supportedformats =
|
|
|
|
ges_timeline_filesource_get_supported_formats (tfs);
|
|
|
|
|
|
|
|
if (GST_IS_DISCOVERER_AUDIO_INFO (sinf)) {
|
|
|
|
tfs_supportedformats |= GES_TRACK_TYPE_AUDIO;
|
|
|
|
ges_timeline_filesource_set_supported_formats (tfs,
|
|
|
|
tfs_supportedformats);
|
|
|
|
} else if (GST_IS_DISCOVERER_VIDEO_INFO (sinf)) {
|
|
|
|
tfs_supportedformats |= GES_TRACK_TYPE_VIDEO;
|
|
|
|
ges_timeline_filesource_set_supported_formats (tfs,
|
|
|
|
tfs_supportedformats);
|
2010-11-04 11:28:46 +00:00
|
|
|
if (gst_discoverer_video_info_is_image ((GstDiscovererVideoInfo *)
|
|
|
|
sinf)) {
|
2011-01-08 14:25:22 +00:00
|
|
|
tfs_supportedformats |= GES_TRACK_TYPE_AUDIO;
|
|
|
|
ges_timeline_filesource_set_supported_formats (tfs,
|
|
|
|
tfs_supportedformats);
|
2010-09-23 16:33:27 +00:00
|
|
|
is_image = TRUE;
|
|
|
|
}
|
2010-08-09 16:34:35 +00:00
|
|
|
}
|
2010-05-19 10:36:11 +00:00
|
|
|
}
|
|
|
|
|
2010-09-23 16:33:27 +00:00
|
|
|
if (stream_list)
|
|
|
|
gst_discoverer_stream_info_list_free (stream_list);
|
|
|
|
|
2010-08-10 14:17:07 +00:00
|
|
|
if (is_image) {
|
|
|
|
/* don't set max-duration on still images */
|
|
|
|
g_object_set (tfs, "is_image", (gboolean) TRUE, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2010-09-23 16:33:27 +00:00
|
|
|
g_object_set (tfs, "max-duration",
|
|
|
|
gst_discoverer_info_get_duration (info), NULL);
|
2010-08-10 14:17:07 +00:00
|
|
|
}
|
2010-05-19 10:36:11 +00:00
|
|
|
|
|
|
|
/* Continue the processing on tfs */
|
|
|
|
add_object_to_tracks (timeline, GES_TIMELINE_OBJECT (tfs));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstStateChangeReturn
|
|
|
|
ges_timeline_change_state (GstElement * element, GstStateChange transition)
|
|
|
|
{
|
|
|
|
GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
|
|
|
|
GESTimeline *timeline = GES_TIMELINE (element);
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
2011-01-08 10:22:36 +00:00
|
|
|
if (timeline->priv->pendingobjects) {
|
2010-05-19 10:36:11 +00:00
|
|
|
do_async_start (timeline);
|
|
|
|
ret = GST_STATE_CHANGE_ASYNC;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
GstStateChangeReturn bret;
|
|
|
|
|
|
|
|
bret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
|
|
if (G_UNLIKELY (bret == GST_STATE_CHANGE_NO_PREROLL)) {
|
|
|
|
do_async_done (timeline);
|
|
|
|
ret = bret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
|
|
|
do_async_done (timeline);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
layer_object_added_cb (GESTimelineLayer * layer, GESTimelineObject * object,
|
|
|
|
GESTimeline * timeline)
|
|
|
|
{
|
|
|
|
GST_DEBUG ("New TimelineObject %p added to layer %p", object, layer);
|
|
|
|
|
|
|
|
if (GES_IS_TIMELINE_FILE_SOURCE (object)) {
|
|
|
|
GESTimelineFileSource *tfs = GES_TIMELINE_FILE_SOURCE (object);
|
2011-01-08 14:25:22 +00:00
|
|
|
GESTrackType tfs_supportedformats =
|
|
|
|
ges_timeline_filesource_get_supported_formats (tfs);
|
|
|
|
guint64 tfs_maxdur = ges_timeline_filesource_get_max_duration (tfs);
|
|
|
|
const gchar *tfs_uri;
|
2010-05-19 10:36:11 +00:00
|
|
|
|
|
|
|
/* Send the filesource to the discoverer if:
|
|
|
|
* * it doesn't have specified supported formats
|
|
|
|
* * OR it doesn't have a specified max-duration
|
|
|
|
* * OR it doesn't have a valid duration */
|
|
|
|
|
2011-01-08 14:25:22 +00:00
|
|
|
if (tfs_supportedformats == GES_TRACK_TYPE_UNKNOWN ||
|
|
|
|
tfs_maxdur == GST_CLOCK_TIME_NONE || object->duration == 0) {
|
2010-05-19 10:36:11 +00:00
|
|
|
GST_LOG ("Incomplete TimelineFileSource, discovering it");
|
2011-01-08 14:25:22 +00:00
|
|
|
tfs_uri = ges_timeline_filesource_get_uri (tfs);
|
2011-01-08 10:22:36 +00:00
|
|
|
timeline->priv->pendingobjects =
|
|
|
|
g_list_append (timeline->priv->pendingobjects, object);
|
2011-01-08 14:25:22 +00:00
|
|
|
gst_discoverer_discover_uri_async (timeline->priv->discoverer, tfs_uri);
|
2010-05-19 10:36:11 +00:00
|
|
|
} else
|
|
|
|
add_object_to_tracks (timeline, object);
|
|
|
|
} else {
|
|
|
|
add_object_to_tracks (timeline, object);
|
|
|
|
}
|
2009-08-06 15:38:43 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("done");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
layer_object_removed_cb (GESTimelineLayer * layer, GESTimelineObject * object,
|
|
|
|
GESTimeline * timeline)
|
|
|
|
{
|
2010-12-16 11:46:48 +00:00
|
|
|
GList *tmp, *trackobjects;
|
2009-08-07 14:41:23 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("TimelineObject %p removed from layer %p", object, layer);
|
|
|
|
|
|
|
|
/* Go over the object's track objects and figure out which one belongs to
|
|
|
|
* the list of tracks we control */
|
|
|
|
|
2010-11-28 12:24:07 +00:00
|
|
|
trackobjects = ges_timeline_object_get_track_objects (object);
|
|
|
|
for (tmp = trackobjects; tmp; tmp = tmp->next) {
|
2009-08-07 14:41:23 +00:00
|
|
|
GESTrackObject *trobj = (GESTrackObject *) tmp->data;
|
|
|
|
|
|
|
|
GST_DEBUG ("Trying to remove TrackObject %p", trobj);
|
2011-01-08 10:22:36 +00:00
|
|
|
if (G_LIKELY (g_list_find_custom (timeline->priv->tracks,
|
2010-12-16 14:00:46 +00:00
|
|
|
ges_track_object_get_track (trobj),
|
2009-09-08 17:44:03 +00:00
|
|
|
(GCompareFunc) custom_find_track))) {
|
2009-08-07 14:41:23 +00:00
|
|
|
GST_DEBUG ("Belongs to one of the tracks we control");
|
2010-12-16 14:00:46 +00:00
|
|
|
ges_track_remove_object (ges_track_object_get_track (trobj), trobj);
|
2009-08-07 14:41:23 +00:00
|
|
|
|
|
|
|
ges_timeline_object_release_track_object (object, trobj);
|
|
|
|
}
|
2010-11-28 12:24:07 +00:00
|
|
|
|
2010-12-20 11:02:40 +00:00
|
|
|
/* removing the reference added by _get_track_objects() */
|
|
|
|
g_object_unref (trobj);
|
2009-08-07 14:41:23 +00:00
|
|
|
}
|
2010-11-28 12:24:07 +00:00
|
|
|
g_list_free (trackobjects);
|
2009-08-07 14:41:23 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("Done");
|
2009-08-06 15:38:43 +00:00
|
|
|
}
|
|
|
|
|
2009-09-14 17:24:28 +00:00
|
|
|
/**
|
|
|
|
* ges_timeline_add_layer:
|
|
|
|
* @timeline: a #GESTimeline
|
|
|
|
* @layer: the #GESTimelineLayer to add
|
|
|
|
*
|
|
|
|
* Add the layer to the timeline. The reference to the @layer will be stolen
|
|
|
|
* by the @timeline.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the layer was properly added, else FALSE.
|
|
|
|
*/
|
2009-08-04 15:13:11 +00:00
|
|
|
gboolean
|
2009-08-04 15:16:31 +00:00
|
|
|
ges_timeline_add_layer (GESTimeline * timeline, GESTimelineLayer * layer)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2010-10-19 15:39:43 +00:00
|
|
|
GList *objects, *tmp;
|
2011-01-08 10:22:36 +00:00
|
|
|
GESTimelinePrivate *priv = timeline->priv;
|
2010-10-19 15:39:43 +00:00
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
GST_DEBUG ("timeline:%p, layer:%p", timeline, layer);
|
|
|
|
|
|
|
|
/* We can only add a layer that doesn't already belong to another timeline */
|
|
|
|
if (G_UNLIKELY (layer->timeline)) {
|
|
|
|
GST_WARNING ("Layer belongs to another timeline, can't add it");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-08-04 15:13:11 +00:00
|
|
|
|
|
|
|
/* Add to the list of layers, make sure we don't already control it */
|
2011-01-08 10:22:36 +00:00
|
|
|
if (G_UNLIKELY (g_list_find (priv->layers, (gconstpointer) layer))) {
|
2009-08-06 15:38:43 +00:00
|
|
|
GST_WARNING ("Layer is already controlled by this timeline");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2010-12-20 11:00:06 +00:00
|
|
|
g_object_ref_sink (layer);
|
2011-01-08 10:22:36 +00:00
|
|
|
priv->layers = g_list_append (priv->layers, layer);
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
/* Inform the layer that it belongs to a new timeline */
|
|
|
|
ges_timeline_layer_set_timeline (layer, timeline);
|
|
|
|
|
|
|
|
/* Connect to 'object-added'/'object-removed' signal from the new layer */
|
|
|
|
g_signal_connect (layer, "object-added", G_CALLBACK (layer_object_added_cb),
|
|
|
|
timeline);
|
|
|
|
g_signal_connect (layer, "object-removed",
|
|
|
|
G_CALLBACK (layer_object_removed_cb), timeline);
|
|
|
|
|
|
|
|
GST_DEBUG ("Done adding layer, emitting 'layer-added' signal");
|
|
|
|
g_signal_emit (timeline, ges_timeline_signals[LAYER_ADDED], 0, layer);
|
|
|
|
|
2010-10-19 15:39:43 +00:00
|
|
|
/* add any existing timeline objects to the timeline */
|
|
|
|
objects = ges_timeline_layer_get_objects (layer);
|
|
|
|
for (tmp = objects; tmp; tmp = tmp->next) {
|
|
|
|
layer_object_added_cb (layer, tmp->data, timeline);
|
|
|
|
g_object_unref (tmp->data);
|
|
|
|
tmp->data = NULL;
|
|
|
|
}
|
|
|
|
g_list_free (objects);
|
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
return TRUE;
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 10:37:45 +00:00
|
|
|
/**
|
|
|
|
* ges_timeline_remove_layer:
|
|
|
|
* @timeline: a #GESTimeline
|
|
|
|
* @layer: the #GESTimelineLayer to remove
|
|
|
|
*
|
|
|
|
* Removes the layer from the timeline. The reference that the @timeline holds on
|
|
|
|
* the layer will be dropped. If you wish to use the @layer after calling this
|
|
|
|
* method, you need to take a reference before calling.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the layer was properly removed, else FALSE.
|
|
|
|
*/
|
|
|
|
|
2009-08-04 15:13:11 +00:00
|
|
|
gboolean
|
2009-08-04 15:16:31 +00:00
|
|
|
ges_timeline_remove_layer (GESTimeline * timeline, GESTimelineLayer * layer)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2010-10-07 11:29:05 +00:00
|
|
|
GList *layer_objects, *tmp;
|
2011-01-08 10:22:36 +00:00
|
|
|
GESTimelinePrivate *priv = timeline->priv;
|
2010-10-07 11:29:05 +00:00
|
|
|
|
2009-08-07 14:41:23 +00:00
|
|
|
GST_DEBUG ("timeline:%p, layer:%p", timeline, layer);
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
if (G_UNLIKELY (!g_list_find (priv->layers, layer))) {
|
2009-08-07 14:41:23 +00:00
|
|
|
GST_WARNING ("Layer doesn't belong to this timeline");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-10-07 11:29:05 +00:00
|
|
|
/* remove objects from any private data structures */
|
|
|
|
|
|
|
|
layer_objects = ges_timeline_layer_get_objects (layer);
|
|
|
|
for (tmp = layer_objects; tmp; tmp = tmp->next) {
|
|
|
|
layer_object_removed_cb (layer, GES_TIMELINE_OBJECT (tmp->data), timeline);
|
|
|
|
g_object_unref (G_OBJECT (tmp->data));
|
|
|
|
tmp->data = NULL;
|
|
|
|
}
|
|
|
|
g_list_free (layer_objects);
|
|
|
|
|
2009-08-07 14:41:23 +00:00
|
|
|
/* Disconnect signals */
|
|
|
|
GST_DEBUG ("Disconnecting signal callbacks");
|
|
|
|
g_signal_handlers_disconnect_by_func (layer, layer_object_added_cb, timeline);
|
|
|
|
g_signal_handlers_disconnect_by_func (layer, layer_object_removed_cb,
|
|
|
|
timeline);
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
priv->layers = g_list_remove (priv->layers, layer);
|
2009-08-07 14:41:23 +00:00
|
|
|
|
|
|
|
ges_timeline_layer_set_timeline (layer, NULL);
|
|
|
|
|
|
|
|
g_signal_emit (timeline, ges_timeline_signals[LAYER_REMOVED], 0, layer);
|
|
|
|
|
|
|
|
g_object_unref (layer);
|
|
|
|
|
|
|
|
return TRUE;
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
2009-09-08 17:44:03 +00:00
|
|
|
static void
|
2011-01-08 10:22:36 +00:00
|
|
|
pad_added_cb (GESTrack * track, GstPad * pad, TrackPrivate * tr_priv)
|
2009-09-08 17:44:03 +00:00
|
|
|
{
|
2009-09-09 13:51:52 +00:00
|
|
|
gchar *padname;
|
|
|
|
|
2010-10-20 17:00:24 +00:00
|
|
|
|
2009-09-08 17:44:03 +00:00
|
|
|
GST_DEBUG ("track:%p, pad:%s:%s", track, GST_DEBUG_PAD_NAME (pad));
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
if (G_UNLIKELY (tr_priv->pad)) {
|
2009-09-08 17:44:03 +00:00
|
|
|
GST_WARNING ("We are already controlling a pad for this track");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remember the pad */
|
2011-01-08 10:22:36 +00:00
|
|
|
tr_priv->pad = pad;
|
2009-09-08 17:44:03 +00:00
|
|
|
|
|
|
|
/* ghost it ! */
|
|
|
|
GST_DEBUG ("Ghosting pad and adding it to ourself");
|
2009-09-09 13:51:52 +00:00
|
|
|
padname = g_strdup_printf ("track_%p_src", track);
|
2011-01-08 10:22:36 +00:00
|
|
|
tr_priv->ghostpad = gst_ghost_pad_new (padname, pad);
|
2009-09-09 13:51:52 +00:00
|
|
|
g_free (padname);
|
2011-01-08 10:22:36 +00:00
|
|
|
gst_pad_set_active (tr_priv->ghostpad, TRUE);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (tr_priv->timeline), tr_priv->ghostpad);
|
2009-09-08 17:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-01-08 10:22:36 +00:00
|
|
|
pad_removed_cb (GESTrack * track, GstPad * pad, TrackPrivate * tr_priv)
|
2009-09-08 17:44:03 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG ("track:%p, pad:%s:%s", track, GST_DEBUG_PAD_NAME (pad));
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
if (G_UNLIKELY (tr_priv->pad != pad)) {
|
2009-09-08 17:44:03 +00:00
|
|
|
GST_WARNING ("Not the pad we're controlling");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
if (G_UNLIKELY (tr_priv->ghostpad == NULL)) {
|
2009-09-08 17:44:03 +00:00
|
|
|
GST_WARNING ("We don't have a ghostpad for this pad !");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG ("Removing ghostpad");
|
2011-01-08 10:22:36 +00:00
|
|
|
gst_pad_set_active (tr_priv->ghostpad, FALSE);
|
|
|
|
gst_element_remove_pad (GST_ELEMENT (tr_priv->timeline), tr_priv->ghostpad);
|
|
|
|
tr_priv->ghostpad = NULL;
|
|
|
|
tr_priv->pad = NULL;
|
2009-09-08 17:44:03 +00:00
|
|
|
}
|
|
|
|
|
2011-01-11 15:35:05 +00:00
|
|
|
static gint
|
2011-01-08 10:22:36 +00:00
|
|
|
custom_find_track (TrackPrivate * tr_priv, GESTrack * track)
|
2009-09-08 17:44:03 +00:00
|
|
|
{
|
2011-01-08 10:22:36 +00:00
|
|
|
if (tr_priv->track == track)
|
2009-09-08 17:44:03 +00:00
|
|
|
return 0;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-09-14 17:24:28 +00:00
|
|
|
/**
|
|
|
|
* ges_timeline_add_track:
|
|
|
|
* @timeline: a #GESTimeline
|
|
|
|
* @track: the #GESTrack to add
|
|
|
|
*
|
|
|
|
* Add a track to the timeline. The reference to the track will be stolen by the
|
|
|
|
* pipeline.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the track was properly added, else FALSE.
|
|
|
|
*/
|
|
|
|
|
2010-10-19 12:35:58 +00:00
|
|
|
/* FIXME: create track objects for timeline objects which have already been
|
|
|
|
* added to existing layers.
|
|
|
|
*/
|
|
|
|
|
2009-08-04 15:13:11 +00:00
|
|
|
gboolean
|
2009-08-04 15:16:31 +00:00
|
|
|
ges_timeline_add_track (GESTimeline * timeline, GESTrack * track)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2011-01-08 10:22:36 +00:00
|
|
|
TrackPrivate *tr_priv;
|
|
|
|
GESTimelinePrivate *priv = timeline->priv;
|
2010-10-20 17:00:24 +00:00
|
|
|
GList *tmp;
|
2009-09-08 17:44:03 +00:00
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
GST_DEBUG ("timeline:%p, track:%p", timeline, track);
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2009-08-07 14:41:23 +00:00
|
|
|
/* make sure we don't already control it */
|
2011-01-08 10:22:36 +00:00
|
|
|
if (G_UNLIKELY (g_list_find_custom (priv->tracks, (gconstpointer) track,
|
2010-11-25 13:02:26 +00:00
|
|
|
(GCompareFunc) custom_find_track))) {
|
2009-08-06 15:38:43 +00:00
|
|
|
GST_WARNING ("Track is already controlled by this timeline");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
/* Add the track to ourself (as a GstBin)
|
2009-09-14 17:24:28 +00:00
|
|
|
* Reference is stolen ! */
|
2009-08-06 15:38:43 +00:00
|
|
|
if (G_UNLIKELY (!gst_bin_add (GST_BIN (timeline), GST_ELEMENT (track)))) {
|
|
|
|
GST_WARNING ("Couldn't add track to ourself (GST)");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
tr_priv = g_new0 (TrackPrivate, 1);
|
|
|
|
tr_priv->timeline = timeline;
|
|
|
|
tr_priv->track = track;
|
2009-09-08 17:44:03 +00:00
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
/* Add the track to the list of tracks we track */
|
2011-01-08 10:22:36 +00:00
|
|
|
priv->tracks = g_list_append (priv->tracks, tr_priv);
|
2009-09-08 17:44:03 +00:00
|
|
|
|
|
|
|
/* Listen to pad-added/-removed */
|
2011-01-08 10:22:36 +00:00
|
|
|
g_signal_connect (track, "pad-added", (GCallback) pad_added_cb, tr_priv);
|
|
|
|
g_signal_connect (track, "pad-removed", (GCallback) pad_removed_cb, tr_priv);
|
2009-08-06 15:38:43 +00:00
|
|
|
|
|
|
|
/* Inform the track that it's currently being used by ourself */
|
|
|
|
ges_track_set_timeline (track, timeline);
|
|
|
|
|
|
|
|
GST_DEBUG ("Done adding track, emitting 'track-added' signal");
|
|
|
|
|
|
|
|
/* emit 'track-added' */
|
|
|
|
g_signal_emit (timeline, ges_timeline_signals[TRACK_ADDED], 0, track);
|
|
|
|
|
2010-10-20 17:00:24 +00:00
|
|
|
/* ensure that each existing timeline object has the opportunity to create a
|
|
|
|
* track object for this track*/
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
for (tmp = priv->layers; tmp; tmp = tmp->next) {
|
2010-10-20 17:00:24 +00:00
|
|
|
GList *objects, *obj;
|
|
|
|
objects = ges_timeline_layer_get_objects (tmp->data);
|
|
|
|
|
|
|
|
for (obj = objects; obj; obj = obj->next) {
|
|
|
|
add_object_to_track (obj->data, track);
|
|
|
|
g_object_unref (obj->data);
|
|
|
|
obj->data = NULL;
|
|
|
|
}
|
|
|
|
g_list_free (objects);
|
|
|
|
}
|
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
return TRUE;
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
2009-08-04 15:16:31 +00:00
|
|
|
|
2009-09-14 17:24:28 +00:00
|
|
|
/**
|
|
|
|
* ges_timeline_remove_track:
|
|
|
|
* @timeline: a #GESTimeline
|
|
|
|
* @track: the #GESTrack to remove
|
|
|
|
*
|
|
|
|
* Remove the @track from the @timeline. The reference stolen when adding the
|
|
|
|
* @track will be removed. If you wish to use the @track after calling this
|
|
|
|
* function you must ensure that you have a reference to it.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the @track was properly removed, else FALSE.
|
|
|
|
*/
|
2010-10-19 12:35:58 +00:00
|
|
|
|
|
|
|
/* FIXME: release any track objects associated with this layer. currenly this
|
|
|
|
* will not happen if you remove the track before removing *all*
|
|
|
|
* timelineobjects which have a track object in this track.
|
|
|
|
*/
|
|
|
|
|
2009-08-04 15:13:11 +00:00
|
|
|
gboolean
|
2009-08-04 15:16:31 +00:00
|
|
|
ges_timeline_remove_track (GESTimeline * timeline, GESTrack * track)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2009-09-08 17:44:03 +00:00
|
|
|
GList *tmp;
|
2011-01-08 10:22:36 +00:00
|
|
|
TrackPrivate *tr_priv;
|
|
|
|
GESTimelinePrivate *priv = timeline->priv;
|
2009-09-08 17:44:03 +00:00
|
|
|
|
2009-08-07 14:41:23 +00:00
|
|
|
GST_DEBUG ("timeline:%p, track:%p", timeline, track);
|
|
|
|
|
2009-09-08 17:44:03 +00:00
|
|
|
if (G_UNLIKELY (!(tmp =
|
2011-01-08 10:22:36 +00:00
|
|
|
g_list_find_custom (priv->tracks, (gconstpointer) track,
|
2009-09-08 17:44:03 +00:00
|
|
|
(GCompareFunc) custom_find_track)))) {
|
2009-08-07 14:41:23 +00:00
|
|
|
GST_WARNING ("Track doesn't belong to this timeline");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
tr_priv = tmp->data;
|
|
|
|
priv->tracks = g_list_remove (priv->tracks, tr_priv);
|
2009-08-07 14:41:23 +00:00
|
|
|
|
|
|
|
ges_track_set_timeline (track, NULL);
|
|
|
|
|
2009-09-08 17:44:03 +00:00
|
|
|
/* Remove ghost pad */
|
2011-01-08 10:22:36 +00:00
|
|
|
if (tr_priv->ghostpad) {
|
2009-09-08 17:44:03 +00:00
|
|
|
GST_DEBUG ("Removing ghostpad");
|
2011-01-08 10:22:36 +00:00
|
|
|
gst_pad_set_active (tr_priv->ghostpad, FALSE);
|
|
|
|
gst_ghost_pad_set_target ((GstGhostPad *) tr_priv->ghostpad, NULL);
|
|
|
|
gst_element_remove_pad (GST_ELEMENT (timeline), tr_priv->ghostpad);
|
2009-09-08 17:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove pad-added/-removed handlers */
|
2011-01-08 10:22:36 +00:00
|
|
|
g_signal_handlers_disconnect_by_func (track, pad_added_cb, tr_priv);
|
|
|
|
g_signal_handlers_disconnect_by_func (track, pad_removed_cb, tr_priv);
|
2009-09-08 17:44:03 +00:00
|
|
|
|
|
|
|
/* Signal track removal to all layers/objects */
|
|
|
|
g_signal_emit (timeline, ges_timeline_signals[TRACK_REMOVED], 0, track);
|
|
|
|
|
2009-08-07 14:41:23 +00:00
|
|
|
/* remove track from our bin */
|
2010-10-22 14:58:22 +00:00
|
|
|
gst_object_ref (track);
|
2009-08-07 14:41:23 +00:00
|
|
|
if (G_UNLIKELY (!gst_bin_remove (GST_BIN (timeline), GST_ELEMENT (track)))) {
|
|
|
|
GST_WARNING ("Couldn't remove track to ourself (GST)");
|
2010-10-22 14:58:22 +00:00
|
|
|
gst_object_unref (track);
|
2009-08-07 14:41:23 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2010-10-22 14:58:22 +00:00
|
|
|
/* set track state to NULL */
|
|
|
|
|
|
|
|
gst_element_set_state (GST_ELEMENT (track), GST_STATE_NULL);
|
|
|
|
|
|
|
|
gst_object_unref (track);
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
g_free (tr_priv);
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2009-08-07 14:41:23 +00:00
|
|
|
return TRUE;
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
2009-09-08 17:44:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_timeline_get_track_for_pad:
|
|
|
|
* @timeline: The #GESTimeline
|
|
|
|
* @pad: The #GstPad
|
|
|
|
*
|
|
|
|
* Search the #GESTrack corresponding to the given @timeline's @pad.
|
|
|
|
*
|
2010-12-15 18:40:11 +00:00
|
|
|
* Returns: (transfer none): The corresponding #GESTrack if it is found,
|
2011-05-09 12:24:26 +00:00
|
|
|
* or %NULL if there is an error.
|
2009-09-08 17:44:03 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
GESTrack *
|
|
|
|
ges_timeline_get_track_for_pad (GESTimeline * timeline, GstPad * pad)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
for (tmp = timeline->priv->tracks; tmp; tmp = g_list_next (tmp)) {
|
|
|
|
TrackPrivate *tr_priv = (TrackPrivate *) tmp->data;
|
|
|
|
if (pad == tr_priv->ghostpad)
|
|
|
|
return tr_priv->track;
|
2009-09-08 17:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-04-20 09:48:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_timeline_get_tracks:
|
|
|
|
* @timeline: a #GESTimeline
|
|
|
|
*
|
|
|
|
* Returns the list of #GESTrack used by the Timeline.
|
|
|
|
*
|
2010-12-15 18:40:11 +00:00
|
|
|
* Returns: (transfer full) (element-type GESTrack): A list of #GESTrack.
|
|
|
|
* The caller should unref each track once he is done with them.
|
2010-12-08 14:36:55 +00:00
|
|
|
*/
|
2010-04-20 09:48:21 +00:00
|
|
|
GList *
|
|
|
|
ges_timeline_get_tracks (GESTimeline * timeline)
|
|
|
|
{
|
|
|
|
GList *tmp, *res = NULL;
|
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
for (tmp = timeline->priv->tracks; tmp; tmp = g_list_next (tmp)) {
|
|
|
|
TrackPrivate *tr_priv = (TrackPrivate *) tmp->data;
|
|
|
|
res = g_list_append (res, g_object_ref (tr_priv->track));
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_timeline_get_layers:
|
|
|
|
* @timeline: a #GESTimeline
|
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the list of #GESTimelineLayer present in the Timeline.
|
|
|
|
*
|
2011-01-10 10:12:38 +00:00
|
|
|
* Returns: (transfer full) (element-type GESTimelineLayer): the list of
|
|
|
|
* #GESTimelineLayer present in the Timeline.
|
2011-01-08 10:22:36 +00:00
|
|
|
* The caller should unref each Layer once he is done with them.
|
|
|
|
*/
|
|
|
|
GList *
|
|
|
|
ges_timeline_get_layers (GESTimeline * timeline)
|
|
|
|
{
|
|
|
|
GList *tmp, *res = NULL;
|
|
|
|
|
|
|
|
for (tmp = timeline->priv->layers; tmp; tmp = g_list_next (tmp)) {
|
|
|
|
res = g_list_append (res, g_object_ref (tmp->data));
|
2010-04-20 09:48:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|