[FFmpeg-cvslog] swresample/resample: use av_malloc_array() where appropriate

Michael Niedermayer git at videolan.org
Wed Jun 25 17:01:30 CEST 2014


ffmpeg | branch: release/2.0 | Michael Niedermayer <michaelni at gmx.at> | Tue Apr  8 00:29:26 2014 +0200| [e315549ffa168b06cf27e7af9ff8de7ea6540a17] | committer: Michael Niedermayer

swresample/resample: use av_malloc_array() where appropriate

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 5027f39712fdce25b9008e72d52e5abfeefd5fe6)

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e315549ffa168b06cf27e7af9ff8de7ea6540a17
---

 libswresample/resample.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libswresample/resample.c b/libswresample/resample.c
index 1288d9f..93c86aa 100644
--- a/libswresample/resample.c
+++ b/libswresample/resample.c
@@ -95,7 +95,7 @@ static int build_filter(ResampleContext *c, void *filter, double factor, int tap
                         int filter_type, int kaiser_beta){
     int ph, i;
     double x, y, w;
-    double *tab = av_malloc(tap_count * sizeof(*tab));
+    double *tab = av_malloc_array(tap_count,  sizeof(*tab));
     const int center= (tap_count-1)/2;
 
     if (!tab)



More information about the ffmpeg-cvslog mailing list