From c2829dc925ffcc2a5934f3e99360a89fb0a3cad5 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Thu, 31 Jul 2014 20:08:19 +0200 Subject: dict.c: Add av_dict_set_int helper function. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This allows getting rid of the many, slightly differing, implementations of basically the same thing. Signed-off-by: Reimar Döffinger --- libavutil/dict.c | 8 ++++++++ libavutil/dict.h | 8 ++++++++ libavutil/version.h | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) (limited to 'libavutil') diff --git a/libavutil/dict.c b/libavutil/dict.c index aea8910541..9fdc6d6273 100644 --- a/libavutil/dict.c +++ b/libavutil/dict.c @@ -122,6 +122,14 @@ int av_dict_set(AVDictionary **pm, const char *key, const char *value, return 0; } +int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, + int flags) +{ + char valuestr[22]; + snprintf(valuestr, sizeof(valuestr), "%"PRId64, value); + return av_dict_set(pm, key, valuestr, flags); +} + static int parse_key_value_pair(AVDictionary **pm, const char **buf, const char *key_val_sep, const char *pairs_sep, int flags) diff --git a/libavutil/dict.h b/libavutil/dict.h index 025d867993..06f1621d45 100644 --- a/libavutil/dict.h +++ b/libavutil/dict.h @@ -31,6 +31,8 @@ #ifndef AVUTIL_DICT_H #define AVUTIL_DICT_H +#include + #include "version.h" /** @@ -122,6 +124,12 @@ int av_dict_count(const AVDictionary *m); */ int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags); +/** + * Convenience wrapper for av_dict_set that converts the value to a string + * and stores it. + */ +int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags); + /** * Parse the key/value pairs list and add the parsed entries to a dictionary. * diff --git a/libavutil/version.h b/libavutil/version.h index f5b92778e2..b86609b08a 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -56,7 +56,7 @@ */ #define LIBAVUTIL_VERSION_MAJOR 54 -#define LIBAVUTIL_VERSION_MINOR 3 +#define LIBAVUTIL_VERSION_MINOR 4 #define LIBAVUTIL_VERSION_MICRO 100 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ -- cgit v1.2.3