mem: add av_strndup() for duplicating substrings
authorAnton Khirnov <anton@khirnov.net>
Tue, 12 Aug 2014 16:24:19 +0000 (16:24 +0000)
committerAnton Khirnov <anton@khirnov.net>
Wed, 13 Aug 2014 17:24:18 +0000 (17:24 +0000)
doc/APIchanges
libavutil/mem.c
libavutil/mem.h
libavutil/version.h

index 66fd1d17f2f360b228e24ab35b98501d6e3d59c5..6d1f0614fab7358f6650733aa471dd8b8eab9ad6 100644 (file)
@@ -13,6 +13,9 @@ libavutil:     2014-08-09
 
 API changes, most recent first:
 
+2014-08-xx - xxxxxxx - lavu 54.03.0 - mem.h
+  Add av_strndup().
+
 2014-xx-xx - xxxxxxx - lavu 54.02.0 - opt.h
   Add av_opt_get_dict_val/set_dict_val with AV_OPT_TYPE_DICT to support
   dictionary types being set as options.
index be42342de2585bbf92e6ea8c77ee5afe1b864f7a..b7bb65c139de522b29647617845d272cf7cc353b 100644 (file)
@@ -222,6 +222,26 @@ char *av_strdup(const char *s)
     return ptr;
 }
 
+char *av_strndup(const char *s, size_t len)
+{
+    char *ret = NULL, *end;
+
+    if (!s)
+        return NULL;
+
+    end = memchr(s, 0, len);
+    if (end)
+        len = end - s;
+
+    ret = av_realloc(NULL, len + 1);
+    if (!ret)
+        return NULL;
+
+    memcpy(ret, s, len);
+    ret[len] = 0;
+    return ret;
+}
+
 static void fill16(uint8_t *dst, int len)
 {
     uint32_t v = AV_RN16(dst - 2);
index 4a5e362cec5414912c4a2474874cc7cb35cf02a5..9f667c270bf314ca2e7b56b1610ab027a82e2c35 100644 (file)
@@ -217,6 +217,16 @@ av_alloc_size(1, 2) static inline void *av_mallocz_array(size_t nmemb, size_t si
  */
 char *av_strdup(const char *s) av_malloc_attrib;
 
+/**
+ * Duplicate a substring of the string s.
+ * @param s string to be duplicated
+ * @param len the maximum length of the resulting string (not counting the
+ *            terminating byte).
+ * @return Pointer to a newly-allocated string containing a
+ * copy of s or NULL if the string cannot be allocated.
+ */
+char *av_strndup(const char *s, size_t len) av_malloc_attrib;
+
 /**
  * Free a memory block which has been allocated with av_malloc(z)() or
  * av_realloc() and set the pointer pointing to it to NULL.
index 4a4154d950eaab4e88ac081bc9e82ebe635aa306..c22d0c5f4319a84cb5bf3baabb4291874a73d1ed 100644 (file)
@@ -54,7 +54,7 @@
  */
 
 #define LIBAVUTIL_VERSION_MAJOR 54
-#define LIBAVUTIL_VERSION_MINOR  2
+#define LIBAVUTIL_VERSION_MINOR  3
 #define LIBAVUTIL_VERSION_MICRO  0
 
 #define LIBAVUTIL_VERSION_INT   AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \