Browse Source

examples/transcoding: use av_malloc_array()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 12 years ago
parent
commit
9b467d3cd5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      doc/examples/transcoding.c

+ 1
- 1
doc/examples/transcoding.c View File

@@ -334,7 +334,7 @@ static int init_filters(void)
const char *filter_spec;
unsigned int i;
int ret;
filter_ctx = av_malloc(sizeof(FilteringContext) * ifmt_ctx->nb_streams);
filter_ctx = av_malloc_array(ifmt_ctx->nb_streams, sizeof(*filter_ctx));
if (!filter_ctx)
return AVERROR(ENOMEM);



Loading…
Cancel
Save