diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-18 19:51:53 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-18 19:52:22 +0200 |
commit | 3f0c76e26205f867b089ac56d7cb14bf8d984ef0 (patch) | |
tree | 44bda496d6f5fd5d761b98385f3acb1e39bcb67b /libavcodec/tiff.h | |
parent | f47751a56cc470c90f9761afd510e5a6560340f9 (diff) | |
parent | 12640e4cbb142be0cd025bcf37f1ea437bdfecd0 (diff) | |
download | ffmpeg-3f0c76e26205f867b089ac56d7cb14bf8d984ef0.tar.gz |
Merge commit '12640e4cbb142be0cd025bcf37f1ea437bdfecd0'
* commit '12640e4cbb142be0cd025bcf37f1ea437bdfecd0':
tiff: Return proper error for missing LZMA compression
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/tiff.h')
-rw-r--r-- | libavcodec/tiff.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/tiff.h b/libavcodec/tiff.h index 11e9f1629d..3f692afa00 100644 --- a/libavcodec/tiff.h +++ b/libavcodec/tiff.h @@ -95,7 +95,8 @@ enum TiffCompr { TIFF_NEWJPEG, TIFF_ADOBE_DEFLATE, TIFF_PACKBITS = 0x8005, - TIFF_DEFLATE = 0x80B2 + TIFF_DEFLATE = 0x80B2, + TIFF_LZMA = 0x886D, }; enum TiffGeoTagKey { |