mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
minor style issues, no need to ChangeLog it
Original commit message from CVS: minor style issues, no need to ChangeLog it
This commit is contained in:
parent
faeffad04e
commit
487f0893ee
1 changed files with 14 additions and 11 deletions
|
@ -230,17 +230,19 @@ GstDebugCategory *_gst_debug_category_new (gchar * name,
|
||||||
gchar * description);
|
gchar * description);
|
||||||
/**
|
/**
|
||||||
* GST_DEBUG_CATEGORY_INIT:
|
* GST_DEBUG_CATEGORY_INIT:
|
||||||
* @cat: the category to initialize
|
* @cat: the category to initialize.
|
||||||
* @name: the name of the category
|
* @name: the name of the category.
|
||||||
* @color: the colors to use for a color representation or 0 for no color
|
* @color: the colors to use for a color representation or 0 for no color.
|
||||||
* @description: optional description of the category
|
* @description: optional description of the category.
|
||||||
*
|
*
|
||||||
* Creates a new #GstDebugCategory cat with the given properties and sets it to
|
* Returns: a new #GstDebugCategory with the given properties and set to
|
||||||
* the default threshold.
|
* the default threshold.
|
||||||
* This macro expands to nothing if debugging is disabled.
|
|
||||||
* <note>
|
* <note>
|
||||||
* <para>
|
* <para>
|
||||||
* When naming your category, please follow the following definitions to ensure
|
* This macro expands to nothing if debugging is disabled.
|
||||||
|
* </para>
|
||||||
|
* <para>
|
||||||
|
* When naming your category, please follow the following conventions to ensure
|
||||||
* that the pattern matching for categories works as expected. It is not
|
* that the pattern matching for categories works as expected. It is not
|
||||||
* earth-shattering if you don't follow these conventions, but it would be nice
|
* earth-shattering if you don't follow these conventions, but it would be nice
|
||||||
* for everyone.
|
* for everyone.
|
||||||
|
@ -264,6 +266,7 @@ GstDebugCategory *_gst_debug_category_new (gchar * name,
|
||||||
if (cat == NULL) \
|
if (cat == NULL) \
|
||||||
cat = _gst_debug_category_new (name,color,description); \
|
cat = _gst_debug_category_new (name,color,description); \
|
||||||
}G_STMT_END
|
}G_STMT_END
|
||||||
|
|
||||||
void gst_debug_category_free (GstDebugCategory * category);
|
void gst_debug_category_free (GstDebugCategory * category);
|
||||||
void gst_debug_category_set_threshold (GstDebugCategory * category,
|
void gst_debug_category_set_threshold (GstDebugCategory * category,
|
||||||
GstDebugLevel level);
|
GstDebugLevel level);
|
||||||
|
|
Loading…
Reference in a new issue