mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
FFmpeg : Close input file and free any related memory if
av_find_stream_info fails. Originally committed as revision 24247 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ea15d2000c
commit
961e4a3389
1
ffmpeg.c
1
ffmpeg.c
@ -3203,6 +3203,7 @@ static void opt_input_file(const char *filename)
|
|||||||
ret = av_find_stream_info(ic);
|
ret = av_find_stream_info(ic);
|
||||||
if (ret < 0 && verbose >= 0) {
|
if (ret < 0 && verbose >= 0) {
|
||||||
fprintf(stderr, "%s: could not find codec parameters\n", filename);
|
fprintf(stderr, "%s: could not find codec parameters\n", filename);
|
||||||
|
av_close_input_file(ic);
|
||||||
av_exit(1);
|
av_exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user