Do not hardcode the type of AVFilterFormats.formats in allocation

Originally committed as revision 11897 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Vitor Sessak 17 years ago
parent bd8ae4885b
commit 243370cb4d
  1. 4
      libavfilter/formats.c

@ -29,7 +29,7 @@ AVFilterFormats *avfilter_merge_formats(AVFilterFormats *a, AVFilterFormats *b)
ret = av_mallocz(sizeof(AVFilterFormats));
/* merge list of formats */
ret->formats = av_malloc(sizeof(int) * FFMIN(a->format_count,
ret->formats = av_malloc(sizeof(*ret->formats) * FFMIN(a->format_count,
b->format_count));
for(i = 0; i < a->format_count; i ++)
for(j = 0; j < b->format_count; j ++)
@ -72,7 +72,7 @@ AVFilterFormats *avfilter_make_format_list(int len, ...)
va_list vl;
ret = av_mallocz(sizeof(AVFilterFormats));
ret->formats = av_malloc(sizeof(int) * len);
ret->formats = av_malloc(sizeof(*ret->formats) * len);
ret->format_count = len;
va_start(vl, len);

Loading…
Cancel
Save