mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
gst/gst_private.h: Add GST_CAT_TYPES, for consistency, and so that the other debug categories don't make fun of it. S...
Original commit message from CVS: * gst/gst_private.h: (GST_CAT_TYPES): Add GST_CAT_TYPES, for consistency, and so that the other debug categories don't make fun of it. Spotted by Saur on IRC.
This commit is contained in:
parent
3749018bf6
commit
e1e8bace45
2 changed files with 14 additions and 0 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,9 @@
|
|||
2008-01-10 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gst_private.h: (GST_CAT_TYPES):
|
||||
Add GST_CAT_TYPES, for consistency, and so that the other
|
||||
debug categories don't make fun of it. Spotted by Saur on IRC.
|
||||
|
||||
2008-01-10 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* gst/parse/Makefile.am:
|
||||
|
@ -14,6 +20,12 @@
|
|||
Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
|
||||
at the same time is required for per target flags.
|
||||
|
||||
2008-01-09 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gstmacros.h:
|
||||
Include glib/gmacros.h for G_BEGIN_DECLS. Check if
|
||||
__GNUC__ is defined before using it.
|
||||
|
||||
2008-01-09 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* docs/gst/gstreamer-sections.txt:
|
||||
|
|
|
@ -117,6 +117,7 @@ extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_SIGNAL;
|
|||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_PROBE;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_REGISTRY;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_QOS;
|
||||
extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_TYPES; /* FIXME 0.11: remove? */
|
||||
|
||||
#else
|
||||
|
||||
|
@ -149,6 +150,7 @@ extern IMPORT_SYMBOL GstDebugCategory *GST_CAT_QOS;
|
|||
#define GST_CAT_PROBE NULL
|
||||
#define GST_CAT_REGISTRY NULL
|
||||
#define GST_CAT_QOS NULL
|
||||
#define GST_CAT_TYPES NULL
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue