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:
Tim-Philipp Müller 2008-01-10 15:55:32 +00:00
parent 3749018bf6
commit e1e8bace45
2 changed files with 14 additions and 0 deletions

View file

@ -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:

View file

@ -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