summaryrefslogtreecommitdiff
path: root/libavfilter/af_vibrato.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/af_vibrato.c')
-rw-r--r--libavfilter/af_vibrato.c2
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,
};