1a01bf925d0fbd0b3e11a652e83f7b5db7cae893
[platform/upstream/gst-editing-services.git] / ges / ges.h
1 /* GStreamer Editing Services
2  * Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
3  *               2009 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 #ifndef __GES_H__
22 #define __GES_H__
23
24 #include <glib.h>
25 #include <gst/gst.h>
26
27 #include <ges/ges-prelude.h>
28 #include <ges/ges-types.h>
29 #include <ges/ges-enums.h>
30
31 #include <ges/ges-timeline.h>
32 #include <ges/ges-layer.h>
33 #include <ges/ges-timeline-element.h>
34 #include <ges/ges-clip.h>
35 #include <ges/ges-pipeline.h>
36 #include <ges/ges-source-clip.h>
37 #include <ges/ges-test-clip.h>
38 #include <ges/ges-title-clip.h>
39 #include <ges/ges-operation-clip.h>
40 #include <ges/ges-base-effect-clip.h>
41 #include <ges/ges-overlay-clip.h>
42 #include <ges/ges-text-overlay-clip.h>
43 #include <ges/ges-base-transition-clip.h>
44 #include <ges/ges-transition-clip.h>
45 #include <ges/ges-effect-clip.h>
46 #include <ges/ges-base-effect-clip.h>
47 #include <ges/ges-uri-clip.h>
48 #include <ges/ges-group.h>
49 #include <ges/ges-screenshot.h>
50 #include <ges/ges-asset.h>
51 #include <ges/ges-clip-asset.h>
52 #include <ges/ges-track-element-asset.h>
53 #include <ges/ges-uri-asset.h>
54 #include <ges/ges-project.h>
55 #include <ges/ges-extractable.h>
56 #include <ges/ges-base-xml-formatter.h>
57 #include <ges/ges-xml-formatter.h>
58
59 #include <ges/ges-track.h>
60 #include <ges/ges-track-element.h>
61 #include <ges/ges-source.h>
62 #include <ges/ges-operation.h>
63
64 #include <ges/ges-video-uri-source.h>
65 #include <ges/ges-audio-uri-source.h>
66 #include <ges/ges-image-source.h>
67 #include <ges/ges-multi-file-source.h>
68 #include <ges/ges-video-test-source.h>
69 #include <ges/ges-audio-test-source.h>
70 #include <ges/ges-title-source.h>
71 #include <ges/ges-text-overlay.h>
72 #include <ges/ges-transition.h>
73 #include <ges/ges-video-transition.h>
74 #include <ges/ges-audio-transition.h>
75 #include <ges/ges-base-effect.h>
76 #include <ges/ges-effect-asset.h>
77 #include <ges/ges-effect.h>
78 #include <ges/ges-formatter.h>
79 #include <ges/ges-command-line-formatter.h>
80 #include <ges/ges-utils.h>
81 #include <ges/ges-meta-container.h>
82 #include <ges/ges-gerror.h>
83 #include <ges/ges-audio-track.h>
84 #include <ges/ges-video-track.h>
85 #include <ges/ges-version.h>
86
87 G_BEGIN_DECLS
88
89
90 GES_API
91 gboolean ges_init                            (void);
92
93 GES_API
94 gboolean ges_init_check                      (int *argc, char **argv[], GError ** err);
95
96 GES_API
97 void     ges_deinit                          (void);
98
99 GES_API
100 void     ges_version                         (guint * major,
101                                               guint * minor,
102                                               guint * micro,
103                                               guint * nano);
104 GES_API GOptionGroup *
105 ges_init_get_option_group                    (void);
106
107 GES_API
108 gboolean ges_validate_register_action_types  (void);
109
110 GES_API
111 gboolean ges_is_initialized                  (void);
112
113 G_END_DECLS
114
115 #endif /* __GES_H__ */