diff --git a/doc/APIchanges b/doc/APIchanges
index 067f60ffbf57c41aa6b9ce86471685431fb4b107..d8ab714e805ab157f341c45c75af3e1a10f781c3 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -15,6 +15,9 @@ libavutil:     2014-08-09
 
 API changes, most recent first:
 
+2014-xx-xx - xxxxxxx - lavu 54.4.100 - dict.h
+  Add av_dict_set_int helper function.
+
 2014-08-xx - xxxxxxx - lavu 54.03.0 - mem.h
   Add av_strndup().
 
diff --git a/libavutil/dict.c b/libavutil/dict.c
index aea89105412044b1ba5d0bf6cd5a055f1e730d25..9fdc6d6273519af6331ad670f976ab45a9df2274 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 025d8679936cc4e28dd2021b829cb4de559afc40..06f1621d4533fd00ff05bfdf2387527ab093ead0 100644
--- a/libavutil/dict.h
+++ b/libavutil/dict.h
@@ -31,6 +31,8 @@
 #ifndef AVUTIL_DICT_H
 #define AVUTIL_DICT_H
 
+#include <stdint.h>
+
 #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 f5b92778e2031a2173bda1b826197dfbef1d2a89..b86609b08a696b842d1fd2cfc4bf9df18b977e9d 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, \