Commit a62814ab authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/af_channelmap: Use av_mallocz_array()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1c7ac94c
...@@ -312,7 +312,7 @@ static int channelmap_filter_frame(AVFilterLink *inlink, AVFrame *buf) ...@@ -312,7 +312,7 @@ static int channelmap_filter_frame(AVFilterLink *inlink, AVFrame *buf)
if (nch_out > nch_in) { if (nch_out > nch_in) {
if (nch_out > FF_ARRAY_ELEMS(buf->data)) { if (nch_out > FF_ARRAY_ELEMS(buf->data)) {
uint8_t **new_extended_data = uint8_t **new_extended_data =
av_mallocz(nch_out * sizeof(*buf->extended_data)); av_mallocz_array(nch_out, sizeof(*buf->extended_data));
if (!new_extended_data) { if (!new_extended_data) {
av_frame_free(&buf); av_frame_free(&buf);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment