diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-02-27 16:29:31 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-02-27 16:31:11 +0100 |
commit | 8bcb7d49f9d2e7dbb7cbdb84ac4ea9a6e217bda0 (patch) | |
tree | 89ac1393c48686157fc1841eed728663952a394b /libavfilter | |
parent | 57580376f7e467e5468d1ddb47ba3995130f732e (diff) | |
download | ffmpeg-8bcb7d49f9d2e7dbb7cbdb84ac4ea9a6e217bda0.tar.gz |
avfilter/af_vibrato: add timeline support
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_vibrato.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, }; |