d43eb829bc8a5b824e219e1128c4a298ab9dfaac
[platform/upstream/gstreamer.git] / tutorials / xcode iOS / Tutorial 2 / gst_ios_init.h
1 #ifndef __GST_IOS_INIT_H__
2 #define __GST_IOS_INIT_H__
3
4 #include <gst/gst.h>
5
6 G_BEGIN_DECLS
7
8 #define GST_G_IO_MODULE_DECLARE(name) \
9 extern void G_PASTE(g_io_module_, G_PASTE(name, _load_static)) (void)
10
11 #define GST_G_IO_MODULE_LOAD(name) \
12 G_PASTE(g_io_module_, G_PASTE(name, _load_static)) ()
13
14 /* Uncomment each line to enable the plugin categories that your application needs.
15  * You can also enable individual plugins. See gst_ios_init.c to see their names
16  */
17
18 //#define GST_IOS_PLUGINS_GES
19 #define GST_IOS_PLUGINS_CORE
20 //#define GST_IOS_PLUGINS_CAPTURE
21 //#define GST_IOS_PLUGINS_CODECS_RESTRICTED
22 //#define GST_IOS_PLUGINS_ENCODING
23 //#define GST_IOS_PLUGINS_CODECS_GPL
24 //#define GST_IOS_PLUGINS_NET_RESTRICTED
25 #define GST_IOS_PLUGINS_SYS
26 //#define GST_IOS_PLUGINS_VIS
27 //#define GST_IOS_PLUGINS_PLAYBACK
28 //#define GST_IOS_PLUGINS_EFFECTS
29 //#define GST_IOS_PLUGINS_CODECS
30 //#define GST_IOS_PLUGINS_NET
31
32
33 //#define GST_IOS_GIO_MODULE_GNUTLS
34
35 void gst_ios_init ();
36
37 G_END_DECLS
38
39 #endif