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
|
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
|
|
|
*/
|
|
|
|
|
2009-09-10 16:40:51 +00:00
|
|
|
/**
|
2014-04-07 19:02:48 +00:00
|
|
|
* SECTION:gessourceclip
|
2017-03-08 21:13:48 +00:00
|
|
|
* @title: GESSourceClip
|
2013-04-23 23:04:04 +00:00
|
|
|
* @short_description: Base Class for sources of a GESLayer
|
2009-09-10 16:40:51 +00:00
|
|
|
*/
|
2018-09-24 14:41:24 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2009-09-10 16:40:51 +00:00
|
|
|
|
2009-08-06 17:51:29 +00:00
|
|
|
#include "ges-internal.h"
|
2013-01-20 15:42:29 +00:00
|
|
|
#include "ges-clip.h"
|
2013-01-17 03:35:39 +00:00
|
|
|
#include "ges-source-clip.h"
|
2013-01-26 16:08:20 +00:00
|
|
|
#include "ges-source.h"
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2010-12-04 18:54:13 +00:00
|
|
|
|
2013-01-17 03:35:39 +00:00
|
|
|
struct _GESSourceClipPrivate
|
2010-12-04 18:54:13 +00:00
|
|
|
{
|
|
|
|
/* dummy variable */
|
|
|
|
void *nothing;
|
|
|
|
};
|
|
|
|
|
2010-07-14 13:23:35 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
};
|
|
|
|
|
2018-09-06 01:55:02 +00:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GESSourceClip, ges_source_clip, GES_TYPE_CLIP);
|
2009-08-06 15:38:43 +00:00
|
|
|
|
2019-02-08 19:05:18 +00:00
|
|
|
static gboolean
|
|
|
|
_set_start (GESTimelineElement * element, GstClockTime start)
|
|
|
|
{
|
2019-03-01 22:32:19 +00:00
|
|
|
GESTimelineElement *toplevel =
|
|
|
|
ges_timeline_element_get_toplevel_parent (element);
|
|
|
|
|
|
|
|
gst_object_unref (toplevel);
|
|
|
|
if (element->timeline
|
|
|
|
&& !ELEMENT_FLAG_IS_SET (element, GES_TIMELINE_ELEMENT_SET_SIMPLE)
|
|
|
|
&& !ELEMENT_FLAG_IS_SET (toplevel, GES_TIMELINE_ELEMENT_SET_SIMPLE)) {
|
2019-05-02 15:41:10 +00:00
|
|
|
if (!ges_timeline_move_object_simple (element->timeline, element, NULL,
|
|
|
|
GES_EDGE_NONE, start))
|
|
|
|
return FALSE;
|
|
|
|
return -1;
|
2019-02-08 19:05:18 +00:00
|
|
|
}
|
|
|
|
|
2019-03-01 22:32:19 +00:00
|
|
|
return
|
|
|
|
GES_TIMELINE_ELEMENT_CLASS (ges_source_clip_parent_class)->set_start
|
|
|
|
(element, start);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_set_duration (GESTimelineElement * element, GstClockTime duration)
|
|
|
|
{
|
|
|
|
GESTimelineElement *toplevel =
|
|
|
|
ges_timeline_element_get_toplevel_parent (element);
|
|
|
|
|
|
|
|
gst_object_unref (toplevel);
|
|
|
|
if (element->timeline
|
|
|
|
&& !ELEMENT_FLAG_IS_SET (element, GES_TIMELINE_ELEMENT_SET_SIMPLE)
|
|
|
|
&& !ELEMENT_FLAG_IS_SET (toplevel, GES_TIMELINE_ELEMENT_SET_SIMPLE)) {
|
2019-12-14 17:04:54 +00:00
|
|
|
if (!timeline_trim_object (element->timeline, element,
|
|
|
|
GES_TIMELINE_ELEMENT_LAYER_PRIORITY (element), NULL, GES_EDGE_END,
|
|
|
|
element->start + duration))
|
|
|
|
return FALSE;
|
|
|
|
return -1;
|
2019-03-01 22:32:19 +00:00
|
|
|
}
|
2019-02-08 19:05:18 +00:00
|
|
|
|
2019-03-01 22:32:19 +00:00
|
|
|
return
|
|
|
|
GES_TIMELINE_ELEMENT_CLASS (ges_source_clip_parent_class)->set_duration
|
|
|
|
(element, duration);
|
2019-02-08 19:05:18 +00:00
|
|
|
}
|
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
static void
|
2013-01-17 03:35:39 +00:00
|
|
|
ges_source_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
|
|
|
{
|
|
|
|
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
|
2013-01-17 03:35:39 +00:00
|
|
|
ges_source_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
|
|
|
{
|
|
|
|
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
|
2013-01-17 03:35:39 +00:00
|
|
|
ges_source_clip_finalize (GObject * object)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2013-01-17 03:35:39 +00:00
|
|
|
G_OBJECT_CLASS (ges_source_clip_parent_class)->finalize (object);
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-01-17 03:35:39 +00:00
|
|
|
ges_source_clip_class_init (GESSourceClipClass * klass)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2019-02-08 19:05:18 +00:00
|
|
|
GESTimelineElementClass *element_class = GES_TIMELINE_ELEMENT_CLASS (klass);
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2013-01-17 03:35:39 +00:00
|
|
|
object_class->get_property = ges_source_clip_get_property;
|
|
|
|
object_class->set_property = ges_source_clip_set_property;
|
|
|
|
object_class->finalize = ges_source_clip_finalize;
|
2019-02-08 19:05:18 +00:00
|
|
|
|
|
|
|
element_class->set_start = _set_start;
|
2019-03-01 22:32:19 +00:00
|
|
|
element_class->set_duration = _set_duration;
|
2009-08-04 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-01-17 03:35:39 +00:00
|
|
|
ges_source_clip_init (GESSourceClip * self)
|
2009-08-04 15:13:11 +00:00
|
|
|
{
|
2018-09-06 01:55:02 +00:00
|
|
|
self->priv = ges_source_clip_get_instance_private (self);
|
2010-07-14 13:23:35 +00:00
|
|
|
}
|