From ff037c54b43c512c7fd7f342801a086563c4de23 Mon Sep 17 00:00:00 2001 From: Alex Converse <alex.converse@gmail.com> Date: Tue, 30 Aug 2011 16:39:05 +0200 Subject: [PATCH] ffmpeg: Replace goto redo on decode fail with continue. This checks for sigterm but otherwise is identical to the previous behavior. --- ffmpeg.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 29ea5b26793..82169b82013 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2299,7 +2299,6 @@ static int transcode(OutputFile *output_files, int64_t ipts_min; double opts_min; - redo: ipts_min= INT64_MAX; opts_min= 1e100; /* if 'q' pressed, exits */ @@ -2490,7 +2489,7 @@ static int transcode(OutputFile *output_files, if (exit_on_error) exit_program(1); av_free_packet(&pkt); - goto redo; + continue; } discard_packet: -- GitLab