summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-04-14 22:22:16 +0000
committerPaul B Mahol <onemda@gmail.com>2013-04-14 22:22:16 +0000
commit977ee8afd6a7275127147d1871a1f5a461e3e3c5 (patch)
treea9f7fc09df3b1e2249ed685163b5873dab3886dd
parent6ffe9113026aee069016fb567ff8b706dd88b958 (diff)
lavfi/negate: stop calling lut_init() as that function does nothing now
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r--libavfilter/vf_lut.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c
index 1f0b684b75..76db0f31db 100644
--- a/libavfilter/vf_lut.c
+++ b/libavfilter/vf_lut.c
@@ -421,7 +421,7 @@ static int negate_init(AVFilterContext *ctx)
}
}
- return lut_init(ctx);
+ return 0;
}
DEFINE_LUT_FILTER(negate, "Negate input video.");