diff options
author | Paul B Mahol <onemda@gmail.com> | 2021-02-02 12:50:38 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2021-02-03 15:51:40 +0100 |
commit | b4ad669a425c9ec169e059bacd378f525cf53e9c (patch) | |
tree | a08ad78f7ead6cc0746d0ef74879522a4be341e2 /libavfilter/avfilter.c | |
parent | f6621a8e72c010faa77e8d0239fd45a4d71cfbf8 (diff) | |
download | ffmpeg-b4ad669a425c9ec169e059bacd378f525cf53e9c.tar.gz |
avfilter/avfilter: mark enable as runtime option too
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 8ff22c71e3..4c52d83842 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -620,11 +620,12 @@ static const AVClass *filter_child_class_iterate(void **iter) #define OFFSET(x) offsetof(AVFilterContext, x) #define FLAGS AV_OPT_FLAG_FILTERING_PARAM +#define TFLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM static const AVOption avfilter_options[] = { { "thread_type", "Allowed thread types", OFFSET(thread_type), AV_OPT_TYPE_FLAGS, { .i64 = AVFILTER_THREAD_SLICE }, 0, INT_MAX, FLAGS, "thread_type" }, { "slice", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AVFILTER_THREAD_SLICE }, .flags = FLAGS, .unit = "thread_type" }, - { "enable", "set enable expression", OFFSET(enable_str), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS }, + { "enable", "set enable expression", OFFSET(enable_str), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = TFLAGS }, { "threads", "Allowed number of threads", OFFSET(nb_threads), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS }, { "extra_hw_frames", "Number of extra hardware frames to allocate for the user", |