diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2017-07-10 10:34:30 -0400 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2017-08-15 15:27:42 +0200 |
commit | 62dfa2ba14d9adbf88e8748a7e1c5ce68f0f8fa8 (patch) | |
tree | 8c419cac7f62ab516cbc988a7a5b49bb7d49294d /libavfilter/allfilters.c | |
parent | 8b9ae9a8e03ca4f24edf9fc34779fbf365092cb0 (diff) | |
download | ffmpeg-62dfa2ba14d9adbf88e8748a7e1c5ce68f0f8fa8.tar.gz |
Add tonemap filter
Based off mpv automatic tonemapping capabilities.
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
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 e58c0d5c82..f1dacaffa8 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -325,6 +325,7 @@ static void register_all(void) REGISTER_FILTER(TILE, tile, vf); REGISTER_FILTER(TINTERLACE, tinterlace, vf); REGISTER_FILTER(TLUT2, tlut2, vf); + REGISTER_FILTER(TONEMAP, tonemap, vf); REGISTER_FILTER(TRANSPOSE, transpose, vf); REGISTER_FILTER(TRIM, trim, vf); REGISTER_FILTER(UNPREMULTIPLY, unpremultiply, vf); |