Browse Source

lavfi: take_samples: free frames after taking all samples.

tags/n3.3
Nicolas George 9 years ago
parent
commit
ff8b17c998
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavfilter/avfilter.c

+ 1
- 0
libavfilter/avfilter.c View File

@@ -1288,6 +1288,7 @@ static int take_samples(AVFilterLink *link, unsigned min, unsigned max,
av_samples_copy(buf->extended_data, frame->extended_data, p, 0,
frame->nb_samples, link->channels, link->format);
p += frame->nb_samples;
av_frame_free(&frame);
}
if (p < nb_samples) {
unsigned n = nb_samples - p;


Loading…
Cancel
Save