[FFmpeg-cvslog] avfilter/af_vibrato: add timeline support
Paul B Mahol
git at videolan.org
Sun Feb 27 17:30:13 EET 2022
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Feb 27 16:29:31 2022 +0100| [8bcb7d49f9d2e7dbb7cbdb84ac4ea9a6e217bda0] | committer: Paul B Mahol
avfilter/af_vibrato: add timeline support
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8bcb7d49f9d2e7dbb7cbdb84ac4ea9a6e217bda0
---
libavfilter/af_vibrato.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/af_vibrato.c b/libavfilter/af_vibrato.c
index 2cf1364273..fbb59059b0 100644
--- a/libavfilter/af_vibrato.c
+++ b/libavfilter/af_vibrato.c
@@ -71,7 +71,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
av_frame_copy_props(out, in);
}
-
for (n = 0; n < in->nb_samples; n++) {
double integer, decimal;
decimal = modf(s->depth * s->wave_table[s->wave_table_index], &integer);
@@ -175,4 +174,5 @@ const AVFilter ff_af_vibrato = {
FILTER_INPUTS(avfilter_af_vibrato_inputs),
FILTER_OUTPUTS(avfilter_af_vibrato_outputs),
FILTER_SINGLE_SAMPLEFMT(AV_SAMPLE_FMT_DBLP),
+ .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
};
More information about the ffmpeg-cvslog
mailing list