mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
fate/api-codec-param: fix codec context leak
This commit is contained in:
parent
ff6dd5851b
commit
bd0a9f603d
@ -129,6 +129,12 @@ static int find_video_stream_info(AVFormatContext *fmt_ctx, int decode)
|
|||||||
end:
|
end:
|
||||||
av_packet_unref(&pkt);
|
av_packet_unref(&pkt);
|
||||||
|
|
||||||
|
/* close all codecs opened in try_decode_video_frame */
|
||||||
|
for (i = 0; i < fmt_ctx->nb_streams; i++) {
|
||||||
|
AVStream *st = fmt_ctx->streams[i];
|
||||||
|
avcodec_close(st->codec);
|
||||||
|
}
|
||||||
|
|
||||||
return ret < 0;
|
return ret < 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user