X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Fvf_despill.c;h=bf6c7ca2cbb4e514cb8ba040263efee8a7366a4f;hb=cb9dbc60db1847fcb594684b92334da54ea8757e;hp=64c27f40609269d430a183cc0176e3f756b02fdf;hpb=203bbaccfaaeac9548862e83792d38509a8c8167;p=ffmpeg diff --git a/libavfilter/vf_despill.c b/libavfilter/vf_despill.c index 64c27f40609..bf6c7ca2cbb 100644 --- a/libavfilter/vf_despill.c +++ b/libavfilter/vf_despill.c @@ -153,7 +153,7 @@ static const AVFilterPad despill_outputs[] = { }; #define OFFSET(x) offsetof(DespillContext, x) -#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM +#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM static const AVOption despill_options[] = { { "type", "set the screen type", OFFSET(type), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, "type" }, @@ -179,5 +179,6 @@ AVFilter ff_vf_despill = { .query_formats = query_formats, .inputs = despill_inputs, .outputs = despill_outputs, + .process_command = ff_filter_process_command, .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS, };