mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-05-04 07:24:46 +00:00
gst/gstinfo.c: Promote GST_DEBUG_CATEGORY_STATIC in example in docs.
Original commit message from CVS: * gst/gstinfo.c: Promote GST_DEBUG_CATEGORY_STATIC in example in docs. * libs/gst/net/gstnetclientclock.c: * libs/gst/net/gstnettimeprovider.c: Use GST_DEBUG_CATEGORY_STATIC here too (#342503).
This commit is contained in:
parent
f4ff8137ad
commit
541eba03a4
4 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,12 @@
|
|||
2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gstinfo.c:
|
||||
Promote GST_DEBUG_CATEGORY_STATIC in example in docs.
|
||||
|
||||
* libs/gst/net/gstnetclientclock.c:
|
||||
* libs/gst/net/gstnettimeprovider.c:
|
||||
Use GST_DEBUG_CATEGORY_STATIC here too (#342503).
|
||||
|
||||
2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* docs/manual/advanced-dataaccess.xml:
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
* the variables and set the default category.
|
||||
* <informalexample>
|
||||
* <programlisting>
|
||||
* GST_DEBUG_CATEGORY (my_category); // define category
|
||||
* GST_DEBUG_CATEGORY_STATIC (my_category); // define category (statically)
|
||||
* &hash;define GST_CAT_DEFAULT my_category // set as default
|
||||
* </programlisting>
|
||||
* </informalexample>
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
#include "gstnettimepacket.h"
|
||||
#include "gstnetclientclock.h"
|
||||
|
||||
GST_DEBUG_CATEGORY (ncc_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (ncc_debug);
|
||||
#define GST_CAT_DEFAULT (ncc_debug)
|
||||
|
||||
/* #define DEBUGGING_ENABLED */
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
#include <sys/filio.h>
|
||||
#endif
|
||||
|
||||
GST_DEBUG_CATEGORY (ntp_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (ntp_debug);
|
||||
#define GST_CAT_DEFAULT (ntp_debug)
|
||||
|
||||
/* the select call is also performed on the control sockets, that way
|
||||
|
|
Loading…
Reference in a new issue