[FFmpeg-devel] [PATCH 5/5] avfilter/af_drmeter: Check that there is data
Michael Niedermayer
michael at niedermayer.cc
Sun Jun 6 16:47:57 EEST 2021
Fixes: floating point division by 0
Fixes: -nan is outside the range of representable values of type 'int'
Fixes: Ticket8307
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavfilter/af_drmeter.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/libavfilter/af_drmeter.c b/libavfilter/af_drmeter.c
index 3774259da3..58932fe6c5 100644
--- a/libavfilter/af_drmeter.c
+++ b/libavfilter/af_drmeter.c
@@ -167,6 +167,11 @@ static void print_stats(AVFilterContext *ctx)
float chdr, secondpeak, rmssum = 0;
int i, j, first = 0;
+ if (!p->nb_samples) {
+ av_log(ctx, AV_LOG_INFO, "No data, dynamic range not meassurable\n");
+ return;
+ }
+
finish_block(p);
for (i = 0; i <= 10000; i++) {
--
2.17.1
More information about the ffmpeg-devel
mailing list