diff options
author | Nick Renieris <velocityra@gmail.com> | 2019-08-29 16:10:41 +0300 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-09-02 09:26:52 +0200 |
commit | c31c708929787439173c03fba86a2d689669762b (patch) | |
tree | 861e28917d6e83fcb641c4e0e1799f5136af1d25 /configure | |
parent | 40abff05d245977089426e7e7761a4a2146446fb (diff) | |
download | ffmpeg-streaming-c31c708929787439173c03fba86a2d689669762b.zip ffmpeg-streaming-c31c708929787439173c03fba86a2d689669762b.tar.gz |
lavc/tiff: Decode embedded JPEGs in DNG images
Used a technique similar to lavc/tdsc.c for invoking the MJPEG decoder.
This commit adds support for:
- DNG tiles
- DNG tile huffman lossless JPEG decoding
- DNG 8-bpp ("packed" as dcraw calls it) decoding
- DNG color scaling [1]
- LinearizationTable tag
- BlackLevel tag
[1]: As specified in the DNG Specification - Chapter 5
Signed-off-by: Nick Renieris <velocityra@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2821,6 +2821,7 @@ tdsc_decoder_deps="zlib" tdsc_decoder_select="mjpeg_decoder" theora_decoder_select="vp3_decoder" thp_decoder_select="mjpeg_decoder" +tiff_decoder_select="mjpeg_decoder" tiff_decoder_suggest="zlib lzma" tiff_encoder_suggest="zlib" truehd_decoder_select="mlp_parser" |