remove gst_info remove gstlog.h, fold back to gstinfo.h update translations
[platform/upstream/gstreamer.git] / gst / gst_private.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gst_private.h: Private header for within libgst
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., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23
24 #ifndef __GST_PRIVATE_H__
25 #define __GST_PRIVATE_H__
26
27 #ifdef HAVE_CONFIG_H
28 #  include "config.h"
29 #endif
30
31 #include <glib.h>
32
33 #include <stdlib.h>
34 #include <string.h>
35
36 extern const char             *g_log_domain_gstreamer;
37
38 gboolean __gst_in_valgrind (void);
39
40 /*** debugging categories *****************************************************/
41
42 #ifndef GST_DISABLE_GST_DEBUG
43
44 #include <gst/gstinfo.h>
45
46 extern GstDebugCategory *GST_CAT_GST_INIT;
47 extern GstDebugCategory *GST_CAT_COTHREADS;
48 extern GstDebugCategory *GST_CAT_COTHREAD_SWITCH;
49 extern GstDebugCategory *GST_CAT_AUTOPLUG;
50 extern GstDebugCategory *GST_CAT_AUTOPLUG_ATTEMPT;
51 extern GstDebugCategory *GST_CAT_PARENTAGE;
52 extern GstDebugCategory *GST_CAT_STATES;
53 extern GstDebugCategory *GST_CAT_PLANNING;
54 extern GstDebugCategory *GST_CAT_SCHEDULING;
55 extern GstDebugCategory *GST_CAT_DATAFLOW;
56 extern GstDebugCategory *GST_CAT_BUFFER;
57 extern GstDebugCategory *GST_CAT_CAPS;
58 extern GstDebugCategory *GST_CAT_CLOCK;
59 extern GstDebugCategory *GST_CAT_ELEMENT_PADS;
60 extern GstDebugCategory *GST_CAT_PADS;
61 extern GstDebugCategory *GST_CAT_PIPELINE;
62 extern GstDebugCategory *GST_CAT_PLUGIN_LOADING;
63 extern GstDebugCategory *GST_CAT_PLUGIN_INFO;
64 extern GstDebugCategory *GST_CAT_PROPERTIES;
65 extern GstDebugCategory *GST_CAT_THREAD;
66 extern GstDebugCategory *GST_CAT_XML;
67 extern GstDebugCategory *GST_CAT_NEGOTIATION;
68 extern GstDebugCategory *GST_CAT_REFCOUNTING;
69 extern GstDebugCategory *GST_CAT_ERROR_SYSTEM;
70 extern GstDebugCategory *GST_CAT_EVENT;
71 extern GstDebugCategory *GST_CAT_PARAMS;
72 extern GstDebugCategory *GST_CAT_CALL_TRACE;
73
74 #endif
75
76 #endif /* __GST_PRIVATE_H__ */