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

Michael Niedermayer git at videolan.org
Tue Apr 8 00:37:35 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Apr  8 00:29:26 2014 +0200| [5027f39712fdce25b9008e72d52e5abfeefd5fe6] | committer: Michael Niedermayer

swresample/resample: use av_malloc_array() where appropriate

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

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

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

diff --git a/libswresample/resample.c b/libswresample/resample.c
index 77653a7..ac87671 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