mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02: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…
x
Reference in New Issue
Block a user