2014-08-02 18:19:09 +00:00
|
|
|
#ifndef __GST_IOS_INIT_H__
|
|
|
|
#define __GST_IOS_INIT_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_G_IO_MODULE_DECLARE(name) \
|
|
|
|
extern void G_PASTE(g_io_module_, G_PASTE(name, _load_static)) (void)
|
|
|
|
|
|
|
|
#define GST_G_IO_MODULE_LOAD(name) \
|
|
|
|
G_PASTE(g_io_module_, G_PASTE(name, _load_static)) ()
|
|
|
|
|
|
|
|
/* Uncomment each line to enable the plugin categories that your application needs.
|
|
|
|
* You can also enable individual plugins. See gst_ios_init.c to see their names
|
|
|
|
*/
|
|
|
|
|
2016-03-28 15:09:59 +00:00
|
|
|
//#define GST_IOS_PLUGINS_GES
|
2014-08-02 18:19:09 +00:00
|
|
|
#define GST_IOS_PLUGINS_CORE
|
|
|
|
//#define GST_IOS_PLUGINS_CAPTURE
|
|
|
|
#define GST_IOS_PLUGINS_CODECS_RESTRICTED
|
|
|
|
//#define GST_IOS_PLUGINS_ENCODING
|
|
|
|
#define GST_IOS_PLUGINS_CODECS_GPL
|
|
|
|
#define GST_IOS_PLUGINS_NET_RESTRICTED
|
|
|
|
#define GST_IOS_PLUGINS_SYS
|
|
|
|
#define GST_IOS_PLUGINS_VIS
|
|
|
|
#define GST_IOS_PLUGINS_PLAYBACK
|
|
|
|
#define GST_IOS_PLUGINS_EFFECTS
|
|
|
|
#define GST_IOS_PLUGINS_CODECS
|
|
|
|
#define GST_IOS_PLUGINS_NET
|
|
|
|
|
|
|
|
|
|
|
|
#define GST_IOS_GIO_MODULE_GNUTLS
|
|
|
|
|
|
|
|
void gst_ios_init ();
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|