[FFmpeg-cvslog] avcodec/wma: use av_malloc_array()
Michael Niedermayer
git at videolan.org
Tue Apr 22 02:48:07 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Apr 22 02:41:05 2014 +0200| [da621ffbcf19bddd9d92bfbfd780051bae11038e] | committer: Michael Niedermayer
avcodec/wma: use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=da621ffbcf19bddd9d92bfbfd780051bae11038e
---
libavcodec/wma.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavcodec/wma.c b/libavcodec/wma.c
index b6d6351..f2519f5 100644
--- a/libavcodec/wma.c
+++ b/libavcodec/wma.c
@@ -45,10 +45,10 @@ static av_cold void init_coef_vlc(VLC *vlc, uint16_t **prun_table,
init_vlc(vlc, VLCBITS, n, table_bits, 1, 1, table_codes, 4, 4, 0);
- run_table = av_malloc(n * sizeof(uint16_t));
- level_table = av_malloc(n * sizeof(uint16_t));
- flevel_table= av_malloc(n * sizeof(*flevel_table));
- int_table = av_malloc(n * sizeof(uint16_t));
+ run_table = av_malloc_array(n, sizeof(uint16_t));
+ level_table = av_malloc_array(n, sizeof(uint16_t));
+ flevel_table= av_malloc_array(n, sizeof(*flevel_table));
+ int_table = av_malloc_array(n, sizeof(uint16_t));
i = 2;
level = 1;
k = 0;
More information about the ffmpeg-cvslog
mailing list