From 464a5e8e7681267501cb4a5e96ad040522a67d4e Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 12 Jul 2023 19:49:43 +0200 Subject: [PATCH] fftools/ffmpeg: handle error codes from process_input_packet() None are returned for now, but that will change in future commits. --- fftools/ffmpeg.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 68924d21e0..dd7cfcf632 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -1103,6 +1103,8 @@ static int process_input(int file_index) ret = process_input_packet(ist, NULL, 0); if (ret>0) return 0; + else if (ret < 0) + return ret; } /* mark all outputs that don't go through lavfi as finished */ @@ -1124,11 +1126,11 @@ static int process_input(int file_index) sub2video_heartbeat(ifile, pkt->pts, pkt->time_base); - process_input_packet(ist, pkt, 0); + ret = process_input_packet(ist, pkt, 0); av_packet_free(&pkt); - return 0; + return ret < 0 ? ret : 0; } /** @@ -1219,7 +1221,8 @@ static int transcode(int *err_rate_exceeded) float err_rate; if (!input_files[ist->file_index]->eof_reached) { - process_input_packet(ist, NULL, 0); + int err = process_input_packet(ist, NULL, 0); + ret = err_merge(ret, err); } err_rate = (ist->frames_decoded || ist->decode_errors) ?