mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 16:52:31 +00:00
mov: free the dv demux context with avformat_free_context()
This commit is contained in:
parent
a14b61658c
commit
edb1af7c46
@ -3040,12 +3040,8 @@ static int mov_read_close(AVFormatContext *s)
|
||||
}
|
||||
|
||||
if (mov->dv_demux) {
|
||||
for (i = 0; i < mov->dv_fctx->nb_streams; i++) {
|
||||
av_freep(&mov->dv_fctx->streams[i]->codec);
|
||||
av_freep(&mov->dv_fctx->streams[i]);
|
||||
}
|
||||
av_freep(&mov->dv_fctx);
|
||||
av_freep(&mov->dv_demux);
|
||||
avformat_free_context(mov->dv_fctx);
|
||||
mov->dv_fctx = NULL;
|
||||
}
|
||||
|
||||
av_freep(&mov->trex_data);
|
||||
|
Loading…
Reference in New Issue
Block a user