Browse Source

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

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.2
Michael Niedermayer 8 years ago
parent
commit
d790e48830
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavutil/audio_fifo.c

+ 1
- 2
libavutil/audio_fifo.c View File

@@ -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