summaryrefslogtreecommitdiff
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-08-10 10:13:30 +0000
committerAnton Khirnov <anton@khirnov.net>2014-08-10 15:40:38 +0000
commitd63443b9684fa7b3e086634f7b44b203b6d9221e (patch)
tree81ca86c25f46a03a1a6a5c0b0dca3d8988f10dce /libavcodec/utils.c
parent8dca0877e3e1457e9ec79ffa1ead1135aabb791c (diff)
lavc: drop the av_fast_{re,m}alloc compatibility wrappers
They were only needed until the bump.
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index b115da17f8..4253e8cf6c 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -56,18 +56,6 @@ static int (*lockmgr_cb)(void **mutex, enum AVLockOp op);
static void *codec_mutex;
static void *avformat_mutex;
-#if FF_API_FAST_MALLOC && CONFIG_SHARED && HAVE_SYMVER
-FF_SYMVER(void*, av_fast_realloc, (void *ptr, unsigned int *size, size_t min_size), "LIBAVCODEC_55")
-{
- return av_fast_realloc(ptr, size, min_size);
-}
-
-FF_SYMVER(void, av_fast_malloc, (void *ptr, unsigned int *size, size_t min_size), "LIBAVCODEC_55")
-{
- av_fast_malloc(ptr, size, min_size);
-}
-#endif
-
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
{
void **p = ptr;