X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Faf_extrastereo.c;h=d8e4da9a93653622c4775304b831dd4c494f354e;hb=c67d2a287502845baadf986a9c63e6117a25be3f;hp=13c6f4777679e90502ab5665ad32d7251bcdfbfb;hpb=23ce57af3ad684363881cdd66d5724f40963a65c;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, };