Browse Source

avutil/frame_copy_audio: also check that channels match

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 12 years ago
parent
commit
74bb1ca82c
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavutil/frame.c

+ 1
- 0
libavutil/frame.c View File

@@ -614,6 +614,7 @@ static int frame_copy_audio(AVFrame *dst, const AVFrame *src)
int i;

if (dst->nb_samples != src->nb_samples ||
dst->channels != src->channels ||
dst->channel_layout != src->channel_layout)
return AVERROR(EINVAL);



Loading…
Cancel
Save