[vlc-devel] [PATCH 8/12] modules: clarify docs for config attr

Lyndon Brown jnqnfe at gmail.com
Fri Sep 25 00:30:44 CEST 2020


From: Lyndon Brown <jnqnfe at gmail.com>
Date: Wed, 10 Apr 2019 03:36:03 +0100
Subject: modules: clarify docs for config attr


diff --git a/src/modules/modules.h b/src/modules/modules.h
index ea85dd67ac..7c4e541363 100644
--- a/src/modules/modules.h
+++ b/src/modules/modules.h
@@ -39,10 +39,10 @@ typedef struct vlc_plugin_t
      */
     struct
     {
-        module_config_t *items; /**< Table of configuration parameters */
-        size_t size; /**< Size of items table */
-        size_t count; /**< Number of configuration items */
-        size_t booleans; /**< Number of boolean config items */
+        module_config_t *items; /**< Table of configuration items */
+        size_t size; /**< Total count of all items */
+        size_t count; /**< Count of real options (excludes hints) */
+        size_t booleans; /**< Count of options that are of boolean type */
     } conf;
 
 #ifdef HAVE_DYNAMIC_PLUGINS



More information about the vlc-devel mailing list