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
|
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
|
|
|
*/
|
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
2013-01-17 03:35:39 +00:00
|
|
|
G_DEFINE_TYPE (GESSourceClip, ges_source_clip, GES_TYPE_CLIP);
|
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
|
|
|
g_type_class_add_private (klass, sizeof (GESSourceClipPrivate));
|
2010-12-04 18:54:13 +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;
|
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
|
|
|
{
|
2010-12-04 18:54:13 +00:00
|
|
|
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
|
2013-01-17 03:35:39 +00:00
|
|
|
GES_TYPE_SOURCE_CLIP, GESSourceClipPrivate);
|
2010-07-14 13:23:35 +00:00
|
|
|
}
|