From db2514a5dc905ce4d64b9ace3444200c19b039bd Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 12 Sep 2021 23:44:03 +0200 Subject: [PATCH] avfilter/af_speechnorm: improve EOF timestamp precision --- libavfilter/af_speechnorm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavfilter/af_speechnorm.c b/libavfilter/af_speechnorm.c index 35f8fe81a1..f56ca8e558 100644 --- a/libavfilter/af_speechnorm.c +++ b/libavfilter/af_speechnorm.c @@ -416,7 +416,8 @@ static int filter_frame(AVFilterContext *ctx) s->filter_channels[s->link](ctx, in, in->nb_samples); - s->pts = in->pts + in->nb_samples; + s->pts = in->pts + av_rescale_q(in->nb_samples, av_make_q(1, outlink->sample_rate), + outlink->time_base); return ff_filter_frame(outlink, in); }