summaryrefslogtreecommitdiff
path: root/libavutil/dict.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/dict.h')
-rw-r--r--libavutil/dict.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/libavutil/dict.h b/libavutil/dict.h
index b0061c8475..6e28b61406 100644
--- a/libavutil/dict.h
+++ b/libavutil/dict.h
@@ -26,7 +26,11 @@
#define AVUTIL_DICT_H
/**
- * @defgroup dict_api Public Dictionary API
+ * @addtogroup lavu_dict AVDictionary
+ * @ingroup lavu_data
+ *
+ * @brief Simple key:value store
+ *
* @{
* Dictionaries are used for storing key:value pairs. To create
* an AVDictionary, simply pass an address of a NULL pointer to
@@ -52,7 +56,6 @@
* av_dict_free(&d);
* @endcode
*
- * @}
*/
#define AV_DICT_MATCH_CASE 1
@@ -111,4 +114,8 @@ void av_dict_copy(AVDictionary **dst, AVDictionary *src, int flags);
*/
void av_dict_free(AVDictionary **m);
+/**
+ * @}
+ */
+
#endif // AVUTIL_DICT_H