diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-26 13:34:30 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-26 13:34:30 +0100 |
commit | e7e14bc69a606a6bec82efef729263cd38f122d4 (patch) | |
tree | b88a8db08cebe2a851d7f4179696cd89af7e7a45 /libavutil/dict.c | |
parent | 25c75525bf1da38179ec67924f0be7a2bd8faa0d (diff) | |
parent | 38c1466ca41c73c7ce347da702362cb69c151716 (diff) | |
download | ffmpeg-e7e14bc69a606a6bec82efef729263cd38f122d4.tar.gz |
Merge commit '38c1466ca41c73c7ce347da702362cb69c151716'
* commit '38c1466ca41c73c7ce347da702362cb69c151716':
dict: add av_dict_parse_string()
doc: support multitable in texi2pod
Conflicts:
doc/APIchanges
libavutil/version.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/dict.c')
-rw-r--r-- | libavutil/dict.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/libavutil/dict.c b/libavutil/dict.c index 7e7d1cc4a8..06f963cf62 100644 --- a/libavutil/dict.c +++ b/libavutil/dict.c @@ -110,6 +110,53 @@ int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags return 0; } +static int parse_key_value_pair(AVDictionary **pm, const char **buf, + const char *key_val_sep, const char *pairs_sep, + int flags) +{ + char *key = av_get_token(buf, key_val_sep); + char *val = NULL; + int ret; + + if (key && *key && strspn(*buf, key_val_sep)) { + (*buf)++; + val = av_get_token(buf, pairs_sep); + } + + if (key && *key && val && *val) + ret = av_dict_set(pm, key, val, flags); + else + ret = AVERROR(EINVAL); + + av_freep(&key); + av_freep(&val); + + return ret; +} + +int av_dict_parse_string(AVDictionary **pm, const char *str, + const char *key_val_sep, const char *pairs_sep, + int flags) +{ + int ret; + + if (!str) + return 0; + + /* ignore STRDUP flags */ + flags &= ~(AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL); + + while (*str) { + if ((ret = parse_key_value_pair(pm, &str, key_val_sep, pairs_sep, flags)) < 0) + return ret; + + if (*str) + str++; + } + + return 0; +} + void av_dict_free(AVDictionary **pm) { AVDictionary *m = *pm; |