diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-08 00:29:26 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-10 04:53:00 +0200 |
commit | dde95268cc962dac4615d133015afe4a56ebbfdf (patch) | |
tree | 938dde602bbb0b0bc26bc00f706a530367958e77 | |
parent | d20ac551a8617533279b8b301f2749e8e5890848 (diff) | |
download | ffmpeg-dde95268cc962dac4615d133015afe4a56ebbfdf.tar.gz |
swresample/resample: use av_malloc_array() where appropriate
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 5027f39712fdce25b9008e72d52e5abfeefd5fe6)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libswresample/resample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/resample.c b/libswresample/resample.c index b968447444..65fd817be9 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) |