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
|
2020-03-02 12:56:03 +00:00
|
|
|
* @short_description: Base Class for sources of a #GESLayer
|
|
|
|
*
|
|
|
|
* #GESSourceClip-s are clips whose core elements are #GESSource-s.
|
|
|
|
*
|
|
|
|
* ## Effects
|
|
|
|
*
|
|
|
|
* #GESSourceClip-s can also have #GESBaseEffect-s added as non-core
|
|
|
|
* elements. These effects are applied to the core sources of the clip
|
|
|
|
* that they share a #GESTrack with. See #GESClip for how to add and move
|
|
|
|
* these effects from the clip.
|
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,
|
|
|
|
};
|
|
|
|
|
2020-03-17 14:53:47 +00:00
|
|
|
static void
|
|
|
|
extractable_interface_init (GESExtractableInterface * iface)
|
|
|
|
{
|
|
|
|
iface->asset_type = GES_TYPE_SOURCE_CLIP_ASSET;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GESSourceClip, ges_source_clip,
|
|
|
|
GES_TYPE_CLIP, G_ADD_PRIVATE (GESSourceClip)
|
|
|
|
G_IMPLEMENT_INTERFACE (GES_TYPE_EXTRACTABLE, extractable_interface_init));
|
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);
|
|
|
|
|
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;
|
2020-03-02 12:56:03 +00:00
|
|
|
|
|
|
|
GES_CLIP_CLASS_CAN_ADD_EFFECTS (klass) = TRUE;
|
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
|
|
|
}
|