mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-30 14:40:32 +00:00
Revert "avformat/utils: Close codec context since it is allocated by avformat_new_stream in refrence to ticket 2716"
This causes a race condition with VLC. Its plausible that other
applications also would have races with it and its just fixing a memleak when
the user application forgets to free the codec. It causes more
problems than it solves in its current form, thus the revert.
Better solutions are welcome
This reverts commit 0f229f9b91
.
This commit is contained in:
parent
8710a634a5
commit
37ecd67b5e
@ -3178,9 +3178,6 @@ void ff_free_stream(AVFormatContext *s, AVStream *st){
|
||||
av_assert0(s->nb_streams>0);
|
||||
av_assert0(s->streams[ s->nb_streams-1 ] == st);
|
||||
|
||||
if (st->codec) {
|
||||
avcodec_close(st->codec);
|
||||
}
|
||||
if (st->parser) {
|
||||
av_parser_close(st->parser);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user