Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-24 19:13:01 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-24 20:30:42 +0400
commit9273cc8eb59f606262bca99bf41300452745de50 (patch)
treefae8feae38ac665a536e270d43d6fc7234069b1b /libavfilter/vf_vidstabtransform.c
parentc857c21a8c1c68dde2bd774bbeeafd838093bde7 (diff)
lavfi/vidstab: add missing flags for 2 options.
Diffstat (limited to 'libavfilter/vf_vidstabtransform.c')
-rw-r--r--libavfilter/vf_vidstabtransform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_vidstabtransform.c b/libavfilter/vf_vidstabtransform.c
index 10b977e0ce..4e9748f69d 100644
--- a/libavfilter/vf_vidstabtransform.c
+++ b/libavfilter/vf_vidstabtransform.c
@@ -47,7 +47,7 @@ typedef struct {
static const AVOption vidstabtransform_options[] = {
{"input", "path to the file storing the transforms (def:transforms.trf)", OFFSET(input),
- AV_OPT_TYPE_STRING, {.str = DEFAULT_INPUT_NAME} },
+ AV_OPT_TYPE_STRING, {.str = DEFAULT_INPUT_NAME}, .flags = FLAGS },
{"smoothing", "number of frames*2 + 1 used for lowpass filtering (def: 10)", OFFSETC(smoothing),
AV_OPT_TYPE_INT, {.i64 = 10}, 1, 1000, FLAGS},
{"maxshift", "maximal number of pixels to translate image (def: -1 no limit)", OFFSETC(maxShift),