diff options
author | Bjorn Roche <bjorn@giphy.com> | 2017-10-23 19:12:57 -0400 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-10-28 17:14:26 +0200 |
commit | aba926e7d654b6dfab680130c92e571ee9a956f0 (patch) | |
tree | 75dff5726ede3cf9f736253d469269c89294d686 /doc | |
parent | 851829455889cfefee8d802d8428ed36effb9fcf (diff) | |
download | ffmpeg-aba926e7d654b6dfab680130c92e571ee9a956f0.tar.gz |
lavfi/paletteuse: fix to support transparency
This patch enables paletteuse to identify the transparency in incoming
video and tag transparent pixels on outgoing video with the correct
index from the palette.
This requires tracking the transparency index in the palette,
establishing an alpha threshold below which a pixel is considered
transparent and above which the pixel is considered opaque, and
additional changes to track the alpha value throughout the conversion
process.
This change is a partial fix for https://trac.ffmpeg.org/ticket/4443
However, animated GIFs are still output incorrectly due to a bug
in gif optimization which does not correctly handle transparency.
Signed-off-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index ce7e053194..64e84d9b45 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -11545,6 +11545,13 @@ Default is @var{none}. @item new Take new palette for each output frame. + +@item alpha_threshold +Sets the alpha threshold for transparency. Alpha values above this threshold +will be treated as completely opaque, and values below this threshold will be +treated as completely transparent. + +The option must be an integer value in the range [0,255]. Default is @var{128}. @end table @subsection Examples |