ffmpeg | branch: release/1.0 | Michael Niedermayer <michae...@gmx.at> | Tue Apr 
 8 00:29:06 2014 +0200| [b1ac8b1d3842383a74c7579cca09fc8212b6f9e8] | committer: 
Michael Niedermayer

swresample/dither: use av_malloc_array()

Signed-off-by: Michael Niedermayer <michae...@gmx.at>
(cherry picked from commit a5290cb1ac047851563da7aca06569e3ada55f79)

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

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

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

diff --git a/libswresample/dither.c b/libswresample/dither.c
index 79113f4..28cfbdd 100644
--- a/libswresample/dither.c
+++ b/libswresample/dither.c
@@ -24,7 +24,7 @@
 void swri_get_dither(SwrContext *s, void *dst, int len, unsigned seed, enum 
AVSampleFormat out_fmt, enum AVSampleFormat in_fmt) {
     double scale = 0;
 #define TMP_EXTRA 2
-    double *tmp = av_malloc((len + TMP_EXTRA) * sizeof(double));
+    double *tmp = av_malloc_array(len + TMP_EXTRA, sizeof(double));
     int i;
 
     out_fmt = av_get_packed_sample_fmt(out_fmt);

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

Reply via email to