[SCM] libav/experimental: lavc: drop the av_fast_{re, m}alloc compatibility wrappers

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sat Aug 30 15:49:43 UTC 2014


The following commit has been merged in the experimental branch:
commit d63443b9684fa7b3e086634f7b44b203b6d9221e
Author: Anton Khirnov <anton at khirnov.net>
Date:   Sun Aug 10 10:13:30 2014 +0000

    lavc: drop the av_fast_{re,m}alloc compatibility wrappers
    
    They were only needed until the bump.

diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index b115da1..4253e8c 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;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list