1 /* GStreamer Editing Services
2  * Copyright (C) 2010 Brandon Lewis <brandon@collabora.co.uk>
3  *               2010 Nokia Corporation
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20 
21 /**
22  * SECTION:gestransition
23  * @title: GESTransition
24  * @short_description: base class for audio and video transitions
25  *
26  */
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30 
31 #include <ges/ges.h>
32 #include "ges-internal.h"
33 
34 struct _GESTransitionPrivate
35 {
36   /*  Dummy variable */
37   void *nothing;
38 };
39 
40 G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (GESTransition, ges_transition,
41     GES_TYPE_OPERATION);
42 
43 
44 static void
ges_transition_class_init(GESTransitionClass * klass)45 ges_transition_class_init (GESTransitionClass * klass)
46 {
47 }
48 
49 static void
ges_transition_init(GESTransition * self)50 ges_transition_init (GESTransition * self)
51 {
52   self->priv = ges_transition_get_instance_private (self);
53 }
54