avutil/audio_fifo: Use av_fifo_freep() and remove redundant if()

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/237/merge
Michael Niedermayer 8 years ago
parent 44453c09e4
commit d790e48830
  1. 3
      libavutil/audio_fifo.c

@ -48,8 +48,7 @@ void av_audio_fifo_free(AVAudioFifo *af)
if (af->buf) {
int i;
for (i = 0; i < af->nb_buffers; i++) {
if (af->buf[i])
av_fifo_free(af->buf[i]);
av_fifo_freep(&af->buf[i]);
}
av_freep(&af->buf);
}

Loading…
Cancel
Save