summaryrefslogtreecommitdiff
path: root/libavutil/dict.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-06-04 18:43:05 +0200
committerAnton Khirnov <anton@khirnov.net>2011-06-16 20:24:56 +0200
commit1b9b37b8a416e77b4c6425dcdcee21cf8a1f5d67 (patch)
tree5c6bf4eb04ef6c8a74cce412b8f2c5196d787aee /libavutil/dict.h
parent25de5958c8fd727777ebf8c4f7a9df6f9b8eb82d (diff)
dict: add AV_DICT_APPEND flag.
Diffstat (limited to 'libavutil/dict.h')
-rw-r--r--libavutil/dict.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/dict.h b/libavutil/dict.h
index bfd7f2682c..ff24b36f81 100644
--- a/libavutil/dict.h
+++ b/libavutil/dict.h
@@ -29,6 +29,8 @@
#define AV_DICT_DONT_STRDUP_KEY 4
#define AV_DICT_DONT_STRDUP_VAL 8
#define AV_DICT_DONT_OVERWRITE 16 ///< Don't overwrite existing entries.
+#define AV_DICT_APPEND 32 /**< If the entry already exists, append to it. Note that no
+ delimiter is added, the strings are simply concatenated. */
typedef struct {
char *key;