mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avfilter/af_drmeter: Check that there is data
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@niedermayer.cc>
This commit is contained in:
parent
1f21349d20
commit
4f49fa6abe
@ -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++) {
|
||||
|
Loading…
Reference in New Issue
Block a user