Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2015-07-14 00:05:48 +0300
committerJames Almer <jamrial@gmail.com>2015-07-14 03:54:15 +0300
commit39a04ebcaf0410d8c5de1435fd1c4d0ed9752776 (patch)
tree150371abf3fd61282f5487a0d0073236c7ae8d45 /libavutil/mem_internal.h
parentce91bab70f69acc1a7e5705af95cc6fa89765825 (diff)
avutil/mem_internal: add missing header includes
Fixes make checkheaders Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/mem_internal.h')
-rw-r--r--libavutil/mem_internal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/mem_internal.h b/libavutil/mem_internal.h
index 54e14ac7b6..6fdbcb016e 100644
--- a/libavutil/mem_internal.h
+++ b/libavutil/mem_internal.h
@@ -21,6 +21,9 @@
#ifndef AVUTIL_MEM_INTERNAL_H
#define AVUTIL_MEM_INTERNAL_H
+#include "avassert.h"
+#include "mem.h"
+
static inline int ff_fast_malloc(void *ptr, unsigned int *size, size_t min_size, int zero_realloc)
{
void *val;