mirror of https://git.ffmpeg.org/ffmpeg.git
lavc: use av_fifo_freep
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
This commit is contained in:
parent
ce1eefe691
commit
9b60d907ae
|
@ -724,7 +724,7 @@ static void flac_parse_close(AVCodecParserContext *c)
|
|||
av_free(curr);
|
||||
curr = temp;
|
||||
}
|
||||
av_fifo_free(fpc->fifo_buf);
|
||||
av_fifo_freep(&fpc->fifo_buf);
|
||||
av_free(fpc->wrap_buf);
|
||||
}
|
||||
|
||||
|
|
|
@ -234,7 +234,7 @@ void ff_frame_thread_encoder_free(AVCodecContext *avctx){
|
|||
pthread_mutex_destroy(&c->buffer_mutex);
|
||||
pthread_cond_destroy(&c->task_fifo_cond);
|
||||
pthread_cond_destroy(&c->finished_task_cond);
|
||||
av_fifo_free(c->task_fifo); c->task_fifo = NULL;
|
||||
av_fifo_freep(&c->task_fifo);
|
||||
av_freep(&avctx->internal->frame_thread_encoder);
|
||||
}
|
||||
|
||||
|
|
|
@ -183,7 +183,7 @@ static av_cold int libvorbis_encode_close(AVCodecContext *avctx)
|
|||
vorbis_dsp_clear(&s->vd);
|
||||
vorbis_info_clear(&s->vi);
|
||||
|
||||
av_fifo_free(s->pkt_fifo);
|
||||
av_fifo_freep(&s->pkt_fifo);
|
||||
ff_af_queue_close(&s->afq);
|
||||
av_freep(&avctx->extradata);
|
||||
|
||||
|
|
Loading…
Reference in New Issue