gst.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* GStreamer
  2. * Copyright (C) 1999,2000 Erik Walthinsen <[email protected]>
  3. * 2000 Wim Taymans <[email protected]>
  4. *
  5. * gst.h: Main header for GStreamer, apps should include this
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Library General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Library General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Library General Public
  18. * License along with this library; if not, write to the
  19. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  20. * Boston, MA 02110-1301, USA.
  21. */
  22. #ifndef __GST_H__
  23. #define __GST_H__
  24. #include <glib.h>
  25. #include <gst/glib-compat.h>
  26. #include <gst/gstenumtypes.h>
  27. #include <gst/gstversion.h>
  28. #include <gst/gstatomicqueue.h>
  29. #include <gst/gstbin.h>
  30. #include <gst/gstbuffer.h>
  31. #include <gst/gstbufferlist.h>
  32. #include <gst/gstbufferpool.h>
  33. #include <gst/gstcaps.h>
  34. #include <gst/gstcapsfeatures.h>
  35. #include <gst/gstchildproxy.h>
  36. #include <gst/gstclock.h>
  37. #include <gst/gstcontrolsource.h>
  38. #include <gst/gstdatetime.h>
  39. #include <gst/gstdebugutils.h>
  40. #include <gst/gstdevice.h>
  41. #include <gst/gstdeviceprovider.h>
  42. #include <gst/gstelement.h>
  43. #include <gst/gstelementmetadata.h>
  44. #include <gst/gsterror.h>
  45. #include <gst/gstevent.h>
  46. #include <gst/gstghostpad.h>
  47. #include <gst/gstdevicemonitor.h>
  48. #include <gst/gstinfo.h>
  49. #include <gst/gstiterator.h>
  50. #include <gst/gstmessage.h>
  51. #include <gst/gstmemory.h>
  52. #include <gst/gstmeta.h>
  53. #include <gst/gstminiobject.h>
  54. #include <gst/gstobject.h>
  55. #include <gst/gstpad.h>
  56. #include <gst/gstparamspecs.h>
  57. #include <gst/gstpipeline.h>
  58. #include <gst/gstplugin.h>
  59. #include <gst/gstpoll.h>
  60. #include <gst/gstpreset.h>
  61. #include <gst/gstquery.h>
  62. #include <gst/gstregistry.h>
  63. #include <gst/gstsample.h>
  64. #include <gst/gstsegment.h>
  65. #include <gst/gststructure.h>
  66. #include <gst/gstsystemclock.h>
  67. #include <gst/gsttaglist.h>
  68. #include <gst/gsttagsetter.h>
  69. #include <gst/gsttask.h>
  70. #include <gst/gsttaskpool.h>
  71. #include <gst/gsttoc.h>
  72. #include <gst/gsttocsetter.h>
  73. #include <gst/gsttypefind.h>
  74. #include <gst/gsttypefindfactory.h>
  75. #include <gst/gsturi.h>
  76. #include <gst/gstutils.h>
  77. #include <gst/gstvalue.h>
  78. #include <gst/gstparse.h>
  79. /* API compatibility stuff */
  80. #include <gst/gstcompat.h>
  81. G_BEGIN_DECLS
  82. void gst_init (int *argc, char **argv[]);
  83. gboolean gst_init_check (int *argc, char **argv[],
  84. GError ** err);
  85. gboolean gst_is_initialized (void);
  86. GOptionGroup * gst_init_get_option_group (void);
  87. void gst_deinit (void);
  88. void gst_version (guint *major, guint *minor,
  89. guint *micro, guint *nano);
  90. gchar * gst_version_string (void);
  91. gboolean gst_segtrap_is_enabled (void);
  92. void gst_segtrap_set_enabled (gboolean enabled);
  93. gboolean gst_registry_fork_is_enabled (void);
  94. void gst_registry_fork_set_enabled (gboolean enabled);
  95. gboolean gst_update_registry (void);
  96. G_END_DECLS
  97. #endif /* __GST_H__ */