From 487f0893eeea8c0d7ec681a73149831fb623e9c7 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 22 Dec 2003 10:37:31 +0000 Subject: [PATCH] minor style issues, no need to ChangeLog it Original commit message from CVS: minor style issues, no need to ChangeLog it --- gst/gstinfo.h | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/gst/gstinfo.h b/gst/gstinfo.h index bf2abca..dad7a33 100644 --- a/gst/gstinfo.h +++ b/gst/gstinfo.h @@ -230,26 +230,28 @@ 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 - * - * Creates a new #GstDebugCategory cat with the given properties and sets it to + * @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. + * + * Returns: a new #GstDebugCategory with the given properties and set to * the default threshold. - * This macro expands to nothing if debugging is disabled. * * - * When naming your category, please follow the following definitions to ensure + * This macro expands to nothing if debugging is disabled. + * + * + * 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. * * - * If you define a category for a plugin or a feature of it, name the category - * like the feature. So if you wanted to write a "filesrc" element, you would + * If you define a category for a plugin or a feature of it, name the category + * like the feature. So if you wanted to write a "filesrc" element, you would * name the category "filesrc". Use lowercase letters only. - * If you define more than one category for the same element, append an + * If you define more than one category for the same element, append an * underscore and an identifier to your categories, like this: "filesrc_cache" * * @@ -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); -- 2.7.4