X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Faf_extrastereo.c;h=d8e4da9a93653622c4775304b831dd4c494f354e;hb=6f34f031908b8f16482e951ee5232116fb42b46a;hp=13c6f4777679e90502ab5665ad32d7251bcdfbfb;hpb=b14761d1f8372dfe558193b8b754b9f1a858077d;p=ffmpeg diff --git a/libavfilter/af_extrastereo.c b/libavfilter/af_extrastereo.c index 13c6f477767..d8e4da9a936 100644 --- a/libavfilter/af_extrastereo.c +++ b/libavfilter/af_extrastereo.c @@ -31,7 +31,7 @@ typedef struct ExtraStereoContext { } ExtraStereoContext; #define OFFSET(x) offsetof(ExtraStereoContext, x) -#define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM +#define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM static const AVOption extrastereo_options[] = { { "m", "set the difference coefficient", OFFSET(mult), AV_OPT_TYPE_FLOAT, {.dbl=2.5}, -10, 10, A }, @@ -128,4 +128,6 @@ AVFilter ff_af_extrastereo = { .priv_class = &extrastereo_class, .inputs = inputs, .outputs = outputs, + .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, + .process_command = ff_filter_process_command, };