ffmpeg: Use av_fifo_freep() to avoid stale pointers

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-10-14 17:05:25 +02:00
parent 7f7c494a33
commit 44453c09e4
1 changed files with 1 additions and 1 deletions

View File

@ -538,7 +538,7 @@ static void ffmpeg_cleanup(int ret)
av_fifo_generic_read(ost->muxing_queue, &pkt, sizeof(pkt), NULL);
av_packet_unref(&pkt);
}
av_fifo_free(ost->muxing_queue);
av_fifo_freep(&ost->muxing_queue);
av_freep(&output_streams[i]);
}