fix doc build fix autogen
[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 <stdlib.h>
32 #include <string.h>
33
34 /*** debugging categories *****************************************************/
35
36 #ifndef GST_DISABLE_GST_DEBUG
37
38 #include <gst/gstinfo.h>
39
40 extern GstDebugCategory *GST_CAT_GST_INIT;
41 extern GstDebugCategory *GST_CAT_COTHREADS;
42 extern GstDebugCategory *GST_CAT_COTHREAD_SWITCH;
43 extern GstDebugCategory *GST_CAT_AUTOPLUG;
44 extern GstDebugCategory *GST_CAT_AUTOPLUG_ATTEMPT;
45 extern GstDebugCategory *GST_CAT_PARENTAGE;
46 extern GstDebugCategory *GST_CAT_STATES;
47 extern GstDebugCategory *GST_CAT_PLANNING;
48 extern GstDebugCategory *GST_CAT_SCHEDULING;
49 extern GstDebugCategory *GST_CAT_DATAFLOW;
50 extern GstDebugCategory *GST_CAT_BUFFER;
51 extern GstDebugCategory *GST_CAT_CAPS;
52 extern GstDebugCategory *GST_CAT_CLOCK;
53 extern GstDebugCategory *GST_CAT_ELEMENT_PADS;
54 extern GstDebugCategory *GST_CAT_PADS;
55 extern GstDebugCategory *GST_CAT_PIPELINE;
56 extern GstDebugCategory *GST_CAT_PLUGIN_LOADING;
57 extern GstDebugCategory *GST_CAT_PLUGIN_INFO;
58 extern GstDebugCategory *GST_CAT_PROPERTIES;
59 extern GstDebugCategory *GST_CAT_THREAD;
60 extern GstDebugCategory *GST_CAT_XML;
61 extern GstDebugCategory *GST_CAT_NEGOTIATION;
62 extern GstDebugCategory *GST_CAT_REFCOUNTING;
63 extern GstDebugCategory *GST_CAT_ERROR_SYSTEM;
64 extern GstDebugCategory *GST_CAT_EVENT;
65 extern GstDebugCategory *GST_CAT_PARAMS;
66 extern GstDebugCategory *GST_CAT_CALL_TRACE;
67
68 #endif
69
70 #endif /* __GST_PRIVATE_H__ */