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
|
2012-12-20 23:23:54 +00:00
|
|
|
* 2012 Collabora Ltd.
|
|
|
|
* Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
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
|
2012-11-04 00:25:20 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-08-04 15:13:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* SECTION:ges-clip
|
2013-04-23 23:04:04 +00:00
|
|
|
* @short_description: Base Class for objects in a GESLayer
|
2009-08-04 15:13:11 +00:00
|
|
|
*
|
2013-01-20 15:42:29 +00:00
|
|
|
* A #GESClip is a 'natural' object which controls one or more
|
2013-01-26 15:31:33 +00:00
|
|
|
* #GESTrackElement(s) in one or more #GESTrack(s).
|
2009-08-04 15:13:11 +00:00
|
|
|
*
|
2013-01-26 15:31:33 +00:00
|
|
|
* Keeps a reference to the #GESTrackElement(s) it created and
|
2010-12-09 11:53:07 +00:00
|
|
|
* sets/updates their properties.
|
2009-08-04 15:13:11 +00:00
|
|
|
*/
|
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
#include "ges-clip.h"
|
2009-09-10 16:40:51 +00:00
|
|
|
#include "ges.h"
|
|
|
|
#include "ges-internal.h"
|
|
|
|
|
2012-03-12 15:46:42 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2010-06-09 14:27:43 +00:00
|
|
|
gboolean
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_fill_track_element_func (GESClip * clip,
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement * trackelement, GstElement * gnlobj);
|
2010-06-09 14:27:43 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GList *ges_clip_create_track_elements_func (GESClip * clip, GESTrackType type);
|
2013-01-15 13:52:17 +00:00
|
|
|
static gboolean _ripple (GESTimelineElement * element, GstClockTime start);
|
|
|
|
static gboolean _ripple_end (GESTimelineElement * element, GstClockTime end);
|
|
|
|
static gboolean _roll_start (GESTimelineElement * element, GstClockTime start);
|
|
|
|
static gboolean _roll_end (GESTimelineElement * element, GstClockTime end);
|
|
|
|
static gboolean _trim (GESTimelineElement * element, GstClockTime start);
|
2013-06-28 18:39:16 +00:00
|
|
|
static void _compute_height (GESContainer * container);
|
2012-09-10 00:20:46 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
G_DEFINE_ABSTRACT_TYPE (GESClip, ges_clip, GES_TYPE_CONTAINER);
|
2011-02-08 13:04:39 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
struct _GESClipPrivate
|
2010-11-28 12:24:07 +00:00
|
|
|
{
|
|
|
|
/*< public > */
|
2013-04-23 23:04:04 +00:00
|
|
|
GESLayer *layer;
|
2010-11-28 12:24:07 +00:00
|
|
|
|
|
|
|
/*< private > */
|
2010-12-16 18:29:14 +00:00
|
|
|
|
2013-02-08 19:39:18 +00:00
|
|
|
/* Set to TRUE when the clip is doing updates of track element
|
2010-12-16 18:29:14 +00:00
|
|
|
* properties so we don't end up in infinite property update loops
|
|
|
|
*/
|
2011-06-06 19:55:47 +00:00
|
|
|
gboolean is_moving;
|
2010-12-16 18:29:14 +00:00
|
|
|
|
2011-01-31 10:10:35 +00:00
|
|
|
guint nb_effects;
|
2011-12-01 03:18:30 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
/* The formats supported by this Clip */
|
2011-12-01 03:18:30 +00:00
|
|
|
GESTrackType supportedformats;
|
2010-11-28 12:24:07 +00:00
|
|
|
};
|
|
|
|
|
2013-03-02 21:35:34 +00:00
|
|
|
typedef struct _CheckTrack
|
|
|
|
{
|
|
|
|
GESTrack *track;
|
|
|
|
GESTrackElement *source;
|
|
|
|
} CheckTrack;
|
|
|
|
|
2009-08-07 18:33:18 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2010-11-28 12:24:07 +00:00
|
|
|
PROP_LAYER,
|
2011-12-01 03:18:30 +00:00
|
|
|
PROP_SUPPORTED_FORMATS,
|
2010-12-16 18:29:14 +00:00
|
|
|
PROP_LAST
|
2009-08-07 18:33:18 +00:00
|
|
|
};
|
|
|
|
|
2010-12-16 18:29:14 +00:00
|
|
|
static GParamSpec *properties[PROP_LAST];
|
|
|
|
|
2013-07-01 21:51:32 +00:00
|
|
|
/****************************************************
|
|
|
|
* Listen to our children *
|
|
|
|
****************************************************/
|
2013-06-26 20:54:02 +00:00
|
|
|
|
2013-06-29 23:31:23 +00:00
|
|
|
static void
|
|
|
|
_get_priority_range (GESContainer * container, guint32 * min_priority,
|
|
|
|
guint32 * max_priority)
|
|
|
|
{
|
|
|
|
GESLayer *layer = GES_CLIP (container)->priv->layer;
|
|
|
|
|
|
|
|
if (layer) {
|
|
|
|
*min_priority = layer->min_gnl_priority;
|
|
|
|
*max_priority = layer->max_gnl_priority;
|
|
|
|
} else {
|
|
|
|
*min_priority = 0;
|
|
|
|
*max_priority = G_MAXUINT32;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-01 21:51:32 +00:00
|
|
|
static void
|
|
|
|
_child_priority_changed_cb (GESTimelineElement * child,
|
|
|
|
GParamSpec * arg G_GNUC_UNUSED, GESContainer * container)
|
|
|
|
{
|
|
|
|
guint32 min_prio, max_prio;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (container, "TimelineElement %p priority changed to %i",
|
|
|
|
child, _PRIORITY (child));
|
|
|
|
|
|
|
|
if (container->children_control_mode == GES_CHILDREN_IGNORE_NOTIFIES)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Update mapping */
|
|
|
|
_get_priority_range (container, &min_prio, &max_prio);
|
|
|
|
|
|
|
|
_ges_container_set_priority_offset (container, child,
|
|
|
|
min_prio + _PRIORITY (container) - _PRIORITY (child));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************
|
|
|
|
* *
|
|
|
|
* GESTimelineElement virtual methods implementation *
|
|
|
|
* *
|
|
|
|
*****************************************************/
|
|
|
|
|
2013-06-26 20:54:02 +00:00
|
|
|
static gboolean
|
|
|
|
_set_start (GESTimelineElement * element, GstClockTime start)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
GESTimeline *timeline;
|
|
|
|
GESContainer *container = GES_CONTAINER (element);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (element, "Setting children start, (initiated_move: %"
|
|
|
|
GST_PTR_FORMAT ")", container->initiated_move);
|
|
|
|
|
2013-07-01 21:51:32 +00:00
|
|
|
container->children_control_mode = GES_CHILDREN_IGNORE_NOTIFIES;
|
2013-06-26 20:54:02 +00:00
|
|
|
for (tmp = container->children; tmp; tmp = g_list_next (tmp)) {
|
|
|
|
GESTimelineElement *child = (GESTimelineElement *) tmp->data;
|
|
|
|
|
|
|
|
if (child != container->initiated_move) {
|
|
|
|
/* Make the snapping happen if in a timeline */
|
|
|
|
timeline = GES_TIMELINE_ELEMENT_TIMELINE (child);
|
|
|
|
if (timeline == NULL || ges_timeline_move_object_simple (timeline, child,
|
|
|
|
NULL, GES_EDGE_NONE, start) == FALSE)
|
|
|
|
_set_start0 (GES_TIMELINE_ELEMENT (child), start);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2013-07-01 21:51:32 +00:00
|
|
|
container->children_control_mode = GES_CHILDREN_UPDATE;
|
2013-06-26 20:54:02 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_set_inpoint (GESTimelineElement * element, GstClockTime inpoint)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
GESContainer *container = GES_CONTAINER (element);
|
|
|
|
|
2013-07-01 21:51:32 +00:00
|
|
|
container->children_control_mode = GES_CHILDREN_IGNORE_NOTIFIES;
|
2013-06-26 20:54:02 +00:00
|
|
|
for (tmp = container->children; tmp; tmp = g_list_next (tmp)) {
|
|
|
|
GESTimelineElement *child = (GESTimelineElement *) tmp->data;
|
|
|
|
|
|
|
|
if (child != container->initiated_move) {
|
|
|
|
_set_inpoint0 (child, inpoint);
|
|
|
|
}
|
|
|
|
}
|
2013-07-01 21:51:32 +00:00
|
|
|
container->children_control_mode = GES_CHILDREN_UPDATE;
|
2013-06-26 20:54:02 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_set_duration (GESTimelineElement * element, GstClockTime duration)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
GESTimeline *timeline;
|
|
|
|
|
|
|
|
GESContainer *container = GES_CONTAINER (element);
|
|
|
|
|
2013-07-01 21:51:32 +00:00
|
|
|
container->children_control_mode = GES_CHILDREN_IGNORE_NOTIFIES;
|
2013-06-26 20:54:02 +00:00
|
|
|
for (tmp = container->children; tmp; tmp = g_list_next (tmp)) {
|
|
|
|
GESTimelineElement *child = (GESTimelineElement *) tmp->data;
|
|
|
|
|
|
|
|
if (child != container->initiated_move) {
|
|
|
|
/* Make the snapping happen if in a timeline */
|
|
|
|
timeline = GES_TIMELINE_ELEMENT_TIMELINE (child);
|
|
|
|
if (timeline == NULL || ges_timeline_trim_object_simple (timeline, child,
|
|
|
|
NULL, GES_EDGE_END, _START (child) + duration, TRUE) == FALSE)
|
|
|
|
_set_duration0 (GES_TIMELINE_ELEMENT (child), duration);
|
|
|
|
}
|
|
|
|
}
|
2013-07-01 21:51:32 +00:00
|
|
|
container->children_control_mode = GES_CHILDREN_UPDATE;
|
2013-06-26 20:54:02 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_set_max_duration (GESTimelineElement * element, GstClockTime maxduration)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
|
|
|
|
for (tmp = GES_CONTAINER (element)->children; tmp; tmp = g_list_next (tmp))
|
|
|
|
ges_timeline_element_set_max_duration (GES_TIMELINE_ELEMENT (tmp->data),
|
|
|
|
maxduration);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_set_priority (GESTimelineElement * element, guint32 priority)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
guint32 min_prio, max_prio;
|
|
|
|
|
|
|
|
GESContainer *container = GES_CONTAINER (element);
|
|
|
|
|
2013-06-29 23:31:23 +00:00
|
|
|
_get_priority_range (container, &min_prio, &max_prio);
|
2013-06-26 20:54:02 +00:00
|
|
|
|
2013-07-01 21:51:32 +00:00
|
|
|
container->children_control_mode = GES_CHILDREN_UPDATE_OFFSETS;
|
2013-06-26 20:54:02 +00:00
|
|
|
for (tmp = container->children; tmp; tmp = g_list_next (tmp)) {
|
2013-06-29 23:31:23 +00:00
|
|
|
guint32 real_tck_prio;
|
2013-06-26 20:54:02 +00:00
|
|
|
GESTimelineElement *child = (GESTimelineElement *) tmp->data;
|
2013-06-29 23:31:23 +00:00
|
|
|
gint off = _PRIORITY (child) - _PRIORITY (element) - MIN_GNL_PRIO;
|
|
|
|
|
|
|
|
if (off >= LAYER_HEIGHT)
|
|
|
|
off = 0;
|
|
|
|
|
|
|
|
real_tck_prio = min_prio + priority + off;
|
2013-06-26 20:54:02 +00:00
|
|
|
|
|
|
|
if (real_tck_prio > max_prio) {
|
|
|
|
GST_WARNING ("%p priority of %i, is outside of the its containing "
|
|
|
|
"layer space. (%d/%d) setting it to the maximum it can be",
|
|
|
|
container, priority, min_prio, max_prio);
|
|
|
|
|
|
|
|
real_tck_prio = max_prio;
|
|
|
|
}
|
|
|
|
_set_priority0 (child, real_tck_prio);
|
|
|
|
}
|
2013-07-01 21:51:32 +00:00
|
|
|
container->children_control_mode = GES_CHILDREN_UPDATE;
|
2013-06-28 18:39:16 +00:00
|
|
|
_compute_height (container);
|
2013-06-26 20:54:02 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
/****************************************************
|
|
|
|
* *
|
|
|
|
* GESContainer virtual methods implementation *
|
|
|
|
* *
|
|
|
|
****************************************************/
|
|
|
|
|
2013-06-28 18:39:16 +00:00
|
|
|
static void
|
2013-03-24 17:42:55 +00:00
|
|
|
_compute_height (GESContainer * container)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
guint32 min_prio = G_MAXUINT32, max_prio = 0;
|
|
|
|
|
2013-06-28 18:39:16 +00:00
|
|
|
if (container->children == NULL) {
|
|
|
|
/* FIXME Why not 0! */
|
|
|
|
_ges_container_set_height (container, 1);
|
|
|
|
return;
|
|
|
|
}
|
2013-03-24 17:42:55 +00:00
|
|
|
|
|
|
|
/* Go over all childs and check if height has changed */
|
|
|
|
for (tmp = container->children; tmp; tmp = tmp->next) {
|
|
|
|
guint tck_priority = _PRIORITY (tmp->data);
|
|
|
|
|
|
|
|
if (tck_priority < min_prio)
|
|
|
|
min_prio = tck_priority;
|
|
|
|
if (tck_priority > max_prio)
|
|
|
|
max_prio = tck_priority;
|
|
|
|
}
|
|
|
|
|
2013-06-28 18:39:16 +00:00
|
|
|
_ges_container_set_height (container, max_prio - min_prio + 1);
|
2013-03-24 17:42:55 +00:00
|
|
|
}
|
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
static gboolean
|
|
|
|
_add_child (GESContainer * container, GESTimelineElement * element)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
guint max_prio, min_prio;
|
|
|
|
GESClipPrivate *priv = GES_CLIP (container)->priv;
|
|
|
|
|
2013-06-28 23:15:59 +00:00
|
|
|
g_return_val_if_fail (GES_IS_TRACK_ELEMENT (element), FALSE);
|
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
/* First make sure we work with a sorted list of GESTimelineElement-s */
|
|
|
|
_ges_container_sort_children (container);
|
|
|
|
|
|
|
|
/* If the TrackElement is an effect:
|
|
|
|
* - We add it on top of the list of TrackEffect
|
|
|
|
* - We put all TrackObject present in the TimelineObject
|
|
|
|
* which are not BaseEffect on top of them
|
|
|
|
* FIXME: Let the full control over priorities to the user
|
|
|
|
*/
|
2013-03-30 11:30:47 +00:00
|
|
|
_get_priority_range (container, &min_prio, &max_prio);
|
2013-03-01 01:27:50 +00:00
|
|
|
if (GES_IS_BASE_EFFECT (element)) {
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (container, "Adding %ith effect: %" GST_PTR_FORMAT
|
|
|
|
" Priority %i", priv->nb_effects + 1, element,
|
2013-03-29 18:23:00 +00:00
|
|
|
min_prio + GES_TIMELINE_ELEMENT_PRIORITY (container) +
|
|
|
|
priv->nb_effects);
|
2013-03-01 01:27:50 +00:00
|
|
|
|
|
|
|
tmp = g_list_nth (GES_CONTAINER_CHILDREN (container), priv->nb_effects);
|
|
|
|
for (; tmp; tmp = tmp->next)
|
|
|
|
ges_timeline_element_set_priority (GES_TIMELINE_ELEMENT (tmp->data),
|
|
|
|
GES_TIMELINE_ELEMENT_PRIORITY (tmp->data) + 1);
|
|
|
|
|
|
|
|
_set_priority0 (element, min_prio +
|
|
|
|
GES_TIMELINE_ELEMENT_PRIORITY (container) + priv->nb_effects);
|
|
|
|
priv->nb_effects++;
|
|
|
|
} else {
|
|
|
|
/* We add the track element on top of the effect list */
|
|
|
|
_set_priority0 (element, min_prio +
|
|
|
|
GES_TIMELINE_ELEMENT_PRIORITY (container) + priv->nb_effects);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We set the timing value of the child to ours, we avoid infinite loop
|
|
|
|
* making sure the container ignore notifies from the child */
|
2013-07-01 21:51:32 +00:00
|
|
|
container->children_control_mode = GES_CHILDREN_IGNORE_NOTIFIES;
|
2013-03-01 01:27:50 +00:00
|
|
|
_set_start0 (element, GES_TIMELINE_ELEMENT_START (container));
|
|
|
|
_set_inpoint0 (element, GES_TIMELINE_ELEMENT_INPOINT (container));
|
|
|
|
_set_duration0 (element, GES_TIMELINE_ELEMENT_DURATION (container));
|
2013-07-01 21:51:32 +00:00
|
|
|
container->children_control_mode = GES_CHILDREN_UPDATE;
|
2013-03-01 01:27:50 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_remove_child (GESContainer * container, GESTimelineElement * element)
|
|
|
|
{
|
|
|
|
if (GES_IS_BASE_EFFECT (element))
|
|
|
|
GES_CLIP (container)->priv->nb_effects--;
|
|
|
|
|
|
|
|
GST_FIXME_OBJECT (container, "We should set other children prios");
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-06-28 18:39:16 +00:00
|
|
|
static void
|
|
|
|
_child_added (GESContainer * container, GESTimelineElement * element)
|
|
|
|
{
|
2013-07-01 21:51:32 +00:00
|
|
|
g_signal_connect (G_OBJECT (element), "notify::priority",
|
|
|
|
G_CALLBACK (_child_priority_changed_cb), container);
|
2013-06-28 18:39:16 +00:00
|
|
|
_compute_height (container);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_child_removed (GESContainer * container, GESTimelineElement * element)
|
|
|
|
{
|
|
|
|
_compute_height (container);
|
|
|
|
}
|
|
|
|
|
2013-03-01 23:25:17 +00:00
|
|
|
static void
|
|
|
|
add_tlobj_to_list (gpointer key, gpointer tlobj, GList ** list)
|
|
|
|
{
|
2013-03-16 22:05:04 +00:00
|
|
|
*list = g_list_prepend (*list, gst_object_ref (tlobj));
|
2013-03-01 23:25:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GList *
|
|
|
|
_ungroup (GESContainer * container, gboolean recursive)
|
|
|
|
{
|
|
|
|
GESClip *tmpclip;
|
|
|
|
GESTrackType track_type;
|
|
|
|
GESTrackElement *track_element;
|
|
|
|
|
|
|
|
gboolean first_obj = TRUE;
|
2013-05-05 10:13:24 +00:00
|
|
|
GList *tmp, *children, *ret = NULL;
|
2013-03-01 23:25:17 +00:00
|
|
|
GESClip *clip = GES_CLIP (container);
|
|
|
|
GESTimelineElement *element = GES_TIMELINE_ELEMENT (container);
|
2013-04-23 23:04:04 +00:00
|
|
|
GESLayer *layer = clip->priv->layer;
|
2013-03-01 23:25:17 +00:00
|
|
|
GHashTable *_tracktype_clip = g_hash_table_new (g_int_hash, g_int_equal);
|
|
|
|
|
|
|
|
/* If there is no TrackElement, just return @container in a list */
|
|
|
|
if (GES_CONTAINER_CHILDREN (container) == NULL) {
|
|
|
|
GST_DEBUG ("No TrackElement, simply returning");
|
|
|
|
return g_list_prepend (ret, container);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We need a copy of the current list of tracks */
|
2013-07-10 19:24:28 +00:00
|
|
|
children = ges_container_get_children (container, FALSE);
|
2013-05-05 10:13:24 +00:00
|
|
|
for (tmp = children; tmp; tmp = tmp->next) {
|
2013-03-01 23:25:17 +00:00
|
|
|
track_element = GES_TRACK_ELEMENT (tmp->data);
|
|
|
|
track_type = ges_track_element_get_track_type (track_element);
|
|
|
|
|
|
|
|
tmpclip = g_hash_table_lookup (_tracktype_clip, &track_type);
|
|
|
|
if (tmpclip == NULL) {
|
|
|
|
if (G_UNLIKELY (first_obj == TRUE)) {
|
|
|
|
tmpclip = clip;
|
|
|
|
first_obj = FALSE;
|
|
|
|
} else {
|
|
|
|
tmpclip = GES_CLIP (ges_timeline_element_copy (element, FALSE));
|
|
|
|
if (layer) {
|
|
|
|
/* Add new container to the same layer as @container */
|
|
|
|
ges_clip_set_moving_from_layer (tmpclip, TRUE);
|
2013-04-23 23:04:04 +00:00
|
|
|
ges_layer_add_clip (layer, tmpclip);
|
2013-03-01 23:25:17 +00:00
|
|
|
ges_clip_set_moving_from_layer (tmpclip, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_hash_table_insert (_tracktype_clip, &track_type, tmpclip);
|
|
|
|
ges_clip_set_supported_formats (tmpclip, track_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move trackelement to the container it is supposed to land into */
|
|
|
|
if (tmpclip != clip) {
|
2013-03-15 03:01:47 +00:00
|
|
|
/* We need to bump the refcount to avoid the object to be destroyed */
|
|
|
|
gst_object_ref (track_element);
|
2013-03-01 23:25:17 +00:00
|
|
|
ges_container_remove (container, GES_TIMELINE_ELEMENT (track_element));
|
|
|
|
ges_container_add (GES_CONTAINER (tmpclip),
|
|
|
|
GES_TIMELINE_ELEMENT (track_element));
|
2013-03-15 03:01:47 +00:00
|
|
|
gst_object_unref (track_element);
|
2013-03-01 23:25:17 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-05 10:13:24 +00:00
|
|
|
g_list_free_full (children, gst_object_unref);
|
2013-03-01 23:25:17 +00:00
|
|
|
g_hash_table_foreach (_tracktype_clip, (GHFunc) add_tlobj_to_list, &ret);
|
|
|
|
g_hash_table_unref (_tracktype_clip);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-03-02 21:35:34 +00:00
|
|
|
static GESContainer *
|
|
|
|
_group (GList * containers)
|
|
|
|
{
|
|
|
|
CheckTrack *tracks = NULL;
|
|
|
|
GESTimeline *timeline = NULL;
|
|
|
|
GESTrackType supported_formats;
|
2013-04-23 23:04:04 +00:00
|
|
|
GESLayer *layer = NULL;
|
2013-03-02 21:35:34 +00:00
|
|
|
GList *tmp, *tmpclip, *tmpelement;
|
|
|
|
GstClockTime start, inpoint, duration;
|
|
|
|
|
|
|
|
GESAsset *asset = NULL;
|
|
|
|
GESContainer *ret = NULL;
|
|
|
|
guint nb_tracks = 0, i = 0;
|
|
|
|
|
|
|
|
start = inpoint = duration = GST_CLOCK_TIME_NONE;
|
|
|
|
|
2013-07-10 21:33:51 +00:00
|
|
|
if (!containers)
|
|
|
|
return NULL;
|
|
|
|
|
2013-03-02 21:35:34 +00:00
|
|
|
/* First check if all the containers are clips, if they
|
|
|
|
* all have the same start/inpoint/duration and are in the same
|
|
|
|
* layer.
|
|
|
|
*
|
|
|
|
* We also need to make sure that all source have been created by the
|
|
|
|
* same asset, keep the information */
|
|
|
|
for (tmp = containers; tmp; tmp = tmp->next) {
|
|
|
|
GESClip *clip;
|
|
|
|
GESTimeline *tmptimeline;
|
|
|
|
GESContainer *tmpcontainer;
|
|
|
|
GESTimelineElement *element;
|
|
|
|
|
|
|
|
tmpcontainer = GES_CONTAINER (tmp->data);
|
|
|
|
element = GES_TIMELINE_ELEMENT (tmp->data);
|
|
|
|
if (GES_IS_CLIP (element) == FALSE) {
|
|
|
|
GST_DEBUG ("Can only work with clips");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
clip = GES_CLIP (tmp->data);
|
2013-06-28 23:15:59 +00:00
|
|
|
tmptimeline = GES_TIMELINE_ELEMENT_TIMELINE (element);
|
2013-03-02 21:35:34 +00:00
|
|
|
if (!timeline) {
|
|
|
|
GList *tmptrack;
|
|
|
|
|
|
|
|
start = _START (tmpcontainer);
|
|
|
|
inpoint = _INPOINT (tmpcontainer);
|
|
|
|
duration = _DURATION (tmpcontainer);
|
|
|
|
timeline = tmptimeline;
|
|
|
|
layer = clip->priv->layer;
|
|
|
|
nb_tracks = g_list_length (GES_TIMELINE_GET_TRACKS (timeline));
|
|
|
|
tracks = g_new0 (CheckTrack, nb_tracks);
|
|
|
|
|
|
|
|
for (tmptrack = GES_TIMELINE_GET_TRACKS (timeline); tmptrack;
|
|
|
|
tmptrack = tmptrack->next) {
|
|
|
|
tracks[i].track = tmptrack->data;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (start != _START (tmpcontainer) ||
|
|
|
|
inpoint != _INPOINT (tmpcontainer) ||
|
|
|
|
duration != _DURATION (tmpcontainer) || clip->priv->layer != layer) {
|
|
|
|
GST_INFO ("All children must have the same start, inpoint, duration "
|
|
|
|
" and be in the same layer");
|
|
|
|
|
|
|
|
goto done;
|
|
|
|
} else {
|
|
|
|
GList *tmp2;
|
|
|
|
|
|
|
|
for (tmp2 = GES_CONTAINER_CHILDREN (tmp->data); tmp2; tmp2 = tmp2->next) {
|
|
|
|
GESTrackElement *track_element = GES_TRACK_ELEMENT (tmp2->data);
|
|
|
|
|
|
|
|
if (GES_IS_SOURCE (track_element)) {
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < nb_tracks; i++) {
|
|
|
|
if (tracks[i].track ==
|
|
|
|
ges_track_element_get_track (track_element)) {
|
|
|
|
if (tracks[i].source) {
|
|
|
|
GST_INFO ("Can not link clips with various source for a "
|
|
|
|
"same track");
|
|
|
|
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
tracks[i].source = track_element;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Then check that all sources have been created by the same asset,
|
|
|
|
* otherwise we can not group */
|
|
|
|
for (i = 0; i < nb_tracks; i++) {
|
|
|
|
if (tracks[i].source == NULL) {
|
|
|
|
GST_FIXME ("Check what to do here as we might end up having a mess");
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME Check what to do if we have source that have no assets */
|
|
|
|
if (!asset) {
|
|
|
|
asset =
|
|
|
|
ges_extractable_get_asset (GES_EXTRACTABLE
|
|
|
|
(ges_timeline_element_get_parent (GES_TIMELINE_ELEMENT (tracks
|
|
|
|
[i].source))));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (asset !=
|
|
|
|
ges_extractable_get_asset (GES_EXTRACTABLE
|
|
|
|
(ges_timeline_element_get_parent (GES_TIMELINE_ELEMENT (tracks
|
|
|
|
[i].source))))) {
|
|
|
|
GST_INFO ("Can not link clips with source coming from different assets");
|
|
|
|
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And now pass all TrackElements to the first clip,
|
|
|
|
* and remove others from the layer (updating the supported formats) */
|
|
|
|
ret = containers->data;
|
|
|
|
supported_formats = GES_CLIP (ret)->priv->supportedformats;
|
|
|
|
for (tmpclip = containers->next; tmpclip; tmpclip = tmpclip->next) {
|
|
|
|
GESClip *cclip = tmpclip->data;
|
2013-07-10 19:24:28 +00:00
|
|
|
GList *children = ges_container_get_children (GES_CONTAINER (cclip), FALSE);
|
2013-03-02 21:35:34 +00:00
|
|
|
|
2013-07-02 14:56:40 +00:00
|
|
|
for (tmpelement = children; tmpelement; tmpelement = tmpelement->next) {
|
2013-03-02 21:35:34 +00:00
|
|
|
GESTimelineElement *celement = GES_TIMELINE_ELEMENT (tmpelement->data);
|
|
|
|
|
|
|
|
ges_container_remove (GES_CONTAINER (cclip), celement);
|
|
|
|
ges_container_add (ret, celement);
|
|
|
|
|
|
|
|
supported_formats = supported_formats |
|
|
|
|
ges_track_element_get_track_type (GES_TRACK_ELEMENT (celement));
|
|
|
|
}
|
2013-07-02 14:56:40 +00:00
|
|
|
g_list_free_full (children, gst_object_unref);
|
2013-03-02 21:35:34 +00:00
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
ges_layer_remove_clip (layer, tmpclip->data);
|
2013-03-02 21:35:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ges_clip_set_supported_formats (GES_CLIP (ret), supported_formats);
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (tracks)
|
|
|
|
g_free (tracks);
|
|
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-28 15:23:27 +00:00
|
|
|
static gboolean
|
|
|
|
_edit (GESContainer * container, GList * layers,
|
|
|
|
gint new_layer_priority, GESEditMode mode, GESEdge edge, guint64 position)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GESLayer *layer;
|
|
|
|
|
|
|
|
if (!G_UNLIKELY (GES_CONTAINER_CHILDREN (container))) {
|
|
|
|
GST_WARNING_OBJECT (container, "Trying to edit, but not containing"
|
|
|
|
"any TrackElement yet.");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (tmp = GES_CONTAINER_CHILDREN (container); tmp; tmp = g_list_next (tmp)) {
|
|
|
|
if (GES_IS_SOURCE (tmp->data)) {
|
|
|
|
ret &= ges_track_element_edit (tmp->data, layers, mode, edge, position);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Moving to layer */
|
|
|
|
if (new_layer_priority == -1) {
|
|
|
|
GST_DEBUG_OBJECT (container, "Not moving new prio %d", new_layer_priority);
|
|
|
|
} else {
|
|
|
|
gint priority_offset;
|
|
|
|
|
|
|
|
layer = GES_CLIP (container)->priv->layer;
|
|
|
|
if (layer == NULL) {
|
|
|
|
GST_WARNING_OBJECT (container, "Not in any layer yet, not moving");
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
priority_offset = new_layer_priority - ges_layer_get_priority (layer);
|
|
|
|
|
|
|
|
ret &= timeline_context_to_layer (layer->timeline, priority_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-02 21:35:34 +00:00
|
|
|
|
2013-03-01 23:25:17 +00:00
|
|
|
/****************************************************
|
|
|
|
* *
|
|
|
|
* GObject virtual methods implementation *
|
|
|
|
* *
|
|
|
|
****************************************************/
|
2009-08-06 10:14:37 +00:00
|
|
|
static void
|
2013-01-20 15:42:29 +00:00
|
|
|
ges_clip_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
|
|
|
{
|
2013-02-15 02:34:48 +00:00
|
|
|
GESClip *clip = GES_CLIP (object);
|
2009-08-07 18:33:18 +00:00
|
|
|
|
2009-08-04 15:13:11 +00:00
|
|
|
switch (property_id) {
|
2010-11-28 12:24:07 +00:00
|
|
|
case PROP_LAYER:
|
2013-02-15 02:34:48 +00:00
|
|
|
g_value_set_object (value, clip->priv->layer);
|
2010-11-28 12:24:07 +00:00
|
|
|
break;
|
2011-12-01 03:18:30 +00:00
|
|
|
case PROP_SUPPORTED_FORMATS:
|
2013-02-15 02:34:48 +00:00
|
|
|
g_value_set_flags (value, clip->priv->supportedformats);
|
2011-12-01 03:18:30 +00:00
|
|
|
break;
|
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
|
2013-01-20 15:42:29 +00:00
|
|
|
ges_clip_set_property (GObject * object, guint property_id,
|
2009-08-04 15:16:31 +00:00
|
|
|
const GValue * value, GParamSpec * pspec)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2013-02-15 02:34:48 +00:00
|
|
|
GESClip *clip = GES_CLIP (object);
|
2009-08-07 18:33:18 +00:00
|
|
|
|
2009-08-04 15:13:11 +00:00
|
|
|
switch (property_id) {
|
2011-12-01 03:18:30 +00:00
|
|
|
case PROP_SUPPORTED_FORMATS:
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_set_supported_formats (clip, g_value_get_flags (value));
|
2011-12-01 03:18:30 +00:00
|
|
|
break;
|
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
|
2013-01-20 15:42:29 +00:00
|
|
|
ges_clip_class_init (GESClipClass * klass)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2013-03-01 01:27:50 +00:00
|
|
|
GESContainerClass *container_class = GES_CONTAINER_CLASS (klass);
|
2013-01-15 13:52:17 +00:00
|
|
|
GESTimelineElementClass *element_class = GES_TIMELINE_ELEMENT_CLASS (klass);
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GESClipPrivate));
|
2010-11-28 12:24:07 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
object_class->get_property = ges_clip_get_property;
|
|
|
|
object_class->set_property = ges_clip_set_property;
|
2013-01-26 15:31:33 +00:00
|
|
|
klass->create_track_elements = ges_clip_create_track_elements_func;
|
|
|
|
klass->create_track_element = NULL;
|
2010-07-09 09:51:21 +00:00
|
|
|
|
2011-12-01 03:18:30 +00:00
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* GESClip:supported-formats:
|
2011-12-01 03:18:30 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* The formats supported by the clip.
|
2011-12-01 03:18:30 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.XX
|
|
|
|
*/
|
|
|
|
properties[PROP_SUPPORTED_FORMATS] = g_param_spec_flags ("supported-formats",
|
|
|
|
"Supported formats", "Formats supported by the file",
|
2012-11-18 15:46:05 +00:00
|
|
|
GES_TYPE_TRACK_TYPE, GES_TRACK_TYPE_AUDIO | GES_TRACK_TYPE_VIDEO,
|
2011-12-01 03:18:30 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_SUPPORTED_FORMATS,
|
|
|
|
properties[PROP_SUPPORTED_FORMATS]);
|
|
|
|
|
2011-02-09 10:21:02 +00:00
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* GESClip:layer:
|
2010-11-28 12:24:07 +00:00
|
|
|
*
|
2013-06-26 21:08:57 +00:00
|
|
|
* The GESLayer where this clip is being used. If you want to connect to its
|
|
|
|
* notify signal you should connect to it with g_signal_connect_after as the
|
|
|
|
* signal emission can be stop in the first fase.
|
2010-11-28 12:24:07 +00:00
|
|
|
*/
|
2011-02-09 10:21:02 +00:00
|
|
|
properties[PROP_LAYER] = g_param_spec_object ("layer", "Layer",
|
2013-04-23 23:04:04 +00:00
|
|
|
"The GESLayer where this clip is being used.",
|
|
|
|
GES_TYPE_LAYER, G_PARAM_READABLE);
|
2010-11-28 12:24:07 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_LAYER,
|
2011-02-09 10:21:02 +00:00
|
|
|
properties[PROP_LAYER]);
|
2010-11-28 12:24:07 +00:00
|
|
|
|
2013-01-15 13:52:17 +00:00
|
|
|
element_class->ripple = _ripple;
|
|
|
|
element_class->ripple_end = _ripple_end;
|
|
|
|
element_class->roll_start = _roll_start;
|
|
|
|
element_class->roll_end = _roll_end;
|
|
|
|
element_class->trim = _trim;
|
2013-06-26 20:54:02 +00:00
|
|
|
element_class->set_start = _set_start;
|
|
|
|
element_class->set_duration = _set_duration;
|
|
|
|
element_class->set_inpoint = _set_inpoint;
|
|
|
|
element_class->set_priority = _set_priority;
|
|
|
|
element_class->set_max_duration = _set_max_duration;
|
2013-03-01 01:27:50 +00:00
|
|
|
/* TODO implement the deep_copy Virtual method */
|
|
|
|
|
|
|
|
container_class->add_child = _add_child;
|
|
|
|
container_class->remove_child = _remove_child;
|
2013-06-28 18:39:16 +00:00
|
|
|
container_class->child_removed = _child_removed;
|
|
|
|
container_class->child_added = _child_added;
|
2013-03-01 23:25:17 +00:00
|
|
|
container_class->ungroup = _ungroup;
|
2013-03-02 21:35:34 +00:00
|
|
|
container_class->group = _group;
|
2013-03-23 08:46:38 +00:00
|
|
|
container_class->grouping_priority = G_MAXUINT;
|
2013-06-28 15:23:27 +00:00
|
|
|
container_class->edit = _edit;
|
2012-01-16 12:37:22 +00:00
|
|
|
|
2009-09-21 10:51:16 +00:00
|
|
|
klass->need_fill_track = TRUE;
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-01-20 15:42:29 +00:00
|
|
|
ges_clip_init (GESClip * self)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2010-11-28 12:24:07 +00:00
|
|
|
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
|
2013-01-20 15:42:29 +00:00
|
|
|
GES_TYPE_CLIP, GESClipPrivate);
|
2013-01-15 13:52:17 +00:00
|
|
|
/* FIXME, check why it was done this way _DURATION (self) = GST_SECOND; */
|
2010-11-28 12:24:07 +00:00
|
|
|
self->priv->layer = NULL;
|
2011-01-31 10:10:35 +00:00
|
|
|
self->priv->nb_effects = 0;
|
2011-06-06 19:55:47 +00:00
|
|
|
self->priv->is_moving = FALSE;
|
2012-11-20 03:29:23 +00:00
|
|
|
}
|
|
|
|
|
2009-08-06 09:23:01 +00:00
|
|
|
/**
|
2013-01-26 15:31:33 +00:00
|
|
|
* ges_clip_create_track_element:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: The origin #GESClip
|
2013-01-26 15:31:33 +00:00
|
|
|
* @type: The #GESTrackType to create a #GESTrackElement for.
|
2009-08-06 09:23:01 +00:00
|
|
|
*
|
2013-02-08 20:11:22 +00:00
|
|
|
* Creates a #GESTrackElement for the provided @type. The clip
|
2013-01-26 15:31:33 +00:00
|
|
|
* keep a reference to the newly created trackelement, you therefore need to
|
2013-03-01 01:27:50 +00:00
|
|
|
* call @ges_container_remove when you are done with it.
|
2009-08-06 09:23:01 +00:00
|
|
|
*
|
2013-01-26 15:31:33 +00:00
|
|
|
* Returns: (transfer none): A #GESTrackElement. Returns NULL if the #GESTrackElement could not
|
2009-08-06 09:23:01 +00:00
|
|
|
* be created.
|
|
|
|
*/
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_create_track_element (GESClip * clip, GESTrackType type)
|
2009-08-06 09:23:01 +00:00
|
|
|
{
|
2013-01-20 15:42:29 +00:00
|
|
|
GESClipClass *class;
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *res;
|
2009-08-06 09:23:01 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), NULL);
|
2011-12-07 23:50:13 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GST_DEBUG_OBJECT (clip, "Creating track element for %s",
|
2012-12-20 23:23:54 +00:00
|
|
|
ges_track_type_name (type));
|
2013-02-15 02:34:48 +00:00
|
|
|
if (!(type & clip->priv->supportedformats)) {
|
|
|
|
GST_DEBUG_OBJECT (clip, "We don't support this track type %i", type);
|
2012-11-18 15:46:05 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
class = GES_CLIP_GET_CLASS (clip);
|
2009-08-06 09:23:01 +00:00
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
if (G_UNLIKELY (class->create_track_element == NULL)) {
|
|
|
|
GST_ERROR ("No 'create_track_element' implementation available fo type %s",
|
2013-02-15 02:34:48 +00:00
|
|
|
G_OBJECT_TYPE_NAME (clip));
|
2009-08-06 15:38:43 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
res = class->create_track_element (clip, type);
|
2009-08-06 15:38:43 +00:00
|
|
|
return res;
|
2010-07-07 15:07:33 +00:00
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
}
|
|
|
|
|
2010-07-07 14:51:39 +00:00
|
|
|
/**
|
2013-01-26 15:31:33 +00:00
|
|
|
* ges_clip_create_track_elements:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: The origin #GESClip
|
2013-01-26 15:31:33 +00:00
|
|
|
* @type: The #GESTrackType to create each #GESTrackElement for.
|
2010-07-07 14:51:39 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Creates all #GESTrackElements supported by this clip for the track type.
|
2010-07-07 14:51:39 +00:00
|
|
|
*
|
2013-01-26 15:31:33 +00:00
|
|
|
* Returns: (element-type GESTrackElement) (transfer full): A #GList of
|
|
|
|
* newly created #GESTrackElement-s
|
2010-07-07 14:51:39 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-20 23:23:54 +00:00
|
|
|
GList *
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_create_track_elements (GESClip * clip, GESTrackType type)
|
2010-07-07 14:51:39 +00:00
|
|
|
{
|
2013-03-01 01:27:50 +00:00
|
|
|
GList *result, *tmp;
|
2013-01-20 15:42:29 +00:00
|
|
|
GESClipClass *klass;
|
2013-03-01 01:27:50 +00:00
|
|
|
guint max_prio, min_prio;
|
2010-07-07 14:51:39 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), NULL);
|
2011-12-07 23:50:13 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
klass = GES_CLIP_GET_CLASS (clip);
|
2010-07-07 14:51:39 +00:00
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
if (!(klass->create_track_elements)) {
|
|
|
|
GST_WARNING ("no GESClip::create_track_elements implentation");
|
2012-12-20 23:23:54 +00:00
|
|
|
return NULL;
|
2010-07-07 14:51:39 +00:00
|
|
|
}
|
2012-04-20 23:02:19 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GST_DEBUG_OBJECT (clip, "Creating TrackElements for type: %s",
|
2012-12-20 23:23:54 +00:00
|
|
|
ges_track_type_name (type));
|
2013-03-01 01:27:50 +00:00
|
|
|
result = klass->create_track_elements (clip, type);
|
2010-07-07 14:51:39 +00:00
|
|
|
|
2013-03-30 11:30:47 +00:00
|
|
|
_get_priority_range (GES_CONTAINER (clip), &min_prio, &max_prio);
|
2013-03-01 01:27:50 +00:00
|
|
|
for (tmp = result; tmp; tmp = tmp->next) {
|
|
|
|
GESTimelineElement *elem = tmp->data;
|
2013-01-15 13:52:17 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
_set_start0 (elem, GES_TIMELINE_ELEMENT_START (clip));
|
|
|
|
_set_inpoint0 (elem, GES_TIMELINE_ELEMENT_INPOINT (clip));
|
|
|
|
_set_duration0 (elem, GES_TIMELINE_ELEMENT_DURATION (clip));
|
2013-01-15 13:52:17 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
if (GST_CLOCK_TIME_IS_VALID (GES_TIMELINE_ELEMENT_MAX_DURATION (clip)))
|
|
|
|
ges_timeline_element_set_max_duration (GES_TIMELINE_ELEMENT (elem),
|
|
|
|
GES_TIMELINE_ELEMENT_MAX_DURATION (clip));
|
|
|
|
|
|
|
|
_set_priority0 (elem, min_prio + GES_TIMELINE_ELEMENT_PRIORITY (clip)
|
|
|
|
+ clip->priv->nb_effects);
|
2013-03-14 16:53:25 +00:00
|
|
|
|
|
|
|
ges_container_add (GES_CONTAINER (clip), elem);
|
2013-03-01 01:27:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2012-01-16 12:37:22 +00:00
|
|
|
}
|
|
|
|
|
2010-12-09 11:53:07 +00:00
|
|
|
/*
|
2013-01-26 15:31:33 +00:00
|
|
|
* default implementation of GESClipClass::create_track_elements
|
2010-12-09 11:53:07 +00:00
|
|
|
*/
|
2012-12-20 23:23:54 +00:00
|
|
|
GList *
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_create_track_elements_func (GESClip * clip, GESTrackType type)
|
2010-07-07 14:51:39 +00:00
|
|
|
{
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *result;
|
2010-07-07 14:51:39 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GST_DEBUG_OBJECT (clip, "Creating trackelement for track: %s",
|
2012-12-20 23:23:54 +00:00
|
|
|
ges_track_type_name (type));
|
2013-02-15 02:34:48 +00:00
|
|
|
result = ges_clip_create_track_element (clip, type);
|
2010-07-07 14:51:39 +00:00
|
|
|
if (!result) {
|
2013-02-08 19:39:18 +00:00
|
|
|
GST_DEBUG ("Did not create track element");
|
2012-12-20 23:23:54 +00:00
|
|
|
return NULL;
|
2010-07-07 14:51:39 +00:00
|
|
|
}
|
2012-01-30 16:47:42 +00:00
|
|
|
|
2012-12-20 23:23:54 +00:00
|
|
|
return g_list_append (NULL, result);
|
2010-07-07 14:51:39 +00:00
|
|
|
}
|
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
void
|
2013-04-23 23:04:04 +00:00
|
|
|
ges_clip_set_layer (GESClip * clip, GESLayer * layer)
|
2009-08-06 15:38:43 +00:00
|
|
|
{
|
2013-07-02 23:47:48 +00:00
|
|
|
if (layer == clip->priv->layer)
|
|
|
|
return;
|
2009-08-06 15:38:43 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
clip->priv->layer = layer;
|
2013-03-23 07:45:00 +00:00
|
|
|
|
2013-07-02 23:47:48 +00:00
|
|
|
GST_DEBUG ("clip:%p, layer:%p", clip, layer);
|
|
|
|
|
2013-03-23 07:45:00 +00:00
|
|
|
/* We do not want to notify the setting of layer = NULL when
|
|
|
|
* it is actually the result of a move between layer (as we know
|
|
|
|
* that it will be added to another layer right after, and this
|
|
|
|
* is what imports here.) */
|
2013-07-02 23:47:48 +00:00
|
|
|
if (layer && !clip->priv->is_moving)
|
2013-03-23 07:45:00 +00:00
|
|
|
g_object_notify_by_pspec (G_OBJECT (clip), properties[PROP_LAYER]);
|
2009-08-06 15:38:43 +00:00
|
|
|
}
|
|
|
|
|
2013-07-02 00:35:39 +00:00
|
|
|
guint32
|
|
|
|
ges_clip_get_layer_priority (GESClip * clip)
|
|
|
|
{
|
|
|
|
if (clip->priv->layer == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return ges_layer_get_priority (clip->priv->layer);
|
|
|
|
}
|
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
gboolean
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_fill_track_element (GESClip * clip,
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement * trackelement, GstElement * gnlobj)
|
2009-08-06 15:38:43 +00:00
|
|
|
{
|
2013-01-20 15:42:29 +00:00
|
|
|
GESClipClass *class;
|
2009-09-21 10:51:16 +00:00
|
|
|
gboolean res = TRUE;
|
2009-08-06 15:38:43 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GST_DEBUG ("clip:%p, trackelement:%p, gnlobject:%p",
|
|
|
|
clip, trackelement, gnlobj);
|
2009-08-06 15:38:43 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
class = GES_CLIP_GET_CLASS (clip);
|
2009-08-06 15:38:43 +00:00
|
|
|
|
2009-09-21 10:51:16 +00:00
|
|
|
if (class->need_fill_track) {
|
2013-01-26 15:31:33 +00:00
|
|
|
if (G_UNLIKELY (class->fill_track_element == NULL)) {
|
|
|
|
GST_WARNING ("No 'fill_track_element' implementation available");
|
2009-09-21 10:51:16 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2009-08-06 15:38:43 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
res = class->fill_track_element (clip, trackelement, gnlobj);
|
2009-09-21 10:51:16 +00:00
|
|
|
}
|
2009-08-06 15:38:43 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("Returning res:%d", res);
|
2009-08-06 09:23:01 +00:00
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
return res;
|
2009-08-06 09:23:01 +00:00
|
|
|
}
|
2009-08-07 14:39:45 +00:00
|
|
|
|
|
|
|
gboolean
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_fill_track_element_func (GESClip * clip,
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement * trackelement, GstElement * gnlobj)
|
2009-08-07 14:39:45 +00:00
|
|
|
{
|
2013-01-26 15:31:33 +00:00
|
|
|
GST_WARNING ("No 'fill_track_element' implementation !");
|
2009-08-07 14:39:45 +00:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-08-07 18:33:18 +00:00
|
|
|
|
2011-06-06 19:55:47 +00:00
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_set_moving_from_layer:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: a #GESClip
|
|
|
|
* @is_moving: %TRUE if you want to start moving @clip to another layer
|
2011-06-06 19:55:47 +00:00
|
|
|
* %FALSE when you finished moving it.
|
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Sets the clip in a moving to layer state. You might rather use the
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_move_to_layer function to move #GESClip-s
|
2011-06-06 19:55:47 +00:00
|
|
|
* from a layer to another.
|
|
|
|
**/
|
|
|
|
void
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_set_moving_from_layer (GESClip * clip, gboolean is_moving)
|
2011-06-06 19:55:47 +00:00
|
|
|
{
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_if_fail (GES_IS_CLIP (clip));
|
2011-12-07 23:50:13 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
clip->priv->is_moving = is_moving;
|
2011-06-06 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_is_moving_from_layer:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: a #GESClip
|
2011-06-06 19:55:47 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Tells you if the clip is currently moving from a layer to another.
|
2013-01-20 15:42:29 +00:00
|
|
|
* You might rather use the ges_clip_move_to_layer function to
|
|
|
|
* move #GESClip-s from a layer to another.
|
2011-06-06 19:55:47 +00:00
|
|
|
*
|
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Returns: %TRUE if @clip is currently moving from its current layer
|
2011-06-06 19:55:47 +00:00
|
|
|
* %FALSE otherwize
|
|
|
|
**/
|
|
|
|
gboolean
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_is_moving_from_layer (GESClip * clip)
|
2011-06-06 19:55:47 +00:00
|
|
|
{
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), FALSE);
|
2012-04-20 23:02:19 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
return clip->priv->is_moving;
|
2011-06-06 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_move_to_layer:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: a #GESClip
|
2013-04-23 23:04:04 +00:00
|
|
|
* @layer: the new #GESLayer
|
2011-06-06 19:55:47 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Moves @clip to @layer. If @clip is not in any layer, it adds it to
|
2011-06-06 19:55:47 +00:00
|
|
|
* @layer, else, it removes it from its current layer, and adds it to @layer.
|
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Returns: %TRUE if @clip could be moved %FALSE otherwize
|
2011-06-06 19:55:47 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
2013-04-23 23:04:04 +00:00
|
|
|
ges_clip_move_to_layer (GESClip * clip, GESLayer * layer)
|
2011-06-06 19:55:47 +00:00
|
|
|
{
|
|
|
|
gboolean ret;
|
2013-04-23 23:04:04 +00:00
|
|
|
GESLayer *current_layer;
|
2011-12-07 23:50:13 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), FALSE);
|
2013-04-23 23:04:04 +00:00
|
|
|
g_return_val_if_fail (GES_IS_LAYER (layer), FALSE);
|
2011-12-07 23:50:13 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
current_layer = clip->priv->layer;
|
2011-06-06 19:55:47 +00:00
|
|
|
|
|
|
|
if (current_layer == NULL) {
|
2013-02-15 02:34:48 +00:00
|
|
|
GST_DEBUG ("Not moving %p, only adding it to %p", clip, layer);
|
2011-06-06 19:55:47 +00:00
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
return ges_layer_add_clip (layer, clip);
|
2011-06-06 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GST_DEBUG_OBJECT (clip, "moving to layer %p, priority: %d", layer,
|
2013-04-23 23:04:04 +00:00
|
|
|
ges_layer_get_priority (layer));
|
2012-01-20 20:03:58 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
clip->priv->is_moving = TRUE;
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_ref (clip);
|
2013-04-23 23:04:04 +00:00
|
|
|
ret = ges_layer_remove_clip (current_layer, clip);
|
2011-06-06 19:55:47 +00:00
|
|
|
|
|
|
|
if (!ret) {
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_unref (clip);
|
2011-06-06 19:55:47 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
ret = ges_layer_add_clip (layer, clip);
|
2013-02-15 02:34:48 +00:00
|
|
|
clip->priv->is_moving = FALSE;
|
2011-06-06 19:55:47 +00:00
|
|
|
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_unref (clip);
|
2013-07-02 23:47:48 +00:00
|
|
|
g_object_notify_by_pspec (G_OBJECT (clip), properties[PROP_LAYER]);
|
2011-06-06 19:55:47 +00:00
|
|
|
|
2013-07-02 23:47:48 +00:00
|
|
|
|
|
|
|
return ret && (clip->priv->layer == layer);
|
2011-06-06 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
2010-03-12 16:17:30 +00:00
|
|
|
/**
|
2013-01-26 15:31:33 +00:00
|
|
|
* ges_clip_find_track_element:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: a #GESClip
|
2010-07-13 16:42:46 +00:00
|
|
|
* @track: a #GESTrack or NULL
|
2013-02-08 19:39:18 +00:00
|
|
|
* @type: a #GType indicating the type of track element you are looking
|
2010-07-13 16:42:46 +00:00
|
|
|
* for or %G_TYPE_NONE if you do not care about the track type.
|
2010-03-12 16:17:30 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Finds the #GESTrackElement controlled by @clip that is used in @track. You
|
2010-07-13 16:42:46 +00:00
|
|
|
* may optionally specify a GType to further narrow search criteria.
|
2010-03-12 16:17:30 +00:00
|
|
|
*
|
2011-05-06 17:38:26 +00:00
|
|
|
* Note: If many objects match, then the one with the highest priority will be
|
|
|
|
* returned.
|
2010-03-12 16:17:30 +00:00
|
|
|
*
|
2013-03-31 10:34:58 +00:00
|
|
|
* Returns: (transfer full): The #GESTrackElement used by @track, else %NULL,
|
|
|
|
* Unref after usage
|
2010-03-12 16:17:30 +00:00
|
|
|
*/
|
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_find_track_element (GESClip * clip, GESTrack * track, GType type)
|
2010-03-12 16:17:30 +00:00
|
|
|
{
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *ret = NULL;
|
2010-12-16 15:27:26 +00:00
|
|
|
GList *tmp;
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *otmp;
|
2010-03-12 16:17:30 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), NULL);
|
2011-05-06 17:40:22 +00:00
|
|
|
g_return_val_if_fail (GES_IS_TRACK (track), NULL);
|
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
for (tmp = GES_CONTAINER_CHILDREN (clip); tmp; tmp = g_list_next (tmp)) {
|
2013-01-26 15:31:33 +00:00
|
|
|
otmp = (GESTrackElement *) tmp->data;
|
2010-12-16 14:00:46 +00:00
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
if (ges_track_element_get_track (otmp) == track) {
|
2011-05-06 17:40:22 +00:00
|
|
|
if ((type != G_TYPE_NONE) &&
|
|
|
|
!G_TYPE_CHECK_INSTANCE_TYPE (tmp->data, type))
|
2010-12-16 15:27:26 +00:00
|
|
|
continue;
|
2010-07-13 16:42:46 +00:00
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
ret = GES_TRACK_ELEMENT (tmp->data);
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_ref (ret);
|
2010-12-16 15:27:26 +00:00
|
|
|
break;
|
2010-12-16 14:00:46 +00:00
|
|
|
}
|
2010-03-12 16:17:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2010-07-09 11:49:23 +00:00
|
|
|
|
2010-11-28 12:24:07 +00:00
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_get_layer:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: a #GESClip
|
2010-11-28 12:24:07 +00:00
|
|
|
*
|
2013-04-23 23:04:04 +00:00
|
|
|
* Get the #GESLayer to which this clip belongs.
|
2010-11-28 12:24:07 +00:00
|
|
|
*
|
2013-04-23 23:04:04 +00:00
|
|
|
* Returns: (transfer full): The #GESLayer where this @clip is being
|
2011-05-09 12:24:26 +00:00
|
|
|
* used, or %NULL if it is not used on any layer. The caller should unref it
|
2011-05-06 17:38:26 +00:00
|
|
|
* usage.
|
2010-11-28 12:24:07 +00:00
|
|
|
*/
|
2013-04-23 23:04:04 +00:00
|
|
|
GESLayer *
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_get_layer (GESClip * clip)
|
2010-11-28 12:24:07 +00:00
|
|
|
{
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), NULL);
|
2010-11-28 12:24:07 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
if (clip->priv->layer != NULL)
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_ref (G_OBJECT (clip->priv->layer));
|
2010-11-28 12:24:07 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
return clip->priv->layer;
|
2010-11-28 12:24:07 +00:00
|
|
|
}
|
|
|
|
|
2011-01-31 10:32:14 +00:00
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_get_top_effects:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: The origin #GESClip
|
2011-05-07 14:59:06 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Get effects applied on @clip
|
2011-05-07 14:59:06 +00:00
|
|
|
*
|
2013-01-26 15:31:33 +00:00
|
|
|
* Returns: (transfer full) (element-type GESTrackElement): a #GList of the
|
2013-02-15 02:34:48 +00:00
|
|
|
* #GESBaseEffect that are applied on @clip order by ascendant priorities.
|
2011-05-07 14:59:06 +00:00
|
|
|
* The refcount of the objects will be increased. The user will have to
|
2013-01-26 15:35:19 +00:00
|
|
|
* unref each #GESBaseEffect and free the #GList.
|
2011-05-07 14:59:06 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.2
|
|
|
|
*/
|
2011-01-31 10:32:14 +00:00
|
|
|
GList *
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_get_top_effects (GESClip * clip)
|
2011-01-31 10:32:14 +00:00
|
|
|
{
|
|
|
|
GList *tmp, *ret;
|
2011-02-16 16:45:05 +00:00
|
|
|
guint i;
|
2011-01-31 10:32:14 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), NULL);
|
2011-12-07 23:50:13 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GST_DEBUG_OBJECT (clip, "Getting the %i top effects", clip->priv->nb_effects);
|
2011-01-31 10:32:14 +00:00
|
|
|
ret = NULL;
|
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
for (tmp = GES_CONTAINER_CHILDREN (clip), i = 0;
|
|
|
|
i < clip->priv->nb_effects; tmp = tmp->next, i++) {
|
2013-03-16 22:05:04 +00:00
|
|
|
ret = g_list_append (ret, gst_object_ref (tmp->data));
|
2011-01-31 10:32:14 +00:00
|
|
|
}
|
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
return g_list_sort (ret, (GCompareFunc) element_start_compare);
|
2011-01-31 10:32:14 +00:00
|
|
|
}
|
2010-12-16 15:27:26 +00:00
|
|
|
|
2011-01-31 10:41:37 +00:00
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_get_top_effect_position:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: The origin #GESClip
|
2013-01-26 15:35:19 +00:00
|
|
|
* @effect: The #GESBaseEffect we want to get the top position from
|
2011-05-07 14:59:06 +00:00
|
|
|
*
|
|
|
|
* Gets the top position of an effect.
|
|
|
|
*
|
|
|
|
* Returns: The top position of the effect, -1 if something went wrong.
|
|
|
|
*
|
|
|
|
* Since: 0.10.2
|
|
|
|
*/
|
2011-01-31 10:41:37 +00:00
|
|
|
gint
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_get_top_effect_position (GESClip * clip, GESBaseEffect * effect)
|
2011-01-31 10:41:37 +00:00
|
|
|
{
|
2013-03-01 01:27:50 +00:00
|
|
|
guint max_prio, min_prio;
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), -1);
|
2013-03-01 01:27:50 +00:00
|
|
|
g_return_val_if_fail (GES_IS_BASE_EFFECT (effect), -1);
|
|
|
|
|
2013-03-30 11:30:47 +00:00
|
|
|
_get_priority_range (GES_CONTAINER (clip), &min_prio, &max_prio);
|
2011-12-07 23:50:13 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
return GES_TIMELINE_ELEMENT_PRIORITY (effect) - min_prio +
|
|
|
|
GES_TIMELINE_ELEMENT_PRIORITY (clip);
|
2011-01-31 10:41:37 +00:00
|
|
|
}
|
|
|
|
|
2011-02-04 10:44:19 +00:00
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_set_top_effect_priority:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: The origin #GESClip
|
2013-01-26 15:35:19 +00:00
|
|
|
* @effect: The #GESBaseEffect to move
|
2011-05-07 14:59:06 +00:00
|
|
|
* @newpriority: the new position at which to move the @effect inside this
|
2013-01-20 15:42:29 +00:00
|
|
|
* #GESClip
|
2011-05-07 14:59:06 +00:00
|
|
|
*
|
|
|
|
* This is a convenience method that lets you set the priority of a top effect.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if @effect was successfuly moved, %FALSE otherwise.
|
|
|
|
*
|
|
|
|
* Since: 0.10.2
|
|
|
|
*/
|
2011-02-04 10:44:19 +00:00
|
|
|
gboolean
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_set_top_effect_priority (GESClip * clip,
|
2013-01-26 15:35:19 +00:00
|
|
|
GESBaseEffect * effect, guint newpriority)
|
2011-02-04 10:44:19 +00:00
|
|
|
{
|
2011-02-16 16:51:21 +00:00
|
|
|
gint inc;
|
2011-12-07 23:50:13 +00:00
|
|
|
GList *tmp;
|
|
|
|
guint current_prio;
|
2013-02-10 00:49:16 +00:00
|
|
|
GESTrackElement *track_element;
|
2011-12-07 23:50:13 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), FALSE);
|
2011-12-07 23:50:13 +00:00
|
|
|
|
2013-02-10 00:49:16 +00:00
|
|
|
track_element = GES_TRACK_ELEMENT (effect);
|
|
|
|
current_prio = _PRIORITY (track_element);
|
2011-02-04 10:44:19 +00:00
|
|
|
|
2013-03-29 18:23:00 +00:00
|
|
|
/* FIXME, do we actually want to change what the user is telling us to do? */
|
|
|
|
newpriority = newpriority + MIN_GNL_PRIO;
|
2011-02-04 10:44:19 +00:00
|
|
|
/* We don't change the priority */
|
2011-02-16 16:51:21 +00:00
|
|
|
if (current_prio == newpriority ||
|
2013-03-01 01:27:50 +00:00
|
|
|
(G_UNLIKELY (GES_CLIP (GES_TIMELINE_ELEMENT_PARENT (track_element)) !=
|
|
|
|
clip)))
|
2011-02-04 10:44:19 +00:00
|
|
|
return FALSE;
|
2011-02-16 16:51:21 +00:00
|
|
|
|
2013-03-29 18:23:00 +00:00
|
|
|
if (newpriority > (clip->priv->nb_effects - 1 + MIN_GNL_PRIO)) {
|
2011-02-16 16:51:21 +00:00
|
|
|
GST_DEBUG ("You are trying to make %p not a top effect", effect);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-03-29 18:23:00 +00:00
|
|
|
if (current_prio > clip->priv->nb_effects + MIN_GNL_PRIO) {
|
2012-04-17 15:18:21 +00:00
|
|
|
GST_DEBUG ("%p is not a top effect", effect);
|
2011-02-16 16:51:21 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
_ges_container_sort_children (GES_CONTAINER (clip));
|
2013-02-10 00:49:16 +00:00
|
|
|
if (_PRIORITY (track_element) < newpriority)
|
2011-02-04 10:44:19 +00:00
|
|
|
inc = -1;
|
|
|
|
else
|
|
|
|
inc = +1;
|
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
GST_DEBUG_OBJECT (clip, "Setting top effect %" GST_PTR_FORMAT "priority: %i",
|
|
|
|
effect, newpriority);
|
|
|
|
|
|
|
|
for (tmp = GES_CONTAINER_CHILDREN (clip); tmp; tmp = tmp->next) {
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *tmpo = GES_TRACK_ELEMENT (tmp->data);
|
2013-01-15 13:52:17 +00:00
|
|
|
guint tck_priority = _PRIORITY (tmpo);
|
2011-02-04 10:44:19 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
if (tmpo == track_element)
|
|
|
|
continue;
|
|
|
|
|
2011-02-04 10:44:19 +00:00
|
|
|
if ((inc == +1 && tck_priority >= newpriority) ||
|
|
|
|
(inc == -1 && tck_priority <= newpriority)) {
|
2013-01-15 13:52:17 +00:00
|
|
|
_set_priority0 (GES_TIMELINE_ELEMENT (tmpo), tck_priority + inc);
|
2011-02-04 10:44:19 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-01 01:27:50 +00:00
|
|
|
_set_priority0 (GES_TIMELINE_ELEMENT (track_element), newpriority);
|
2011-02-04 10:44:19 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-08-24 09:48:14 +00:00
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_split:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: the #GESClip to split
|
2012-04-20 23:22:56 +00:00
|
|
|
* @position: a #GstClockTime representing the position at which to split
|
2011-08-24 09:48:14 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* The function modifies @clip, and creates another #GESClip so
|
2011-08-24 09:48:14 +00:00
|
|
|
* we have two clips at the end, splitted at the time specified by @position.
|
2013-03-18 13:02:10 +00:00
|
|
|
* The newly created clip will be added to the same layer as @clip is in.
|
2013-04-23 23:04:04 +00:00
|
|
|
* This implies that @clip must be in a #GESLayer for the operation to
|
2013-03-18 13:02:10 +00:00
|
|
|
* be possible.
|
2011-08-24 09:48:14 +00:00
|
|
|
*
|
2013-03-18 13:02:10 +00:00
|
|
|
* Returns: (transfer none): The newly created #GESClip resulting from the
|
|
|
|
* splitting
|
2011-08-24 09:48:14 +00:00
|
|
|
*/
|
2013-01-20 15:42:29 +00:00
|
|
|
GESClip *
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_split (GESClip * clip, guint64 position)
|
2011-08-24 09:48:14 +00:00
|
|
|
{
|
2012-04-20 23:19:49 +00:00
|
|
|
GList *tmp;
|
2013-01-20 15:42:29 +00:00
|
|
|
GESClip *new_object;
|
2012-04-20 23:19:49 +00:00
|
|
|
|
|
|
|
GstClockTime start, inpoint, duration;
|
2011-08-24 09:48:14 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), NULL);
|
2013-03-18 13:02:10 +00:00
|
|
|
g_return_val_if_fail (clip->priv->layer, NULL);
|
2012-04-20 23:22:56 +00:00
|
|
|
g_return_val_if_fail (GST_CLOCK_TIME_IS_VALID (position), NULL);
|
2011-08-24 09:48:14 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
duration = _DURATION (clip);
|
|
|
|
start = _START (clip);
|
|
|
|
inpoint = _INPOINT (clip);
|
2011-08-24 09:48:14 +00:00
|
|
|
|
2012-04-20 23:19:49 +00:00
|
|
|
if (position >= start + duration || position <= start) {
|
2013-02-15 02:34:48 +00:00
|
|
|
GST_WARNING_OBJECT (clip, "Can not split %" GST_TIME_FORMAT
|
2012-04-20 23:19:49 +00:00
|
|
|
" out of boundaries", GST_TIME_ARGS (position));
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-08-24 09:48:14 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GST_DEBUG_OBJECT (clip, "Spliting at %" GST_TIME_FORMAT,
|
2012-04-20 23:19:49 +00:00
|
|
|
GST_TIME_ARGS (position));
|
2011-08-24 09:48:14 +00:00
|
|
|
|
2013-01-20 15:42:29 +00:00
|
|
|
/* Create the new Clip */
|
2013-03-01 01:27:50 +00:00
|
|
|
new_object = GES_CLIP (ges_timeline_element_copy (GES_TIMELINE_ELEMENT (clip),
|
|
|
|
FALSE));
|
2011-08-24 09:48:14 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
GST_DEBUG_OBJECT (new_object, "New 'splitted' clip");
|
2013-01-20 15:42:29 +00:00
|
|
|
/* Set new timing properties on the Clip */
|
2013-01-15 13:52:17 +00:00
|
|
|
_set_start0 (GES_TIMELINE_ELEMENT (new_object), position);
|
|
|
|
_set_inpoint0 (GES_TIMELINE_ELEMENT (new_object),
|
2013-02-15 02:34:48 +00:00
|
|
|
_INPOINT (clip) + duration - (duration + start - position));
|
2013-01-15 13:52:17 +00:00
|
|
|
_set_duration0 (GES_TIMELINE_ELEMENT (new_object),
|
|
|
|
duration + start - position);
|
2012-04-20 23:19:49 +00:00
|
|
|
|
2013-03-18 13:02:10 +00:00
|
|
|
/* We do not want the timeline to create again TrackElement-s */
|
|
|
|
ges_clip_set_moving_from_layer (new_object, TRUE);
|
2013-04-23 23:04:04 +00:00
|
|
|
ges_layer_add_clip (clip->priv->layer, new_object);
|
2013-03-18 13:02:10 +00:00
|
|
|
ges_clip_set_moving_from_layer (new_object, FALSE);
|
2011-08-24 09:48:14 +00:00
|
|
|
|
2013-04-19 00:45:18 +00:00
|
|
|
_set_duration0 (GES_TIMELINE_ELEMENT (clip), position - _START (clip));
|
2013-03-01 01:27:50 +00:00
|
|
|
for (tmp = GES_CONTAINER_CHILDREN (clip); tmp; tmp = tmp->next) {
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *new_trackelement, *trackelement =
|
|
|
|
GES_TRACK_ELEMENT (tmp->data);
|
2012-04-20 23:19:49 +00:00
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
new_trackelement =
|
|
|
|
GES_TRACK_ELEMENT (ges_timeline_element_copy (GES_TIMELINE_ELEMENT
|
2013-07-24 18:26:18 +00:00
|
|
|
(trackelement), FALSE));
|
2013-01-26 15:31:33 +00:00
|
|
|
if (new_trackelement == NULL) {
|
|
|
|
GST_WARNING_OBJECT (trackelement, "Could not create a copy");
|
2012-04-20 23:19:49 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-02-08 19:39:18 +00:00
|
|
|
/* Set 'new' track element timing propeties */
|
2013-01-26 15:31:33 +00:00
|
|
|
_set_start0 (GES_TIMELINE_ELEMENT (new_trackelement), position);
|
|
|
|
_set_inpoint0 (GES_TIMELINE_ELEMENT (new_trackelement),
|
2013-01-15 13:52:17 +00:00
|
|
|
inpoint + duration - (duration + start - position));
|
2013-01-26 15:31:33 +00:00
|
|
|
_set_duration0 (GES_TIMELINE_ELEMENT (new_trackelement),
|
2013-01-15 13:52:17 +00:00
|
|
|
duration + start - position);
|
2012-04-20 23:19:49 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
ges_container_add (GES_CONTAINER (new_object),
|
|
|
|
GES_TIMELINE_ELEMENT (new_trackelement));
|
2013-07-24 18:26:18 +00:00
|
|
|
ges_track_element_copy_properties (GES_TIMELINE_ELEMENT (trackelement),
|
|
|
|
GES_TIMELINE_ELEMENT (new_trackelement));
|
2012-04-20 23:19:49 +00:00
|
|
|
}
|
2011-08-24 09:48:14 +00:00
|
|
|
|
|
|
|
return new_object;
|
|
|
|
}
|
|
|
|
|
2011-12-07 23:17:55 +00:00
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_set_supported_formats:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: the #GESClip to set supported formats on
|
|
|
|
* @supportedformats: the #GESTrackType defining formats supported by @clip
|
2011-12-07 23:17:55 +00:00
|
|
|
*
|
|
|
|
* Sets the formats supported by the file.
|
|
|
|
*
|
|
|
|
* Since: 0.10.XX
|
|
|
|
*/
|
|
|
|
void
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_set_supported_formats (GESClip * clip, GESTrackType supportedformats)
|
2011-12-07 23:17:55 +00:00
|
|
|
{
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_if_fail (GES_IS_CLIP (clip));
|
2011-12-07 23:17:55 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
clip->priv->supportedformats = supportedformats;
|
2011-12-07 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_get_supported_formats:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: the #GESClip
|
2011-12-07 23:17:55 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Get the formats supported by @clip.
|
2011-12-07 23:17:55 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Returns: The formats supported by @clip.
|
2011-12-07 23:17:55 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.XX
|
|
|
|
*/
|
|
|
|
GESTrackType
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_get_supported_formats (GESClip * clip)
|
2011-12-07 23:17:55 +00:00
|
|
|
{
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), GES_TRACK_TYPE_UNKNOWN);
|
2011-12-07 23:17:55 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
return clip->priv->supportedformats;
|
2011-12-07 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
2012-04-24 00:52:45 +00:00
|
|
|
gboolean
|
2013-01-15 13:52:17 +00:00
|
|
|
_ripple (GESTimelineElement * element, GstClockTime start)
|
2012-04-24 00:52:45 +00:00
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GESTimeline *timeline;
|
2013-02-15 02:34:48 +00:00
|
|
|
GESClip *clip = GES_CLIP (element);
|
2012-04-24 00:52:45 +00:00
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
timeline = ges_layer_get_timeline (clip->priv->layer);
|
2012-04-24 00:52:45 +00:00
|
|
|
|
|
|
|
if (timeline == NULL) {
|
|
|
|
GST_DEBUG ("Not in a timeline yet");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-06-25 22:37:48 +00:00
|
|
|
if (start > _END (element))
|
|
|
|
start = _END (element);
|
|
|
|
|
2013-03-22 22:44:28 +00:00
|
|
|
if (GES_CONTAINER_CHILDREN (element)) {
|
|
|
|
GESTrackElement *track_element =
|
|
|
|
GES_TRACK_ELEMENT (GES_CONTAINER_CHILDREN (element)->data);
|
|
|
|
|
|
|
|
ret = timeline_ripple_object (timeline, track_element, NULL, GES_EDGE_NONE,
|
|
|
|
start);
|
2012-04-24 00:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-01-15 13:52:17 +00:00
|
|
|
static gboolean
|
|
|
|
_ripple_end (GESTimelineElement * element, GstClockTime end)
|
2012-04-24 00:52:45 +00:00
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GESTimeline *timeline;
|
2013-02-15 02:34:48 +00:00
|
|
|
GESClip *clip = GES_CLIP (element);
|
2012-04-24 00:52:45 +00:00
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
timeline = ges_layer_get_timeline (clip->priv->layer);
|
2012-04-24 00:52:45 +00:00
|
|
|
|
|
|
|
if (timeline == NULL) {
|
|
|
|
GST_DEBUG ("Not in a timeline yet");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-03-22 22:44:28 +00:00
|
|
|
if (GES_CONTAINER_CHILDREN (element)) {
|
|
|
|
GESTrackElement *track_element =
|
|
|
|
GES_TRACK_ELEMENT (GES_CONTAINER_CHILDREN (element)->data);
|
|
|
|
|
|
|
|
ret = timeline_ripple_object (timeline, track_element, NULL, GES_EDGE_END,
|
|
|
|
end);
|
2012-04-24 00:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2013-01-15 13:52:17 +00:00
|
|
|
_roll_start (GESTimelineElement * element, GstClockTime start)
|
2012-04-24 00:52:45 +00:00
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GESTimeline *timeline;
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GESClip *clip = GES_CLIP (element);
|
2012-04-24 00:52:45 +00:00
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
timeline = ges_layer_get_timeline (clip->priv->layer);
|
2012-04-24 00:52:45 +00:00
|
|
|
|
|
|
|
if (timeline == NULL) {
|
|
|
|
GST_DEBUG ("Not in a timeline yet");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-03-22 22:44:28 +00:00
|
|
|
if (GES_CONTAINER_CHILDREN (element)) {
|
|
|
|
GESTrackElement *track_element =
|
|
|
|
GES_TRACK_ELEMENT (GES_CONTAINER_CHILDREN (element)->data);
|
|
|
|
|
|
|
|
ret = timeline_roll_object (timeline, track_element, NULL, GES_EDGE_START,
|
|
|
|
start);
|
2012-04-24 00:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2013-01-15 13:52:17 +00:00
|
|
|
_roll_end (GESTimelineElement * element, GstClockTime end)
|
2012-04-24 00:52:45 +00:00
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GESTimeline *timeline;
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GESClip *clip = GES_CLIP (element);
|
2012-04-24 00:52:45 +00:00
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
timeline = ges_layer_get_timeline (clip->priv->layer);
|
2012-04-24 00:52:45 +00:00
|
|
|
if (timeline == NULL) {
|
|
|
|
GST_DEBUG ("Not in a timeline yet");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-22 22:44:28 +00:00
|
|
|
if (GES_CONTAINER_CHILDREN (element)) {
|
|
|
|
GESTrackElement *track_element =
|
|
|
|
GES_TRACK_ELEMENT (GES_CONTAINER_CHILDREN (element)->data);
|
|
|
|
|
|
|
|
ret = timeline_roll_object (timeline, track_element,
|
|
|
|
NULL, GES_EDGE_END, end);
|
2012-04-24 00:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2013-01-15 13:52:17 +00:00
|
|
|
_trim (GESTimelineElement * element, GstClockTime start)
|
2012-04-24 00:52:45 +00:00
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GESTimeline *timeline;
|
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GESClip *clip = GES_CLIP (element);
|
2012-04-24 00:52:45 +00:00
|
|
|
|
2013-04-23 23:04:04 +00:00
|
|
|
timeline = ges_layer_get_timeline (clip->priv->layer);
|
2012-04-24 00:52:45 +00:00
|
|
|
|
|
|
|
if (timeline == NULL) {
|
|
|
|
GST_DEBUG ("Not in a timeline yet");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-03-22 22:44:28 +00:00
|
|
|
if (GES_CONTAINER_CHILDREN (element)) {
|
|
|
|
GESTrackElement *track_element =
|
|
|
|
GES_TRACK_ELEMENT (GES_CONTAINER_CHILDREN (element)->data);
|
|
|
|
|
|
|
|
ret = timeline_trim_object (timeline, track_element, NULL, GES_EDGE_START,
|
|
|
|
start);
|
2012-04-24 00:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-11-27 15:18:27 +00:00
|
|
|
/**
|
2013-01-20 15:42:29 +00:00
|
|
|
* ges_clip_add_asset:
|
2013-02-15 02:34:48 +00:00
|
|
|
* @clip: a #GESClip
|
2013-01-26 15:31:33 +00:00
|
|
|
* @asset: a #GESAsset with #GES_TYPE_TRACK_ELEMENT as extractable_type
|
2012-11-27 15:18:27 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Extracts a #GESTrackElement from @asset and adds it to the @clip.
|
2013-01-20 15:42:29 +00:00
|
|
|
* Should only be called in order to add operations to a #GESClip,
|
2013-01-26 15:31:33 +00:00
|
|
|
* ni other cases TrackElement are added automatically when adding the
|
2013-01-20 15:42:29 +00:00
|
|
|
* #GESClip/#GESAsset to a layer.
|
2012-11-27 15:18:27 +00:00
|
|
|
*
|
2013-02-15 02:34:48 +00:00
|
|
|
* Takes a reference on @track_element.
|
2012-11-27 15:18:27 +00:00
|
|
|
*
|
|
|
|
* Returns: %TRUE on success, %FALSE on failure.
|
|
|
|
*/
|
|
|
|
gboolean
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_clip_add_asset (GESClip * clip, GESAsset * asset)
|
2012-11-27 15:18:27 +00:00
|
|
|
{
|
2013-02-15 02:34:48 +00:00
|
|
|
g_return_val_if_fail (GES_IS_CLIP (clip), FALSE);
|
2012-11-27 15:18:27 +00:00
|
|
|
g_return_val_if_fail (GES_IS_ASSET (asset), FALSE);
|
|
|
|
g_return_val_if_fail (g_type_is_a (ges_asset_get_extractable_type
|
2013-01-26 15:31:33 +00:00
|
|
|
(asset), GES_TYPE_TRACK_ELEMENT), FALSE);
|
2012-11-27 15:18:27 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
return ges_container_add (GES_CONTAINER (clip),
|
|
|
|
GES_TIMELINE_ELEMENT (ges_asset_extract (asset, NULL)));
|
2010-07-09 11:49:23 +00:00
|
|
|
}
|