gst_ios_init.h 1018 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef __GST_IOS_INIT_H__
  2. #define __GST_IOS_INIT_H__
  3. #include <gst/gst.h>
  4. G_BEGIN_DECLS
  5. #define GST_G_IO_MODULE_DECLARE(name) \
  6. extern void G_PASTE(g_io_module_, G_PASTE(name, _load_static)) (void)
  7. #define GST_G_IO_MODULE_LOAD(name) \
  8. G_PASTE(g_io_module_, G_PASTE(name, _load_static)) ()
  9. /* Uncomment each line to enable the plugin categories that your application needs.
  10. * You can also enable individual plugins. See gst_ios_init.c to see their names
  11. */
  12. #define GST_IOS_PLUGINS_CORE
  13. #define GST_IOS_PLUGINS_CAPTURE
  14. //#define GST_IOS_PLUGINS_CODECS_RESTRICTED
  15. //#define GST_IOS_PLUGINS_ENCODING
  16. //#define GST_IOS_PLUGINS_CODECS_GPL
  17. //#define GST_IOS_PLUGINS_NET_RESTRICTED
  18. #define GST_IOS_PLUGINS_SYS
  19. //#define GST_IOS_PLUGINS_VIS
  20. #define GST_IOS_PLUGINS_PLAYBACK
  21. //#define GST_IOS_PLUGINS_EFFECTS
  22. //#define GST_IOS_PLUGINS_CODECS
  23. //#define GST_IOS_PLUGINS_NET
  24. //#define GST_IOS_PLUGINS_EDITING
  25. #define GST_IOS_PLUGIN_JPEG
  26. //#define GST_IOS_GIO_MODULE_GNUTLS
  27. void gst_ios_init (void);
  28. G_END_DECLS
  29. #endif