Commit 199db97f authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Close output codecs if input codec initialisation fails.

Fixes ticket #1546 and the remaining part of ticket #1244.
parent a21fd660
......@@ -2444,8 +2444,13 @@ static int transcode_init(void)
/* init input streams */
for (i = 0; i < nb_input_streams; i++)
if ((ret = init_input_stream(i, error, sizeof(error))) < 0)
if ((ret = init_input_stream(i, error, sizeof(error))) < 0) {
for (i = 0; i < nb_output_streams; i++) {
ost = output_streams[i];
avcodec_close(ost->st->codec);
}
goto dump_format;
}
/* discard unused programs */
for (i = 0; i < nb_input_files; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment