[FFmpeg-devel] [PATCH 20/33] fftools/ffmpeg: handle error codes from process_input_packet()
Anton Khirnov
anton at khirnov.net
Thu Jul 13 13:55:40 EEST 2023
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) ?
--
2.40.1
More information about the ffmpeg-devel
mailing list