]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/vf_uspp: use av_malloc_array()
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 23 Dec 2014 21:52:56 +0000 (22:52 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 23 Dec 2014 21:52:56 +0000 (22:52 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/vf_uspp.c

index 3fd48d5c8f782819738b7c310a95ddd48ab6de6f..ffd340a4cb60f6a66ef7be5116faa9310c41966c 100644 (file)
@@ -335,9 +335,9 @@ static int config_input(AVFilterLink *inlink)
         int h = ((height + 4 * BLOCK-1) & (~(2 * BLOCK-1))) >> (is_chroma ? uspp->vsub : 0);
 
         uspp->temp_stride[i] = w;
-        if (!(uspp->temp[i] = av_malloc(uspp->temp_stride[i] * h * sizeof(int16_t))))
+        if (!(uspp->temp[i] = av_malloc_array(uspp->temp_stride[i], h * sizeof(int16_t))))
             return AVERROR(ENOMEM);
-        if (!(uspp->src [i] = av_malloc(uspp->temp_stride[i] * h * sizeof(uint8_t))))
+        if (!(uspp->src [i] = av_malloc_array(uspp->temp_stride[i], h * sizeof(uint8_t))))
             return AVERROR(ENOMEM);
     }