summaryrefslogtreecommitdiff
path: root/libavutil/mem.h
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-09-15 21:42:07 +0200
committerLuca Barbato <lu_zero@gentoo.org>2013-09-16 19:36:37 +0200
commit3feb3d6ce4be0a09a9f8f13d613bed25b523b6e7 (patch)
treedea7915eef1bacbb21952741c5b90e17c8c45541 /libavutil/mem.h
parent187105ff8a02bafc9c58d9d8363bb3f55a415635 (diff)
mem: Introduce av_reallocp
Diffstat (limited to 'libavutil/mem.h')
-rw-r--r--libavutil/mem.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h
index b473dd7460..f51682bb08 100644
--- a/libavutil/mem.h
+++ b/libavutil/mem.h
@@ -117,6 +117,25 @@ av_alloc_size(1, 2) static inline void *av_malloc_array(size_t nmemb, size_t siz
void *av_realloc(void *ptr, size_t size) av_alloc_size(2);
/**
+ * Allocate or reallocate a block of memory.
+ * If *ptr is NULL and size > 0, allocate a new block. If
+ * size is zero, free the memory block pointed to by ptr.
+ * @param ptr Pointer to a pointer to a memory block already allocated
+ * with av_realloc(), or pointer to a pointer to NULL.
+ * The pointer is updated on success, or freed on failure.
+ * @param size Size in bytes for the memory block to be allocated or
+ * reallocated
+ * @return Zero on success, an AVERROR error code on failure.
+ * @warning Pointers originating from the av_malloc() family of functions must
+ * not be passed to av_reallocp(). The former can be implemented using
+ * memalign() (or other functions), and there is no guarantee that
+ * pointers from such functions can be passed to realloc() at all.
+ * The situation is undefined according to POSIX and may crash with
+ * some libc implementations.
+ */
+int av_reallocp(void *ptr, size_t size);
+
+/**
* Allocate or reallocate an array.
* If ptr is NULL and nmemb > 0, allocate a new block. If
* nmemb is zero, free the memory block pointed to by ptr.