mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
avutil/audio_fifo: Use av_fifo_freep() and remove redundant if()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
44453c09e4
commit
d790e48830
@ -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…
Reference in New Issue
Block a user