[FFmpeg-devel] [PATCH 26/36] fftools/ffmpeg: rework handling -max_error_rate
Anton Khirnov
anton at khirnov.net
Wed May 17 13:20:19 EEST 2023
Replace the decode_error_stat global with a per-input-stream variable.
Also, print an error message when the error rate is exceeded.
---
fftools/ffmpeg.c | 28 ++++++++++++++++------------
fftools/ffmpeg.h | 1 +
fftools/ffmpeg_demux.c | 5 +++--
3 files changed, 20 insertions(+), 14 deletions(-)
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c
index 537f287637..2e9a2b940a 100644
--- a/fftools/ffmpeg.c
+++ b/fftools/ffmpeg.c
@@ -121,7 +121,6 @@ static int64_t getmaxrss(void);
int64_t nb_frames_dup = 0;
int64_t nb_frames_drop = 0;
-static int64_t decode_error_stat[2];
unsigned nb_output_dumped = 0;
static BenchmarkTimeStamps current_time;
@@ -771,8 +770,8 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
static void check_decode_result(InputStream *ist, int *got_output, int ret)
{
- if (*got_output || ret<0)
- decode_error_stat[ret<0] ++;
+ if (ret < 0)
+ ist->decode_errors++;
if (ret < 0 && exit_on_error)
exit_program(1);
@@ -1807,14 +1806,15 @@ static int transcode_step(OutputStream *ost)
/*
* The following code is the main loop of the file converter
*/
-static int transcode(void)
+static int transcode(int *err_rate_exceeded)
{
- int ret, i;
+ int ret = 0, i;
InputStream *ist;
int64_t timer_start;
print_stream_maps();
+ *err_rate_exceeded = 0;
atomic_store(&transcode_init_done, 1);
if (stdin_interaction) {
@@ -1858,6 +1858,12 @@ static int transcode(void)
if (!input_files[ist->file_index]->eof_reached) {
process_input_packet(ist, NULL, 0);
}
+
+ if ((ist->frames_decoded + ist->decode_errors) * max_error_rate < ist->decode_errors) {
+ av_log(ist, AV_LOG_FATAL, "Maximum error rate %g exceeded\n", max_error_rate);
+ *err_rate_exceeded = 1;
+ }
+
}
enc_flush();
@@ -1921,7 +1927,7 @@ static int64_t getmaxrss(void)
int main(int argc, char **argv)
{
- int ret;
+ int ret, err_rate_exceeded;
BenchmarkTimeStamps ti;
init_dynload();
@@ -1958,7 +1964,7 @@ int main(int argc, char **argv)
}
current_time = ti = get_benchmark_time_stamps();
- ret = transcode();
+ ret = transcode(&err_rate_exceeded);
if (ret >= 0 && do_benchmark) {
int64_t utime, stime, rtime;
current_time = get_benchmark_time_stamps();
@@ -1969,12 +1975,10 @@ int main(int argc, char **argv)
"bench: utime=%0.3fs stime=%0.3fs rtime=%0.3fs\n",
utime / 1000000.0, stime / 1000000.0, rtime / 1000000.0);
}
- av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" frames successfully decoded, %"PRIu64" decoding errors\n",
- decode_error_stat[0], decode_error_stat[1]);
- if ((decode_error_stat[0] + decode_error_stat[1]) * max_error_rate < decode_error_stat[1])
- exit_program(69);
- ret = received_nb_signals ? 255 : ret;
+ ret = received_nb_signals ? 255 :
+ err_rate_exceeded ? 69 : ret;
+
exit_program(ret);
return ret;
}
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h
index 3a332768df..87e684a147 100644
--- a/fftools/ffmpeg.h
+++ b/fftools/ffmpeg.h
@@ -413,6 +413,7 @@ typedef struct InputStream {
// number of frames/samples retrieved from the decoder
uint64_t frames_decoded;
uint64_t samples_decoded;
+ uint64_t decode_errors;
} InputStream;
typedef struct LastFrameDuration {
diff --git a/fftools/ffmpeg_demux.c b/fftools/ffmpeg_demux.c
index df87e0f30a..401ae1f850 100644
--- a/fftools/ffmpeg_demux.c
+++ b/fftools/ffmpeg_demux.c
@@ -786,8 +786,9 @@ static void demux_final_stats(Demuxer *d)
ds->nb_packets, ds->data_size);
if (ist->decoding_needed) {
- av_log(f, AV_LOG_VERBOSE, "%"PRIu64" frames decoded",
- ist->frames_decoded);
+ av_log(f, AV_LOG_VERBOSE,
+ "%"PRIu64" frames decoded; %"PRIu64" decode errors",
+ ist->frames_decoded, ist->decode_errors);
if (type == AVMEDIA_TYPE_AUDIO)
av_log(f, AV_LOG_VERBOSE, " (%"PRIu64" samples)", ist->samples_decoded);
av_log(f, AV_LOG_VERBOSE, "; ");
--
2.39.2
More information about the ffmpeg-devel
mailing list