1 /* GStreamer Editing Services
2  * Copyright (C) 2011 Thibault Saunier <thibault.saunier@collabora.co.uk>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 
20 /**
21  * SECTION: gesbaseeffectclip
22  * @title: GESBaseEffectClip
23  * @short_description: An effect in a GESLayer
24  *
25  * The effect will be applied on the sources that have lower priorities
26  * (higher number) between the inpoint and the end of it.
27  */
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
31 
32 #include <ges/ges.h>
33 #include "ges-internal.h"
34 #include "ges-types.h"
35 
36 struct _GESBaseEffectClipPrivate
37 {
38   void *nothing;
39 };
40 
41 G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (GESBaseEffectClip, ges_base_effect_clip,
42     GES_TYPE_OPERATION_CLIP);
43 
44 static void
ges_base_effect_clip_class_init(GESBaseEffectClipClass * klass)45 ges_base_effect_clip_class_init (GESBaseEffectClipClass * klass)
46 {
47 }
48 
49 static void
ges_base_effect_clip_init(GESBaseEffectClip * self)50 ges_base_effect_clip_init (GESBaseEffectClip * self)
51 {
52   self->priv = ges_base_effect_clip_get_instance_private (self);
53 
54 }
55