diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-28 22:00:26 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-17 18:05:41 +0200 |
commit | 171868e25a231ff06864e9f37400680148af10b4 (patch) | |
tree | ff44d96374044e37f782481c0cdd9d85dffb2a08 /libavfilter/allfilters.c | |
parent | 8fe0c527f33fe6d2e89d62a23ae912553572452b (diff) | |
download | ffmpeg-171868e25a231ff06864e9f37400680148af10b4.tar.gz |
lavfi: add negate filter
This filter is a simple wrapper around the LUT filter.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 1357322302..ba853c7178 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -57,6 +57,7 @@ void avfilter_register_all(void) REGISTER_FILTER (LUT, lut, vf); REGISTER_FILTER (LUTRGB, lutrgb, vf); REGISTER_FILTER (LUTYUV, lutyuv, vf); + REGISTER_FILTER (NEGATE, negate, vf); REGISTER_FILTER (NOFORMAT, noformat, vf); REGISTER_FILTER (NULL, null, vf); REGISTER_FILTER (OCV, ocv, vf); |