gst: Do not try to determine executable path on iOS.
[platform/upstream/gstreamer.git] / gst / gst.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gst.c: Initialization and non-pipeline operations
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
23 /**
24  * SECTION:gst
25  * @title: GStreamer
26  * @short_description: Media library supporting arbitrary formats and filter
27  *                     graphs.
28  *
29  * GStreamer is a framework for constructing graphs of various filters
30  * (termed elements here) that will handle streaming media.  Any discrete
31  * (packetizable) media type is supported, with provisions for automatically
32  * determining source type.  Formatting/framing information is provided with
33  * a powerful negotiation framework.  Plugins are heavily used to provide for
34  * all elements, allowing one to construct plugins outside of the GST
35  * library, even released binary-only if license require (please don't).
36  * GStreamer covers a wide range of use cases including: playback, recording,
37  * editing, serving streams, voice over ip and video calls.
38  *
39  * The <application>GStreamer</application> library should be initialized with
40  * gst_init() before it can be used. You should pass pointers to the main argc
41  * and argv variables so that GStreamer can process its own command line
42  * options, as shown in the following example.
43  *
44  * ## Initializing the gstreamer library
45  *
46  * |[ <!-- language="C" -->
47  * int
48  * main (int argc, char *argv[])
49  * {
50  *   // initialize the GStreamer library
51  *   gst_init (&amp;argc, &amp;argv);
52  *   ...
53  * }
54  * ]|
55  *
56  * It's allowed to pass two %NULL pointers to gst_init() in case you don't want
57  * to pass the command line args to GStreamer.
58  *
59  * You can also use GOption to initialize your own parameters as shown in
60  * the next code fragment:
61  *
62  * ## Initializing own parameters when initializing gstreamer
63  * |[ <!-- language="C" -->
64  * static gboolean stats = FALSE;
65  * ...
66  * int
67  * main (int argc, char *argv[])
68  * {
69  *  GOptionEntry options[] = {
70  *   {"tags", 't', 0, G_OPTION_ARG_NONE, &amp;tags,
71  *       N_("Output tags (also known as metadata)"), NULL},
72  *   {NULL}
73  *  };
74  *  ctx = g_option_context_new ("[ADDITIONAL ARGUMENTS]");
75  *  g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
76  *  g_option_context_add_group (ctx, gst_init_get_option_group ());
77  *  if (!g_option_context_parse (ctx, &amp;argc, &amp;argv, &amp;err)) {
78  *    g_print ("Error initializing: &percnt;s\n", GST_STR_NULL (err->message));
79  *    exit (1);
80  *  }
81  *  g_option_context_free (ctx);
82  * ...
83  * }
84  * ]|
85  *
86  * Use gst_version() to query the library version at runtime or use the
87  * GST_VERSION_* macros to find the version at compile time. Optionally
88  * gst_version_string() returns a printable string.
89  *
90  * The gst_deinit() call is used to clean up all internal resources used
91  * by GStreamer. It is mostly used in unit tests to check for leaks.
92  */
93
94 #include "gst_private.h"
95 #include "gstconfig.h"
96 #include <stdlib.h>
97 #include <stdio.h>
98 #include <sys/types.h>
99 #ifdef HAVE_SYS_UTSNAME_H
100 #include <sys/utsname.h>
101 #endif
102 #ifdef HAVE_UNISTD_H
103 #include <unistd.h>
104 #endif
105 #ifdef G_OS_WIN32
106 #define WIN32_LEAN_AND_MEAN     /* prevents from including too many things */
107 #include <windows.h>            /* GetStdHandle, windows console */
108 #endif
109 #if defined (__APPLE__)
110 #include "TargetConditionals.h"
111 #if !TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR && !TARGET_OS_EMBEDDED
112 #include <libproc.h>            /* proc_pidpath, PROC_PIDPATHINFO_MAXSIZE */
113 #endif
114 #endif
115
116 #include "gst-i18n-lib.h"
117 #include <locale.h>             /* for LC_ALL */
118
119 #include "gst.h"
120
121 #define GST_CAT_DEFAULT GST_CAT_GST_INIT
122
123 #define MAX_PATH_SPLIT  16
124 #define GST_PLUGIN_SEPARATOR ","
125
126 static gboolean gst_initialized = FALSE;
127 static gboolean gst_deinitialized = FALSE;
128
129 GstClockTime _priv_gst_start_time;
130
131 #ifdef G_OS_WIN32
132 HMODULE _priv_gst_dll_handle = NULL;
133 #endif
134
135 #ifndef GST_DISABLE_REGISTRY
136 GList *_priv_gst_plugin_paths = NULL;   /* for delayed processing in init_post */
137
138 extern gboolean _priv_gst_disable_registry;
139 extern gboolean _priv_gst_disable_registry_update;
140 #endif
141
142 gchar *_gst_executable_path = NULL;
143
144 #ifndef GST_DISABLE_GST_DEBUG
145 const gchar *priv_gst_dump_dot_dir;
146 #endif
147
148 /* defaults */
149
150 /* set to TRUE when segfaults need to be left as is */
151 static gboolean _gst_disable_segtrap = FALSE;
152
153 static gboolean init_pre (GOptionContext * context, GOptionGroup * group,
154     gpointer data, GError ** error);
155 static gboolean init_post (GOptionContext * context, GOptionGroup * group,
156     gpointer data, GError ** error);
157 #ifndef GST_DISABLE_OPTION_PARSING
158 static gboolean parse_goption_arg (const gchar * s_opt,
159     const gchar * arg, gpointer data, GError ** err);
160 #endif
161
162 GSList *_priv_gst_preload_plugins = NULL;
163
164 const gchar g_log_domain_gstreamer[] = "GStreamer";
165
166 static void
167 debug_log_handler (const gchar * log_domain,
168     GLogLevelFlags log_level, const gchar * message, gpointer user_data)
169 {
170   g_log_default_handler (log_domain, log_level, message, user_data);
171   /* FIXME: do we still need this ? fatal errors these days are all
172    * other than core errors */
173   /* g_on_error_query (NULL); */
174 }
175
176 enum
177 {
178   ARG_VERSION = 1,
179   ARG_FATAL_WARNINGS,
180 #ifndef GST_DISABLE_GST_DEBUG
181   ARG_DEBUG_LEVEL,
182   ARG_DEBUG,
183   ARG_DEBUG_DISABLE,
184   ARG_DEBUG_NO_COLOR,
185   ARG_DEBUG_COLOR_MODE,
186   ARG_DEBUG_HELP,
187 #endif
188   ARG_PLUGIN_SPEW,
189   ARG_PLUGIN_PATH,
190   ARG_PLUGIN_LOAD,
191   ARG_SEGTRAP_DISABLE,
192   ARG_REGISTRY_UPDATE_DISABLE,
193   ARG_REGISTRY_FORK_DISABLE
194 };
195
196 /* debug-spec ::= category-spec [, category-spec]*
197  * category-spec ::= category:val | val
198  * category ::= [^:]+
199  * val ::= [0-5]
200  */
201
202 #ifdef G_OS_WIN32
203 /* Note: DllMain is only called when DLLs are loaded or unloaded, so this will
204  * never be called if libgstreamer-1.0 is linked statically. Do not add any code
205  * here to, say, initialize variables or set things up since that will only
206  * happen for dynamically-built GStreamer.
207  *
208  * Also, ideally this should not be defined when GStreamer is built statically.
209  * i.e., it should be conditional on #ifdef DLL_EXPORT. It will be ignored, but
210  * if other libraries make the same mistake of defining it when building
211  * statically, there will be a symbol collision during linking. Fixing this
212  * requires one to build two object files: one for static linking and another
213  * for dynamic linking. */
214 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
215 BOOL WINAPI
216 DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
217 {
218   if (fdwReason == DLL_PROCESS_ATTACH)
219     _priv_gst_dll_handle = (HMODULE) hinstDLL;
220   return TRUE;
221 }
222
223 #endif
224
225 /**
226  * gst_init_get_option_group: (skip)
227  *
228  * Returns a #GOptionGroup with GStreamer's argument specifications. The
229  * group is set up to use standard GOption callbacks, so when using this
230  * group in combination with GOption parsing methods, all argument parsing
231  * and initialization is automated.
232  *
233  * This function is useful if you want to integrate GStreamer with other
234  * libraries that use GOption (see g_option_context_add_group() ).
235  *
236  * If you use this function, you should make sure you initialise the GLib
237  * threading system as one of the very first things in your program
238  * (see the example at the beginning of this section).
239  *
240  * Returns: (transfer full): a pointer to GStreamer's option group.
241  */
242
243 GOptionGroup *
244 gst_init_get_option_group (void)
245 {
246 #ifndef GST_DISABLE_OPTION_PARSING
247   GOptionGroup *group;
248   static const GOptionEntry gst_args[] = {
249     {"gst-version", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
250         (gpointer) parse_goption_arg, N_("Print the GStreamer version"), NULL},
251     {"gst-fatal-warnings", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
252         (gpointer) parse_goption_arg, N_("Make all warnings fatal"), NULL},
253 #ifndef GST_DISABLE_GST_DEBUG
254     {"gst-debug-help", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
255           (gpointer) parse_goption_arg,
256           N_("Print available debug categories and exit"),
257         NULL},
258     {"gst-debug-level", 0, 0, G_OPTION_ARG_CALLBACK,
259           (gpointer) parse_goption_arg,
260           N_("Default debug level from 1 (only error) to 9 (anything) or "
261               "0 for no output"),
262         N_("LEVEL")},
263     {"gst-debug", 0, 0, G_OPTION_ARG_CALLBACK, (gpointer) parse_goption_arg,
264           N_("Comma-separated list of category_name:level pairs to set "
265               "specific levels for the individual categories. Example: "
266               "GST_AUTOPLUG:5,GST_ELEMENT_*:3"),
267         N_("LIST")},
268     {"gst-debug-no-color", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
269           (gpointer) parse_goption_arg, N_("Disable colored debugging output"),
270         NULL},
271     {"gst-debug-color-mode", 0, 0, G_OPTION_ARG_CALLBACK,
272           (gpointer) parse_goption_arg,
273           N_("Changes coloring mode of the debug log. "
274               "Possible modes: off, on, disable, auto, unix"),
275         NULL},
276     {"gst-debug-disable", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
277         (gpointer) parse_goption_arg, N_("Disable debugging"), NULL},
278 #endif
279     {"gst-plugin-spew", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
280           (gpointer) parse_goption_arg,
281           N_("Enable verbose plugin loading diagnostics"),
282         NULL},
283     {"gst-plugin-path", 0, 0, G_OPTION_ARG_CALLBACK,
284           (gpointer) parse_goption_arg,
285         N_("Colon-separated paths containing plugins"), N_("PATHS")},
286     {"gst-plugin-load", 0, 0, G_OPTION_ARG_CALLBACK,
287           (gpointer) parse_goption_arg,
288           N_("Comma-separated list of plugins to preload in addition to the "
289               "list stored in environment variable GST_PLUGIN_PATH"),
290         N_("PLUGINS")},
291     {"gst-disable-segtrap", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
292           (gpointer) parse_goption_arg,
293           N_("Disable trapping of segmentation faults during plugin loading"),
294         NULL},
295     {"gst-disable-registry-update", 0, G_OPTION_FLAG_NO_ARG,
296           G_OPTION_ARG_CALLBACK,
297           (gpointer) parse_goption_arg,
298           N_("Disable updating the registry"),
299         NULL},
300     {"gst-disable-registry-fork", 0, G_OPTION_FLAG_NO_ARG,
301           G_OPTION_ARG_CALLBACK,
302           (gpointer) parse_goption_arg,
303           N_("Disable spawning a helper process while scanning the registry"),
304         NULL},
305     {NULL}
306   };
307
308   group = g_option_group_new ("gst", _("GStreamer Options"),
309       _("Show GStreamer Options"), NULL, NULL);
310   g_option_group_set_parse_hooks (group, (GOptionParseFunc) init_pre,
311       (GOptionParseFunc) init_post);
312
313   g_option_group_add_entries (group, gst_args);
314   g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
315
316   return group;
317 #else
318   return NULL;
319 #endif
320 }
321
322 #if defined(__linux__)
323 static void
324 find_executable_path (void)
325 {
326   GError *error = NULL;
327   gchar *path;
328
329   if (_gst_executable_path)
330     return;
331
332   path = g_file_read_link ("/proc/self/exe", &error);
333
334   if (path) {
335     _gst_executable_path = g_path_get_dirname (path);
336     g_free (path);
337   }
338 }
339 #elif defined(G_OS_WIN32)
340 static void
341 find_executable_path (void)
342 {
343   char buffer[MAX_PATH];
344
345   if (!GetModuleFileName (NULL, buffer, MAX_PATH))
346     return;
347
348   _gst_executable_path = g_strdup (buffer);
349 }
350 #elif defined(__APPLE__) && !TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR && !TARGET_OS_EMBEDDED
351 static void
352 find_executable_path (void)
353 {
354   int ret;
355   pid_t pid;
356   char pathbuf[PROC_PIDPATHINFO_MAXSIZE];
357
358   pid = getpid ();
359   ret = proc_pidpath (pid, pathbuf, sizeof (pathbuf));
360   if (ret > 0)
361     _gst_executable_path = g_strdup (pathbuf);
362 }
363 #else
364 static void
365 find_executable_path (void)
366 {
367   GST_FIXME ("Couldn't look up executable path, add support for this platform");
368 }
369 #endif
370
371
372 /**
373  * gst_init_check:
374  * @argc: (inout) (allow-none): pointer to application's argc
375  * @argv: (inout) (array length=argc) (allow-none): pointer to application's argv
376  * @err: pointer to a #GError to which a message will be posted on error
377  *
378  * Initializes the GStreamer library, setting up internal path lists,
379  * registering built-in elements, and loading standard plugins.
380  *
381  * This function will return %FALSE if GStreamer could not be initialized
382  * for some reason.  If you want your program to fail fatally,
383  * use gst_init() instead.
384  *
385  * Returns: %TRUE if GStreamer could be initialized.
386  */
387 gboolean
388 gst_init_check (int *argc, char **argv[], GError ** err)
389 {
390   static GMutex init_lock;
391 #ifndef GST_DISABLE_OPTION_PARSING
392   GOptionGroup *group;
393   GOptionContext *ctx;
394 #endif
395   gboolean res;
396
397   g_mutex_lock (&init_lock);
398
399   if (gst_initialized) {
400     GST_DEBUG ("already initialized gst");
401     g_mutex_unlock (&init_lock);
402     return TRUE;
403   }
404 #ifndef GST_DISABLE_OPTION_PARSING
405   ctx = g_option_context_new ("- GStreamer initialization");
406   g_option_context_set_ignore_unknown_options (ctx, TRUE);
407   g_option_context_set_help_enabled (ctx, FALSE);
408   group = gst_init_get_option_group ();
409   g_option_context_add_group (ctx, group);
410   res = g_option_context_parse (ctx, argc, argv, err);
411   g_option_context_free (ctx);
412 #else
413   init_pre (NULL, NULL, NULL, NULL);
414   init_post (NULL, NULL, NULL, NULL);
415   res = TRUE;
416 #endif
417
418   gst_initialized = res;
419
420   g_mutex_unlock (&init_lock);
421
422   return res;
423 }
424
425 /**
426  * gst_init:
427  * @argc: (inout) (allow-none): pointer to application's argc
428  * @argv: (inout) (array length=argc) (allow-none): pointer to application's argv
429  *
430  * Initializes the GStreamer library, setting up internal path lists,
431  * registering built-in elements, and loading standard plugins.
432  *
433  * Unless the plugin registry is disabled at compile time, the registry will be
434  * loaded. By default this will also check if the registry cache needs to be
435  * updated and rescan all plugins if needed. See gst_update_registry() for
436  * details and section
437  * <link linkend="gst-running">Running GStreamer Applications</link>
438  * for how to disable automatic registry updates.
439  *
440  * > This function will terminate your program if it was unable to initialize
441  * > GStreamer for some reason.  If you want your program to fall back,
442  * > use gst_init_check() instead.
443  *
444  * WARNING: This function does not work in the same way as corresponding
445  * functions in other glib-style libraries, such as gtk_init\(\). In
446  * particular, unknown command line options cause this function to
447  * abort program execution.
448  */
449 void
450 gst_init (int *argc, char **argv[])
451 {
452   GError *err = NULL;
453
454   if (!gst_init_check (argc, argv, &err)) {
455     g_print ("Could not initialize GStreamer: %s\n",
456         err ? err->message : "unknown error occurred");
457     if (err) {
458       g_error_free (err);
459     }
460     exit (1);
461   }
462 }
463
464 /**
465  * gst_is_initialized:
466  *
467  * Use this function to check if GStreamer has been initialized with gst_init()
468  * or gst_init_check().
469  *
470  * Returns: %TRUE if initialization has been done, %FALSE otherwise.
471  */
472 gboolean
473 gst_is_initialized (void)
474 {
475   return gst_initialized;
476 }
477
478 #ifndef GST_DISABLE_REGISTRY
479 static void
480 add_path_func (gpointer data, gpointer user_data)
481 {
482   GST_INFO ("Adding plugin path: \"%s\", will scan later", (gchar *) data);
483   _priv_gst_plugin_paths =
484       g_list_append (_priv_gst_plugin_paths, g_strdup (data));
485 }
486 #endif
487
488 #ifndef GST_DISABLE_OPTION_PARSING
489 static void
490 prepare_for_load_plugin_func (gpointer data, gpointer user_data)
491 {
492   _priv_gst_preload_plugins =
493       g_slist_prepend (_priv_gst_preload_plugins, g_strdup (data));
494 }
495 #endif
496
497 #ifndef GST_DISABLE_OPTION_PARSING
498 static void
499 split_and_iterate (const gchar * stringlist, const gchar * separator,
500     GFunc iterator, gpointer user_data)
501 {
502   gchar **strings;
503   gint j = 0;
504   gchar *lastlist = g_strdup (stringlist);
505
506   while (lastlist) {
507     strings = g_strsplit (lastlist, separator, MAX_PATH_SPLIT);
508     g_free (lastlist);
509     lastlist = NULL;
510
511     while (strings[j]) {
512       iterator (strings[j], user_data);
513       if (++j == MAX_PATH_SPLIT) {
514         lastlist = g_strdup (strings[j]);
515         j = 0;
516         break;
517       }
518     }
519     g_strfreev (strings);
520   }
521 }
522 #endif
523
524 /* we have no fail cases yet, but maybe in the future */
525 static gboolean
526 init_pre (GOptionContext * context, GOptionGroup * group, gpointer data,
527     GError ** error)
528 {
529   gchar *libdir;
530   if (gst_initialized) {
531     GST_DEBUG ("already initialized");
532     return TRUE;
533   }
534
535   find_executable_path ();
536
537   _priv_gst_start_time = gst_util_get_timestamp ();
538
539 #ifndef GST_DISABLE_GST_DEBUG
540   _priv_gst_debug_init ();
541   priv_gst_dump_dot_dir = g_getenv ("GST_DEBUG_DUMP_DOT_DIR");
542 #endif
543
544 #ifdef ENABLE_NLS
545   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
546   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
547 #endif /* ENABLE_NLS */
548
549   /* This is the earliest we can make stuff show up in the logs.
550    * So give some useful info about GStreamer here */
551 #ifdef G_OS_WIN32
552   {
553     gchar *basedir =
554         g_win32_get_package_installation_directory_of_module
555         (_priv_gst_dll_handle);
556
557     libdir = g_build_filename (basedir,
558 #ifdef _DEBUG
559         "debug"
560 #endif
561         "lib", NULL);
562     g_free (basedir);
563   }
564 #else
565   libdir = g_strdup (LIBDIR);
566 #endif
567   GST_INFO ("Initializing GStreamer Core Library version %s", VERSION);
568   GST_INFO ("Using library installed in %s", libdir);
569   g_free (libdir);
570
571 #ifndef GST_DISABLE_REGISTRY
572   {
573     const gchar *disable_registry;
574     if ((disable_registry = g_getenv ("GST_REGISTRY_DISABLE"))) {
575       _priv_gst_disable_registry = (strcmp (disable_registry, "yes") == 0);
576     }
577   }
578 #endif
579
580   /* Print some basic system details if possible (OS/architecture) */
581 #ifdef HAVE_SYS_UTSNAME_H
582   {
583     struct utsname sys_details;
584
585     if (uname (&sys_details) == 0) {
586       GST_INFO ("%s %s %s %s %s", sys_details.sysname,
587           sys_details.nodename, sys_details.release, sys_details.version,
588           sys_details.machine);
589     }
590   }
591 #endif
592
593 #ifndef G_ATOMIC_LOCK_FREE
594   GST_CAT_WARNING (GST_CAT_PERFORMANCE, "GLib atomic operations are NOT "
595       "implemented using real hardware atomic operations!");
596 #endif
597
598   return TRUE;
599 }
600
601 static gboolean
602 gst_register_core_elements (GstPlugin * plugin)
603 {
604   /* register some standard builtin types */
605   if (!gst_element_register (plugin, "bin", GST_RANK_PRIMARY,
606           GST_TYPE_BIN) ||
607       !gst_element_register (plugin, "pipeline", GST_RANK_PRIMARY,
608           GST_TYPE_PIPELINE)
609       )
610     g_assert_not_reached ();
611
612   return TRUE;
613 }
614
615 /*
616  * this bit handles:
617  * - initalization of threads if we use them
618  * - log handler
619  * - initial output
620  * - initializes gst_format
621  * - registers a bunch of types for gst_objects
622  *
623  * - we don't have cases yet where this fails, but in the future
624  *   we might and then it's nice to be able to return that
625  */
626 static gboolean
627 init_post (GOptionContext * context, GOptionGroup * group, gpointer data,
628     GError ** error)
629 {
630   GLogLevelFlags llf;
631
632   if (gst_initialized) {
633     GST_DEBUG ("already initialized");
634     return TRUE;
635   }
636
637   llf = G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_ERROR | G_LOG_FLAG_FATAL;
638   g_log_set_handler (g_log_domain_gstreamer, llf, debug_log_handler, NULL);
639
640   _priv_gst_mini_object_initialize ();
641   _priv_gst_quarks_initialize ();
642   _priv_gst_allocator_initialize ();
643   _priv_gst_memory_initialize ();
644   _priv_gst_format_initialize ();
645   _priv_gst_query_initialize ();
646   _priv_gst_structure_initialize ();
647   _priv_gst_caps_initialize ();
648   _priv_gst_caps_features_initialize ();
649   _priv_gst_meta_initialize ();
650   _priv_gst_message_initialize ();
651
652   g_type_class_ref (gst_object_get_type ());
653   g_type_class_ref (gst_pad_get_type ());
654   g_type_class_ref (gst_element_factory_get_type ());
655   g_type_class_ref (gst_element_get_type ());
656   g_type_class_ref (gst_tracer_factory_get_type ());
657   g_type_class_ref (gst_type_find_factory_get_type ());
658   g_type_class_ref (gst_bin_get_type ());
659   g_type_class_ref (gst_bus_get_type ());
660   g_type_class_ref (gst_task_get_type ());
661   g_type_class_ref (gst_clock_get_type ());
662   g_type_class_ref (gst_debug_color_mode_get_type ());
663
664   gst_uri_handler_get_type ();
665
666   g_type_class_ref (gst_object_flags_get_type ());
667   g_type_class_ref (gst_bin_flags_get_type ());
668   g_type_class_ref (gst_buffer_flags_get_type ());
669   g_type_class_ref (gst_buffer_copy_flags_get_type ());
670   g_type_class_ref (gst_bus_flags_get_type ());
671   g_type_class_ref (gst_bus_sync_reply_get_type ());
672   g_type_class_ref (gst_caps_flags_get_type ());
673   g_type_class_ref (gst_clock_return_get_type ());
674   g_type_class_ref (gst_clock_entry_type_get_type ());
675   g_type_class_ref (gst_clock_flags_get_type ());
676   g_type_class_ref (gst_clock_type_get_type ());
677   g_type_class_ref (gst_debug_graph_details_get_type ());
678   g_type_class_ref (gst_state_get_type ());
679   g_type_class_ref (gst_state_change_return_get_type ());
680   g_type_class_ref (gst_state_change_get_type ());
681   g_type_class_ref (gst_element_flags_get_type ());
682   g_type_class_ref (gst_tracer_value_scope_get_type ());
683   g_type_class_ref (gst_tracer_value_flags_get_type ());
684   g_type_class_ref (gst_core_error_get_type ());
685   g_type_class_ref (gst_library_error_get_type ());
686   g_type_class_ref (gst_resource_error_get_type ());
687   g_type_class_ref (gst_stream_error_get_type ());
688   g_type_class_ref (gst_event_type_flags_get_type ());
689   g_type_class_ref (gst_event_type_get_type ());
690   g_type_class_ref (gst_seek_type_get_type ());
691   g_type_class_ref (gst_seek_flags_get_type ());
692   g_type_class_ref (gst_qos_type_get_type ());
693   g_type_class_ref (gst_format_get_type ());
694   g_type_class_ref (gst_debug_level_get_type ());
695   g_type_class_ref (gst_debug_color_flags_get_type ());
696   g_type_class_ref (gst_iterator_result_get_type ());
697   g_type_class_ref (gst_iterator_item_get_type ());
698   g_type_class_ref (gst_message_type_get_type ());
699   g_type_class_ref (gst_mini_object_flags_get_type ());
700   g_type_class_ref (gst_pad_link_return_get_type ());
701   g_type_class_ref (gst_pad_link_check_get_type ());
702   g_type_class_ref (gst_flow_return_get_type ());
703   g_type_class_ref (gst_pad_mode_get_type ());
704   g_type_class_ref (gst_pad_direction_get_type ());
705   g_type_class_ref (gst_pad_flags_get_type ());
706   g_type_class_ref (gst_pad_presence_get_type ());
707   g_type_class_ref (gst_pad_template_flags_get_type ());
708   g_type_class_ref (gst_pipeline_flags_get_type ());
709   g_type_class_ref (gst_plugin_error_get_type ());
710   g_type_class_ref (gst_plugin_flags_get_type ());
711   g_type_class_ref (gst_plugin_dependency_flags_get_type ());
712   g_type_class_ref (gst_rank_get_type ());
713   g_type_class_ref (gst_query_type_flags_get_type ());
714   g_type_class_ref (gst_query_type_get_type ());
715   g_type_class_ref (gst_buffering_mode_get_type ());
716   g_type_class_ref (gst_stream_status_type_get_type ());
717   g_type_class_ref (gst_structure_change_type_get_type ());
718   g_type_class_ref (gst_tag_merge_mode_get_type ());
719   g_type_class_ref (gst_tag_flag_get_type ());
720   g_type_class_ref (gst_tag_scope_get_type ());
721   g_type_class_ref (gst_task_pool_get_type ());
722   g_type_class_ref (gst_task_state_get_type ());
723   g_type_class_ref (gst_toc_entry_type_get_type ());
724   g_type_class_ref (gst_type_find_probability_get_type ());
725   g_type_class_ref (gst_uri_error_get_type ());
726   g_type_class_ref (gst_uri_type_get_type ());
727   g_type_class_ref (gst_parse_error_get_type ());
728   g_type_class_ref (gst_parse_flags_get_type ());
729   g_type_class_ref (gst_search_mode_get_type ());
730   g_type_class_ref (gst_progress_type_get_type ());
731   g_type_class_ref (gst_buffer_pool_acquire_flags_get_type ());
732   g_type_class_ref (gst_memory_flags_get_type ());
733   g_type_class_ref (gst_map_flags_get_type ());
734   g_type_class_ref (gst_caps_intersect_mode_get_type ());
735   g_type_class_ref (gst_pad_probe_type_get_type ());
736   g_type_class_ref (gst_pad_probe_return_get_type ());
737   g_type_class_ref (gst_segment_flags_get_type ());
738   g_type_class_ref (gst_scheduling_flags_get_type ());
739   g_type_class_ref (gst_meta_flags_get_type ());
740   g_type_class_ref (gst_toc_entry_type_get_type ());
741   g_type_class_ref (gst_toc_scope_get_type ());
742   g_type_class_ref (gst_toc_loop_type_get_type ());
743   g_type_class_ref (gst_control_binding_get_type ());
744   g_type_class_ref (gst_control_source_get_type ());
745   g_type_class_ref (gst_lock_flags_get_type ());
746   g_type_class_ref (gst_allocator_flags_get_type ());
747   g_type_class_ref (gst_stream_flags_get_type ());
748   g_type_class_ref (gst_stream_type_get_type ());
749   g_type_class_ref (gst_stack_trace_flags_get_type ());
750
751   _priv_gst_event_initialize ();
752   _priv_gst_buffer_initialize ();
753   _priv_gst_buffer_list_initialize ();
754   _priv_gst_sample_initialize ();
755   _priv_gst_context_initialize ();
756   _priv_gst_date_time_initialize ();
757   _priv_gst_value_initialize ();
758   _priv_gst_tag_initialize ();
759   _priv_gst_toc_initialize ();
760
761   g_type_class_ref (gst_param_spec_fraction_get_type ());
762   gst_parse_context_get_type ();
763
764   _priv_gst_plugin_initialize ();
765
766   /* register core plugins */
767   gst_plugin_register_static (GST_VERSION_MAJOR, GST_VERSION_MINOR,
768       "staticelements", "core elements linked into the GStreamer library",
769       gst_register_core_elements, VERSION, GST_LICENSE, PACKAGE,
770       GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
771
772   /*
773    * Any errors happening below this point are non-fatal, we therefore mark
774    * gstreamer as being initialized, since it is the case from a plugin point of
775    * view.
776    *
777    * If anything fails, it will be put back to %FALSE in gst_init_check().
778    * This allows some special plugins that would call gst_init() to not cause a
779    * looping effect (i.e. initializing GStreamer twice).
780    */
781   gst_initialized = TRUE;
782
783   if (!gst_update_registry ())
784     return FALSE;
785
786   GST_INFO ("GLib runtime version: %d.%d.%d", glib_major_version,
787       glib_minor_version, glib_micro_version);
788   GST_INFO ("GLib headers version: %d.%d.%d", GLIB_MAJOR_VERSION,
789       GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
790   GST_INFO ("initialized GStreamer successfully");
791
792 #ifndef GST_DISABLE_GST_DEBUG
793   _priv_gst_tracing_init ();
794 #endif
795
796   return TRUE;
797 }
798
799 #ifndef GST_DISABLE_GST_DEBUG
800 static gboolean
801 select_all (GstPlugin * plugin, gpointer user_data)
802 {
803   return TRUE;
804 }
805
806 static gint
807 sort_by_category_name (gconstpointer a, gconstpointer b)
808 {
809   return strcmp (gst_debug_category_get_name ((GstDebugCategory *) a),
810       gst_debug_category_get_name ((GstDebugCategory *) b));
811 }
812
813 static void
814 gst_debug_help (void)
815 {
816   GSList *list, *walk;
817   GList *list2, *g;
818
819   /* Need to ensure the registry is loaded to get debug categories */
820   if (!init_post (NULL, NULL, NULL, NULL))
821     exit (1);
822
823   list2 = gst_registry_plugin_filter (gst_registry_get (),
824       select_all, FALSE, NULL);
825
826   /* FIXME this is gross.  why don't debug have categories PluginFeatures? */
827   for (g = list2; g; g = g_list_next (g)) {
828     GstPlugin *plugin = GST_PLUGIN_CAST (g->data);
829     GList *features, *orig_features;
830
831     if (GST_OBJECT_FLAG_IS_SET (plugin, GST_PLUGIN_FLAG_BLACKLISTED))
832       continue;
833
834     gst_plugin_load (plugin);
835     /* Now create one of each feature so the class_init functions
836      * are called, as that's where most debug categories are
837      * registered. FIXME: If debug categories were a plugin feature,
838      * this would be unneeded */
839     orig_features = features =
840         gst_registry_get_feature_list_by_plugin (gst_registry_get (),
841         gst_plugin_get_name (plugin));
842     while (features) {
843       GstPluginFeature *feature;
844
845       if (G_UNLIKELY (features->data == NULL))
846         goto next;
847
848       feature = GST_PLUGIN_FEATURE (features->data);
849       if (GST_IS_ELEMENT_FACTORY (feature)) {
850         GstElementFactory *factory;
851         GstElement *e;
852
853         factory = GST_ELEMENT_FACTORY (feature);
854         e = gst_element_factory_create (factory, NULL);
855         if (e)
856           gst_object_unref (e);
857       }
858
859     next:
860       features = g_list_next (features);
861     }
862
863     gst_plugin_feature_list_free (orig_features);
864   }
865   g_list_free (list2);
866
867   list = gst_debug_get_all_categories ();
868   walk = list = g_slist_sort (list, sort_by_category_name);
869
870   g_print ("\n");
871   g_print ("name                  level    description\n");
872   g_print ("---------------------+--------+--------------------------------\n");
873
874   while (walk) {
875     gboolean on_unix;
876     GstDebugCategory *cat = (GstDebugCategory *) walk->data;
877     GstDebugColorMode coloring = gst_debug_get_color_mode ();
878 #ifdef G_OS_UNIX
879     on_unix = TRUE;
880 #else
881     on_unix = FALSE;
882 #endif
883
884     if (GST_DEBUG_COLOR_MODE_UNIX == coloring
885         || (on_unix && GST_DEBUG_COLOR_MODE_ON == coloring)) {
886       gchar *color = gst_debug_construct_term_color (cat->color);
887
888       g_print ("%s%-20s\033[00m  %1d %s  %s%s\033[00m\n",
889           color,
890           gst_debug_category_get_name (cat),
891           gst_debug_category_get_threshold (cat),
892           gst_debug_level_get_name (gst_debug_category_get_threshold (cat)),
893           color, gst_debug_category_get_description (cat));
894       g_free (color);
895     } else if (GST_DEBUG_COLOR_MODE_ON == coloring && !on_unix) {
896 #ifdef G_OS_WIN32
897       gint color = gst_debug_construct_win_color (cat->color);
898       const gint clear = FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE;
899
900       SetConsoleTextAttribute (GetStdHandle (STD_OUTPUT_HANDLE), color);
901       g_print ("%-20s", gst_debug_category_get_name (cat));
902       SetConsoleTextAttribute (GetStdHandle (STD_OUTPUT_HANDLE), clear);
903       g_print (" %1d %s ", gst_debug_category_get_threshold (cat),
904           gst_debug_level_get_name (gst_debug_category_get_threshold (cat)));
905       SetConsoleTextAttribute (GetStdHandle (STD_OUTPUT_HANDLE), color);
906       g_print ("%s", gst_debug_category_get_description (cat));
907       SetConsoleTextAttribute (GetStdHandle (STD_OUTPUT_HANDLE), clear);
908       g_print ("\n");
909 #endif /* G_OS_WIN32 */
910     } else {
911       g_print ("%-20s  %1d %s  %s\n", gst_debug_category_get_name (cat),
912           gst_debug_category_get_threshold (cat),
913           gst_debug_level_get_name (gst_debug_category_get_threshold (cat)),
914           gst_debug_category_get_description (cat));
915     }
916     walk = g_slist_next (walk);
917   }
918   g_slist_free (list);
919   g_print ("\n");
920 }
921 #endif
922
923 #ifndef GST_DISABLE_OPTION_PARSING
924 static gboolean
925 parse_one_option (gint opt, const gchar * arg, GError ** err)
926 {
927   switch (opt) {
928     case ARG_VERSION:
929       g_print ("GStreamer Core Library version %s\n", PACKAGE_VERSION);
930       exit (0);
931     case ARG_FATAL_WARNINGS:{
932       GLogLevelFlags fatal_mask;
933
934       fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
935       fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
936       g_log_set_always_fatal (fatal_mask);
937       break;
938     }
939 #ifndef GST_DISABLE_GST_DEBUG
940     case ARG_DEBUG_LEVEL:{
941       GstDebugLevel tmp = GST_LEVEL_NONE;
942
943       tmp = (GstDebugLevel) strtol (arg, NULL, 0);
944       if (((guint) tmp) < GST_LEVEL_COUNT) {
945         gst_debug_set_default_threshold (tmp);
946       }
947       break;
948     }
949     case ARG_DEBUG:
950       gst_debug_set_threshold_from_string (arg, FALSE);
951       break;
952     case ARG_DEBUG_NO_COLOR:
953       gst_debug_set_colored (FALSE);
954       break;
955     case ARG_DEBUG_COLOR_MODE:
956       gst_debug_set_color_mode_from_string (arg);
957       break;
958     case ARG_DEBUG_DISABLE:
959       gst_debug_set_active (FALSE);
960       break;
961     case ARG_DEBUG_HELP:
962       gst_debug_help ();
963       exit (0);
964 #endif
965     case ARG_PLUGIN_SPEW:
966       break;
967     case ARG_PLUGIN_PATH:
968 #ifndef GST_DISABLE_REGISTRY
969       if (!_priv_gst_disable_registry)
970         split_and_iterate (arg, G_SEARCHPATH_SEPARATOR_S, add_path_func, NULL);
971 #endif /* GST_DISABLE_REGISTRY */
972       break;
973     case ARG_PLUGIN_LOAD:
974       split_and_iterate (arg, ",", prepare_for_load_plugin_func, NULL);
975       break;
976     case ARG_SEGTRAP_DISABLE:
977       _gst_disable_segtrap = TRUE;
978       break;
979     case ARG_REGISTRY_UPDATE_DISABLE:
980 #ifndef GST_DISABLE_REGISTRY
981       if (!_priv_gst_disable_registry)
982         _priv_gst_disable_registry_update = TRUE;
983 #endif
984       break;
985     case ARG_REGISTRY_FORK_DISABLE:
986       gst_registry_fork_set_enabled (FALSE);
987       break;
988     default:
989       g_set_error (err, G_OPTION_ERROR, G_OPTION_ERROR_UNKNOWN_OPTION,
990           _("Unknown option"));
991       return FALSE;
992   }
993
994   return TRUE;
995 }
996
997 static gboolean
998 parse_goption_arg (const gchar * opt,
999     const gchar * arg, gpointer data, GError ** err)
1000 {
1001   static const struct
1002   {
1003     const gchar *opt;
1004     int val;
1005   } options[] = {
1006     {
1007     "--gst-version", ARG_VERSION}, {
1008     "--gst-fatal-warnings", ARG_FATAL_WARNINGS},
1009 #ifndef GST_DISABLE_GST_DEBUG
1010     {
1011     "--gst-debug-level", ARG_DEBUG_LEVEL}, {
1012     "--gst-debug", ARG_DEBUG}, {
1013     "--gst-debug-disable", ARG_DEBUG_DISABLE}, {
1014     "--gst-debug-no-color", ARG_DEBUG_NO_COLOR}, {
1015     "--gst-debug-color-mode", ARG_DEBUG_COLOR_MODE}, {
1016     "--gst-debug-help", ARG_DEBUG_HELP},
1017 #endif
1018     {
1019     "--gst-plugin-spew", ARG_PLUGIN_SPEW}, {
1020     "--gst-plugin-path", ARG_PLUGIN_PATH}, {
1021     "--gst-plugin-load", ARG_PLUGIN_LOAD}, {
1022     "--gst-disable-segtrap", ARG_SEGTRAP_DISABLE}, {
1023     "--gst-disable-registry-update", ARG_REGISTRY_UPDATE_DISABLE}, {
1024     "--gst-disable-registry-fork", ARG_REGISTRY_FORK_DISABLE}, {
1025     NULL}
1026   };
1027   gint val = 0, n;
1028
1029   for (n = 0; options[n].opt; n++) {
1030     if (!strcmp (opt, options[n].opt)) {
1031       val = options[n].val;
1032       break;
1033     }
1034   }
1035
1036   return parse_one_option (val, arg, err);
1037 }
1038 #endif
1039
1040 /**
1041  * gst_deinit:
1042  *
1043  * Clean up any resources created by GStreamer in gst_init().
1044  *
1045  * It is normally not needed to call this function in a normal application
1046  * as the resources will automatically be freed when the program terminates.
1047  * This function is therefore mostly used by testsuites and other memory
1048  * profiling tools.
1049  *
1050  * After this call GStreamer (including this method) should not be used anymore.
1051  */
1052 void
1053 gst_deinit (void)
1054 {
1055   GstBinClass *bin_class;
1056   GstClock *clock;
1057
1058   GST_INFO ("deinitializing GStreamer");
1059
1060   if (gst_deinitialized) {
1061     GST_DEBUG ("already deinitialized");
1062     return;
1063   }
1064   g_thread_pool_set_max_unused_threads (0);
1065   bin_class = GST_BIN_CLASS (g_type_class_peek (gst_bin_get_type ()));
1066   if (bin_class && bin_class->pool != NULL) {
1067     g_thread_pool_free (bin_class->pool, FALSE, TRUE);
1068     bin_class->pool = NULL;
1069   }
1070   gst_task_cleanup_all ();
1071
1072   g_slist_foreach (_priv_gst_preload_plugins, (GFunc) g_free, NULL);
1073   g_slist_free (_priv_gst_preload_plugins);
1074   _priv_gst_preload_plugins = NULL;
1075
1076 #ifndef GST_DISABLE_REGISTRY
1077   g_list_foreach (_priv_gst_plugin_paths, (GFunc) g_free, NULL);
1078   g_list_free (_priv_gst_plugin_paths);
1079   _priv_gst_plugin_paths = NULL;
1080 #endif
1081
1082   if (_gst_executable_path) {
1083     g_free (_gst_executable_path);
1084     _gst_executable_path = NULL;
1085   }
1086
1087   clock = gst_system_clock_obtain ();
1088   gst_object_unref (clock);
1089   gst_object_unref (clock);
1090
1091   _priv_gst_registry_cleanup ();
1092   _priv_gst_allocator_cleanup ();
1093
1094   /* We want to destroy tracers as late as possible for the leaks tracer
1095    * but still need to keep the caps system alive as it may have to use
1096    * gst_caps_to_string() to display leaked caps. */
1097 #ifndef GST_DISABLE_GST_DEBUG
1098   _priv_gst_tracing_deinit ();
1099 #endif
1100
1101   _priv_gst_caps_features_cleanup ();
1102   _priv_gst_caps_cleanup ();
1103
1104   g_type_class_unref (g_type_class_peek (gst_object_get_type ()));
1105   g_type_class_unref (g_type_class_peek (gst_pad_get_type ()));
1106   g_type_class_unref (g_type_class_peek (gst_element_factory_get_type ()));
1107   g_type_class_unref (g_type_class_peek (gst_element_get_type ()));
1108   g_type_class_unref (g_type_class_peek (gst_tracer_factory_get_type ()));
1109   g_type_class_unref (g_type_class_peek (gst_type_find_factory_get_type ()));
1110   g_type_class_unref (g_type_class_peek (gst_bin_get_type ()));
1111   g_type_class_unref (g_type_class_peek (gst_bus_get_type ()));
1112   g_type_class_unref (g_type_class_peek (gst_task_get_type ()));
1113   g_type_class_unref (g_type_class_peek (gst_object_flags_get_type ()));
1114   g_type_class_unref (g_type_class_peek (gst_bin_flags_get_type ()));
1115   g_type_class_unref (g_type_class_peek (gst_buffer_flags_get_type ()));
1116   g_type_class_unref (g_type_class_peek (gst_buffer_copy_flags_get_type ()));
1117   g_type_class_unref (g_type_class_peek (gst_bus_flags_get_type ()));
1118   g_type_class_unref (g_type_class_peek (gst_bus_sync_reply_get_type ()));
1119   g_type_class_unref (g_type_class_peek (gst_caps_flags_get_type ()));
1120   g_type_class_unref (g_type_class_peek (gst_clock_type_get_type ()));
1121   g_type_class_unref (g_type_class_peek (gst_clock_return_get_type ()));
1122   g_type_class_unref (g_type_class_peek (gst_clock_entry_type_get_type ()));
1123   g_type_class_unref (g_type_class_peek (gst_clock_flags_get_type ()));
1124   g_type_class_unref (g_type_class_peek (gst_debug_graph_details_get_type ()));
1125   g_type_class_unref (g_type_class_peek (gst_state_get_type ()));
1126   g_type_class_unref (g_type_class_peek (gst_state_change_return_get_type ()));
1127   g_type_class_unref (g_type_class_peek (gst_state_change_get_type ()));
1128   g_type_class_unref (g_type_class_peek (gst_element_flags_get_type ()));
1129   g_type_class_unref (g_type_class_peek (gst_tracer_value_scope_get_type ()));
1130   g_type_class_unref (g_type_class_peek (gst_tracer_value_flags_get_type ()));
1131   g_type_class_unref (g_type_class_peek (gst_core_error_get_type ()));
1132   g_type_class_unref (g_type_class_peek (gst_library_error_get_type ()));
1133   g_type_class_unref (g_type_class_peek (gst_plugin_dependency_flags_get_type
1134           ()));
1135   g_type_class_unref (g_type_class_peek (gst_parse_flags_get_type ()));
1136   g_type_class_unref (g_type_class_peek (gst_resource_error_get_type ()));
1137   g_type_class_unref (g_type_class_peek (gst_search_mode_get_type ()));
1138   g_type_class_unref (g_type_class_peek (gst_stream_error_get_type ()));
1139   g_type_class_unref (g_type_class_peek (gst_stream_status_type_get_type ()));
1140   g_type_class_unref (g_type_class_peek (gst_structure_change_type_get_type
1141           ()));
1142   g_type_class_unref (g_type_class_peek (gst_event_type_flags_get_type ()));
1143   g_type_class_unref (g_type_class_peek (gst_event_type_get_type ()));
1144   g_type_class_unref (g_type_class_peek (gst_seek_type_get_type ()));
1145   g_type_class_unref (g_type_class_peek (gst_seek_flags_get_type ()));
1146   g_type_class_unref (g_type_class_peek (gst_qos_type_get_type ()));
1147   g_type_class_unref (g_type_class_peek (gst_format_get_type ()));
1148   g_type_class_unref (g_type_class_peek (gst_debug_level_get_type ()));
1149   g_type_class_unref (g_type_class_peek (gst_debug_color_flags_get_type ()));
1150   g_type_class_unref (g_type_class_peek (gst_iterator_result_get_type ()));
1151   g_type_class_unref (g_type_class_peek (gst_iterator_item_get_type ()));
1152   g_type_class_unref (g_type_class_peek (gst_message_type_get_type ()));
1153   g_type_class_unref (g_type_class_peek (gst_meta_flags_get_type ()));
1154   g_type_class_unref (g_type_class_peek (gst_mini_object_flags_get_type ()));
1155   g_type_class_unref (g_type_class_peek (gst_pad_link_return_get_type ()));
1156   g_type_class_unref (g_type_class_peek (gst_pad_link_check_get_type ()));
1157   g_type_class_unref (g_type_class_peek (gst_flow_return_get_type ()));
1158   g_type_class_unref (g_type_class_peek (gst_pad_mode_get_type ()));
1159   g_type_class_unref (g_type_class_peek (gst_pad_direction_get_type ()));
1160   g_type_class_unref (g_type_class_peek (gst_pad_flags_get_type ()));
1161   g_type_class_unref (g_type_class_peek (gst_pad_presence_get_type ()));
1162   g_type_class_unref (g_type_class_peek (gst_pad_template_flags_get_type ()));
1163   g_type_class_unref (g_type_class_peek (gst_pipeline_flags_get_type ()));
1164   g_type_class_unref (g_type_class_peek (gst_plugin_error_get_type ()));
1165   g_type_class_unref (g_type_class_peek (gst_plugin_flags_get_type ()));
1166   g_type_class_unref (g_type_class_peek (gst_rank_get_type ()));
1167   g_type_class_unref (g_type_class_peek (gst_query_type_flags_get_type ()));
1168   g_type_class_unref (g_type_class_peek (gst_query_type_get_type ()));
1169   g_type_class_unref (g_type_class_peek (gst_buffering_mode_get_type ()));
1170   g_type_class_unref (g_type_class_peek (gst_tag_merge_mode_get_type ()));
1171   g_type_class_unref (g_type_class_peek (gst_tag_flag_get_type ()));
1172   g_type_class_unref (g_type_class_peek (gst_tag_scope_get_type ()));
1173   g_type_class_unref (g_type_class_peek (gst_task_state_get_type ()));
1174   g_type_class_unref (g_type_class_peek (gst_toc_entry_type_get_type ()));
1175   g_type_class_unref (g_type_class_peek (gst_toc_scope_get_type ()));
1176   g_type_class_unref (g_type_class_peek (gst_type_find_probability_get_type
1177           ()));
1178   g_type_class_unref (g_type_class_peek (gst_uri_type_get_type ()));
1179   g_type_class_unref (g_type_class_peek (gst_uri_error_get_type ()));
1180   g_type_class_unref (g_type_class_peek (gst_parse_error_get_type ()));
1181   g_type_class_unref (g_type_class_peek (gst_param_spec_fraction_get_type ()));
1182   g_type_class_unref (g_type_class_peek (gst_progress_type_get_type ()));
1183   g_type_class_unref (g_type_class_peek (gst_buffer_pool_acquire_flags_get_type
1184           ()));
1185   g_type_class_unref (g_type_class_peek (gst_memory_flags_get_type ()));
1186   g_type_class_unref (g_type_class_peek (gst_map_flags_get_type ()));
1187   g_type_class_unref (g_type_class_peek (gst_caps_intersect_mode_get_type ()));
1188   g_type_class_unref (g_type_class_peek (gst_pad_probe_type_get_type ()));
1189   g_type_class_unref (g_type_class_peek (gst_pad_probe_return_get_type ()));
1190   g_type_class_unref (g_type_class_peek (gst_segment_flags_get_type ()));
1191   g_type_class_unref (g_type_class_peek (gst_scheduling_flags_get_type ()));
1192   g_type_class_unref (g_type_class_peek (gst_stream_type_get_type ()));
1193
1194   g_type_class_unref (g_type_class_peek (gst_control_binding_get_type ()));
1195   g_type_class_unref (g_type_class_peek (gst_control_source_get_type ()));
1196   g_type_class_unref (g_type_class_peek (gst_toc_entry_type_get_type ()));
1197   g_type_class_unref (g_type_class_peek (gst_toc_loop_type_get_type ()));
1198   g_type_class_unref (g_type_class_peek (gst_lock_flags_get_type ()));
1199   g_type_class_unref (g_type_class_peek (gst_allocator_flags_get_type ()));
1200   g_type_class_unref (g_type_class_peek (gst_stream_flags_get_type ()));
1201   g_type_class_unref (g_type_class_peek (gst_debug_color_mode_get_type ()));
1202   g_type_class_unref (g_type_class_peek (gst_stack_trace_flags_get_type ()));
1203
1204   gst_deinitialized = TRUE;
1205   GST_INFO ("deinitialized GStreamer");
1206 }
1207
1208 /**
1209  * gst_version:
1210  * @major: (out): pointer to a guint to store the major version number
1211  * @minor: (out): pointer to a guint to store the minor version number
1212  * @micro: (out): pointer to a guint to store the micro version number
1213  * @nano:  (out): pointer to a guint to store the nano version number
1214  *
1215  * Gets the version number of the GStreamer library.
1216  */
1217 void
1218 gst_version (guint * major, guint * minor, guint * micro, guint * nano)
1219 {
1220   g_return_if_fail (major);
1221   g_return_if_fail (minor);
1222   g_return_if_fail (micro);
1223   g_return_if_fail (nano);
1224
1225   *major = GST_VERSION_MAJOR;
1226   *minor = GST_VERSION_MINOR;
1227   *micro = GST_VERSION_MICRO;
1228   *nano = GST_VERSION_NANO;
1229 }
1230
1231 /**
1232  * gst_version_string:
1233  *
1234  * This function returns a string that is useful for describing this version
1235  * of GStreamer to the outside world: user agent strings, logging, ...
1236  *
1237  * Returns: (transfer full): a newly allocated string describing this version
1238  *     of GStreamer.
1239  */
1240
1241 gchar *
1242 gst_version_string (void)
1243 {
1244   guint major, minor, micro, nano;
1245
1246   gst_version (&major, &minor, &micro, &nano);
1247   if (nano == 0)
1248     return g_strdup_printf ("GStreamer %d.%d.%d", major, minor, micro);
1249   else if (nano == 1)
1250     return g_strdup_printf ("GStreamer %d.%d.%d (GIT)", major, minor, micro);
1251   else
1252     return g_strdup_printf ("GStreamer %d.%d.%d (prerelease)", major, minor,
1253         micro);
1254 }
1255
1256 /**
1257  * gst_segtrap_is_enabled:
1258  *
1259  * Some functions in the GStreamer core might install a custom SIGSEGV handler
1260  * to better catch and report errors to the application. Currently this feature
1261  * is enabled by default when loading plugins.
1262  *
1263  * Applications might want to disable this behaviour with the
1264  * gst_segtrap_set_enabled() function. This is typically done if the application
1265  * wants to install its own handler without GStreamer interfering.
1266  *
1267  * Returns: %TRUE if GStreamer is allowed to install a custom SIGSEGV handler.
1268  */
1269 gboolean
1270 gst_segtrap_is_enabled (void)
1271 {
1272   /* yeps, it's enabled when it's not disabled */
1273   return !_gst_disable_segtrap;
1274 }
1275
1276 /**
1277  * gst_segtrap_set_enabled:
1278  * @enabled: whether a custom SIGSEGV handler should be installed.
1279  *
1280  * Applications might want to disable/enable the SIGSEGV handling of
1281  * the GStreamer core. See gst_segtrap_is_enabled() for more information.
1282  */
1283 void
1284 gst_segtrap_set_enabled (gboolean enabled)
1285 {
1286   _gst_disable_segtrap = !enabled;
1287 }