summaryrefslogtreecommitdiff
path: root/libavutil/dict.h
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-12-16 01:39:30 +0100
committerAnton Khirnov <anton@khirnov.net>2014-02-04 22:09:47 +0100
commit9ecb858775483a76c137e8e1ad45a95e318bca61 (patch)
tree252f07a1efd90b8f29c5acdd70100dfb73b9a62b /libavutil/dict.h
parentd9ae1031f5edbd25c8526b4cb51aba66d3bee931 (diff)
doxy: Format @code blocks so they render properly
@code command reports verbatim everything between it and @endcode. Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavutil/dict.h')
-rw-r--r--libavutil/dict.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/libavutil/dict.h b/libavutil/dict.h
index ab23f26e6f..e0a91ae836 100644
--- a/libavutil/dict.h
+++ b/libavutil/dict.h
@@ -40,21 +40,21 @@
* entries and finally av_dict_free() to free the dictionary
* and all its contents.
*
- * @code
- * AVDictionary *d = NULL; // "create" an empty dictionary
- * av_dict_set(&d, "foo", "bar", 0); // add an entry
- *
- * char *k = av_strdup("key"); // if your strings are already allocated,
- * char *v = av_strdup("value"); // you can avoid copying them like this
- * av_dict_set(&d, k, v, AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
- *
- * AVDictionaryEntry *t = NULL;
- * while (t = av_dict_get(d, "", t, AV_DICT_IGNORE_SUFFIX)) {
- * <....> // iterate over all entries in d
- * }
- *
- * av_dict_free(&d);
- * @endcode
+ @code
+ AVDictionary *d = NULL; // "create" an empty dictionary
+ AVDictionaryEntry *t = NULL;
+
+ av_dict_set(&d, "foo", "bar", 0); // add an entry
+
+ char *k = av_strdup("key"); // if your strings are already allocated,
+ char *v = av_strdup("value"); // you can avoid copying them like this
+ av_dict_set(&d, k, v, AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
+
+ while (t = av_dict_get(d, "", t, AV_DICT_IGNORE_SUFFIX)) {
+ <....> // iterate over all entries in d
+ }
+ av_dict_free(&d);
+ @endcode
*
*/