diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-04-26 23:45:24 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-04-26 23:45:24 +0000 |
commit | 785eb5fc57e006543254d35f5d699eff57a4f681 (patch) | |
tree | 253e3df420301ea934dc32d5535a837969c8d2c5 | |
parent | 7becddd5f38db93b6036d0149affb46a089bd2a3 (diff) | |
download | ffmpeg-785eb5fc57e006543254d35f5d699eff57a4f681.tar.gz |
lavfi/negate: unbreak negate alpha
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_lut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c index 4313e77204..010f58af28 100644 --- a/libavfilter/vf_lut.c +++ b/libavfilter/vf_lut.c @@ -403,7 +403,7 @@ DEFINE_LUT_FILTER(lutrgb, "Compute and apply a lookup table to the RGB input vid #if CONFIG_NEGATE_FILTER static const AVOption negate_options[] = { - { "negate_alpha", NULL, OFFSET(negate_alpha), AV_OPT_TYPE_INT, { .i64 = 0 }, .flags = FLAGS }, + { "negate_alpha", NULL, OFFSET(negate_alpha), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS }, { NULL }, }; |