avutil/frame_copy_audio: also check that channels match

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/56/merge
Michael Niedermayer 11 years ago
parent fff5262301
commit 74bb1ca82c
  1. 1
      libavutil/frame.c

@ -614,6 +614,7 @@ static int frame_copy_audio(AVFrame *dst, const AVFrame *src)
int i; int i;
if (dst->nb_samples != src->nb_samples || if (dst->nb_samples != src->nb_samples ||
dst->channels != src->channels ||
dst->channel_layout != src->channel_layout) dst->channel_layout != src->channel_layout)
return AVERROR(EINVAL); return AVERROR(EINVAL);

Loading…
Cancel
Save