You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avformat/utils: Close codec context since it is allocated by avformat_new_stream in refrence to ticket 2716
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
db0384c9c9
commit
0f229f9b91
@@ -3178,6 +3178,9 @@ void ff_free_stream(AVFormatContext *s, AVStream *st){
|
|||||||
av_assert0(s->nb_streams>0);
|
av_assert0(s->nb_streams>0);
|
||||||
av_assert0(s->streams[ s->nb_streams-1 ] == st);
|
av_assert0(s->streams[ s->nb_streams-1 ] == st);
|
||||||
|
|
||||||
|
if (st->codec) {
|
||||||
|
avcodec_close(st->codec);
|
||||||
|
}
|
||||||
if (st->parser) {
|
if (st->parser) {
|
||||||
av_parser_close(st->parser);
|
av_parser_close(st->parser);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user