diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-28 22:00:26 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-19 19:06:55 +0200 |
commit | 15f03725ced37e3b99e76f63f52cb92e10f134e2 (patch) | |
tree | c3615129590315c08798b160cff04e6fe19bfddd /libavfilter/allfilters.c | |
parent | dd2793c880ea72c9aacda8245596694d9b4f378c (diff) | |
download | ffmpeg-15f03725ced37e3b99e76f63f52cb92e10f134e2.tar.gz |
lavfi: add negate filter
This filter is a simple wrapper around the LUT filter.
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 3c4a6e17b4..2983f6bd8c 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -58,6 +58,7 @@ void avfilter_register_all(void) REGISTER_FILTER (LUTRGB, lutrgb, vf); REGISTER_FILTER (LUTYUV, lutyuv, vf); REGISTER_FILTER (MP, mp, vf); + REGISTER_FILTER (NEGATE, negate, vf); REGISTER_FILTER (NOFORMAT, noformat, vf); REGISTER_FILTER (NULL, null, vf); REGISTER_FILTER (OCV, ocv, vf); |