avconv: Replace goto redo on decode fail with continue.
This checks for sigterm but otherwise is identical to the previous behavior.
This commit is contained in:
parent
389e0a5a24
commit
b9630bcf82
3
avconv.c
3
avconv.c
@ -2246,7 +2246,6 @@ static int transcode(OutputFile *output_files,
|
||||
int64_t ipts_min;
|
||||
double opts_min;
|
||||
|
||||
redo:
|
||||
ipts_min = INT64_MAX;
|
||||
opts_min= 1e100;
|
||||
|
||||
@ -2361,7 +2360,7 @@ static int transcode(OutputFile *output_files,
|
||||
if (exit_on_error)
|
||||
exit_program(1);
|
||||
av_free_packet(&pkt);
|
||||
goto redo;
|
||||
continue;
|
||||
}
|
||||
|
||||
discard_packet:
|
||||
|
Loading…
x
Reference in New Issue
Block a user