diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-06-04 18:43:05 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-06-16 20:24:56 +0200 |
commit | 1b9b37b8a416e77b4c6425dcdcee21cf8a1f5d67 (patch) | |
tree | 5c6bf4eb04ef6c8a74cce412b8f2c5196d787aee /libavutil/dict.h | |
parent | 25de5958c8fd727777ebf8c4f7a9df6f9b8eb82d (diff) | |
download | ffmpeg-1b9b37b8a416e77b4c6425dcdcee21cf8a1f5d67.tar.gz |
dict: add AV_DICT_APPEND flag.
Diffstat (limited to 'libavutil/dict.h')
-rw-r--r-- | libavutil/dict.h | 2 |
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; |