ffmpeg | branch: master | Michael Niedermayer <mich...@niedermayer.cc> | Thu Apr 21 16:49:00 2016 +0200| [7b7c338e9a7390d5463f2ba6b240e254f8e77de0] | committer: Michael Niedermayer
avfilter: Add AV_OPT_FLAG_FILTERING_PARAM to where it was missing Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7b7c338e9a7390d5463f2ba6b240e254f8e77de0 --- libavfilter/split.c | 2 +- libavfilter/vf_format.c | 2 +- libavfilter/vf_scale_npp.c | 2 +- libavfilter/vf_scale_vaapi.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavfilter/split.c b/libavfilter/split.c index c545fd6..6cf4ab1 100644 --- a/libavfilter/split.c +++ b/libavfilter/split.c @@ -95,7 +95,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) } #define OFFSET(x) offsetof(SplitContext, x) -#define FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM +#define FLAGS (AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM) static const AVOption options[] = { { "outputs", "set number of outputs", OFFSET(nb_outputs), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, FLAGS }, { NULL } diff --git a/libavfilter/vf_format.c b/libavfilter/vf_format.c index 1fb3442..a57c99d 100644 --- a/libavfilter/vf_format.c +++ b/libavfilter/vf_format.c @@ -140,7 +140,7 @@ static int query_formats(AVFilterContext *ctx) #define OFFSET(x) offsetof(FormatContext, x) static const AVOption options[] = { - { "pix_fmts", "A '|'-separated list of pixel formats", OFFSET(pix_fmts), AV_OPT_TYPE_STRING, .flags = AV_OPT_FLAG_VIDEO_PARAM }, + { "pix_fmts", "A '|'-separated list of pixel formats", OFFSET(pix_fmts), AV_OPT_TYPE_STRING, .flags = AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM }, { NULL } }; diff --git a/libavfilter/vf_scale_npp.c b/libavfilter/vf_scale_npp.c index 7d2b5df..68cee39 100644 --- a/libavfilter/vf_scale_npp.c +++ b/libavfilter/vf_scale_npp.c @@ -600,7 +600,7 @@ fail: } #define OFFSET(x) offsetof(NPPScaleContext, x) -#define FLAGS AV_OPT_FLAG_VIDEO_PARAM +#define FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM) static const AVOption options[] = { { "w", "Output video width", OFFSET(w_expr), AV_OPT_TYPE_STRING, { .str = "iw" }, .flags = FLAGS }, { "h", "Output video height", OFFSET(h_expr), AV_OPT_TYPE_STRING, { .str = "ih" }, .flags = FLAGS }, diff --git a/libavfilter/vf_scale_vaapi.c b/libavfilter/vf_scale_vaapi.c index f7eb891..8dd5acf 100644 --- a/libavfilter/vf_scale_vaapi.c +++ b/libavfilter/vf_scale_vaapi.c @@ -410,7 +410,7 @@ static av_cold void scale_vaapi_uninit(AVFilterContext *avctx) #define OFFSET(x) offsetof(ScaleVAAPIContext, x) -#define FLAGS (AV_OPT_FLAG_VIDEO_PARAM) +#define FLAGS (AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM) static const AVOption scale_vaapi_options[] = { { "w", "Output video width", OFFSET(output_width), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, .flags = FLAGS }, _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog