mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +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);
|
||||
/**
|
||||
* GST_DEBUG_CATEGORY_INIT:
|
||||
* @cat: the category to initialize
|
||||
* @name: the name of the category
|
||||
* @color: the colors to use for a color representation or 0 for no color
|
||||
* @description: optional description of the category
|
||||
* @cat: the category to initialize.
|
||||
* @name: the name of the category.
|
||||
* @color: the colors to use for a color representation or 0 for no color.
|
||||
* @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.
|
||||
* This macro expands to nothing if debugging is disabled.
|
||||
* <note>
|
||||
* <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
|
||||
* earth-shattering if you don't follow these conventions, but it would be nice
|
||||
* for everyone.
|
||||
|
@ -264,6 +266,7 @@ GstDebugCategory *_gst_debug_category_new (gchar * name,
|
|||
if (cat == NULL) \
|
||||
cat = _gst_debug_category_new (name,color,description); \
|
||||
}G_STMT_END
|
||||
|
||||
void gst_debug_category_free (GstDebugCategory * category);
|
||||
void gst_debug_category_set_threshold (GstDebugCategory * category,
|
||||
GstDebugLevel level);
|
||||
|
|
Loading…
Reference in a new issue