diff options
author | Clément Bœsch <u@pkh.me> | 2015-09-09 00:30:53 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-09-09 00:30:53 +0200 |
commit | 9f846ed4c79415b27b75f7e285325377384a07d9 (patch) | |
tree | e4011fbd334cae07ea2264071060d8df4fa137a6 /libavfilter/vf_lut3d.c | |
parent | dc2802c81ee8dbdc728e9624d40e4decfa95a053 (diff) | |
download | ffmpeg-9f846ed4c79415b27b75f7e285325377384a07d9.tar.gz |
avfilter/haldclut: use AV_OPT_TYPE_BOOL for shortest and repeatlast options
Diffstat (limited to 'libavfilter/vf_lut3d.c')
-rw-r--r-- | libavfilter/vf_lut3d.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_lut3d.c b/libavfilter/vf_lut3d.c index 5bdbb7983b..2b8e0272b0 100644 --- a/libavfilter/vf_lut3d.c +++ b/libavfilter/vf_lut3d.c @@ -772,8 +772,8 @@ static av_cold void haldclut_uninit(AVFilterContext *ctx) } static const AVOption haldclut_options[] = { - { "shortest", "force termination when the shortest input terminates", OFFSET(dinput.shortest), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS }, - { "repeatlast", "continue applying the last clut after eos", OFFSET(dinput.repeatlast), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, FLAGS }, + { "shortest", "force termination when the shortest input terminates", OFFSET(dinput.shortest), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, FLAGS }, + { "repeatlast", "continue applying the last clut after eos", OFFSET(dinput.repeatlast), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, FLAGS }, COMMON_OPTIONS }; |