Commit 65ba90ea authored by Martin Vignali's avatar Martin Vignali Committed by Paul B Mahol

avfilter/af_astats: Avoid Zero division in print part.

parent 9d7e42e6
......@@ -222,6 +222,9 @@ static void print_stats(AVFilterContext *ctx)
av_log(ctx, AV_LOG_INFO, "Peak count: %"PRId64"\n", p->min_count + p->max_count);
}
if (!nb_samples || !s->nb_channels)
return;
av_log(ctx, AV_LOG_INFO, "Overall\n");
av_log(ctx, AV_LOG_INFO, "DC offset: %f\n", max_sigma_x / (nb_samples / s->nb_channels));
av_log(ctx, AV_LOG_INFO, "Min level: %f\n", min);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment