[FFmpeg-cvslog] avfilter/af_agate: fix pts handling when timebase and 1/samplerate differ
Paul B Mahol
git at videolan.org
Sun Nov 17 13:39:40 EET 2019
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Nov 17 12:23:48 2019 +0100| [0a17a30150560b8d20feee9266145d0b21a1e720] | committer: Paul B Mahol
avfilter/af_agate: fix pts handling when timebase and 1/samplerate differ
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0a17a30150560b8d20feee9266145d0b21a1e720
---
libavfilter/af_agate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/af_agate.c b/libavfilter/af_agate.c
index 0609dc222e..936caa0a44 100644
--- a/libavfilter/af_agate.c
+++ b/libavfilter/af_agate.c
@@ -318,7 +318,7 @@ static int activate(AVFilterContext *ctx)
dst = (double *)out->data[0];
out->pts = s->pts;
- s->pts += nb_samples;
+ s->pts += av_rescale_q(nb_samples, (AVRational){1, ctx->outputs[0]->sample_rate}, ctx->outputs[0]->time_base);
gate(s, (double *)in[0]->data[0], dst,
(double *)in[1]->data[0], nb_samples,
More information about the ffmpeg-cvslog
mailing list