[SCM] libav/experimental: ffmpeg: add a grow_array() helper function

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:16:47 UTC 2013


The following commit has been merged in the experimental branch:
commit dba249abeea40ee07edcec5508e872f767dc8c0f
Author: Aurelien Jacobs <aurel at gnuage.org>
Date:   Fri Oct 1 21:29:37 2010 +0000

    ffmpeg: add a grow_array() helper function
    
    Originally committed as revision 25297 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/ffmpeg.c b/ffmpeg.c
index 88ef798..cfd3cb8 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -647,6 +647,26 @@ static int ffmpeg_exit(int ret)
     return ret;
 }
 
+/* similar to ff_dynarray_add() and av_fast_realloc() */
+static void *grow_array(void *array, int elem_size, int *size, int new_size)
+{
+    if (new_size >= INT_MAX / elem_size) {
+        fprintf(stderr, "Array too big.\n");
+        ffmpeg_exit(1);
+    }
+    if (*size < new_size) {
+        uint8_t *tmp = av_realloc(array, new_size*elem_size);
+        if (!tmp) {
+            fprintf(stderr, "Could not alloc buffer.\n");
+            ffmpeg_exit(1);
+        }
+        memset(tmp + *size*elem_size, 0, (new_size-*size) * elem_size);
+        *size = new_size;
+        return tmp;
+    }
+    return array;
+}
+
 static void choose_sample_fmt(AVStream *st, AVCodec *codec)
 {
     if(codec && codec->sample_fmts){
diff --git a/libavformat/cutils.c b/libavformat/cutils.c
index 5092d99..c1b5613 100644
--- a/libavformat/cutils.c
+++ b/libavformat/cutils.c
@@ -24,6 +24,7 @@
 /* add one element to a dynamic array */
 void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem)
 {
+    /* see similar ffmpeg.c:grow_array() */
     int nb, nb_alloc;
     intptr_t *tab;
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list