diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-05-07 14:48:56 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-05-22 18:23:43 +0200 |
commit | 12f51c1f9e9aef19cd2552769db8693e8b5d4e4d (patch) | |
tree | 5b44c9b0acd948004e1d289a45978800273d182b /libavfilter/allfilters.c | |
parent | ad22767cb61cdc75541b21154d65fd1ad6351025 (diff) | |
download | ffmpeg-12f51c1f9e9aef19cd2552769db8693e8b5d4e4d.tar.gz |
lavfi: add lut3d filter.
Fixes part of Ticket #2517.
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 07d7da002c..0f2442dc41 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -143,6 +143,7 @@ void avfilter_register_all(void) REGISTER_FILTER(INTERLACE, interlace, vf); REGISTER_FILTER(INTERLEAVE, interleave, vf); REGISTER_FILTER(KERNDEINT, kerndeint, vf); + REGISTER_FILTER(LUT3D, lut3d, vf); REGISTER_FILTER(LUT, lut, vf); REGISTER_FILTER(LUTRGB, lutrgb, vf); REGISTER_FILTER(LUTYUV, lutyuv, vf); |