Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@flameeyes.eu>2014-08-18 12:27:49 +0400
committerLuca Barbato <lu_zero@gentoo.org>2014-08-18 16:23:24 +0400
commit12640e4cbb142be0cd025bcf37f1ea437bdfecd0 (patch)
tree97f004eddad13f89ff95926e448251299f3b83e7 /libavcodec/tiff.h
parentdd35d451fbc34795a8d19ac6c281bed53c42a29b (diff)
tiff: Return proper error for missing LZMA compression
The LZMA support is a semi-official extension supported by libtiff 4.0.0 and later. Signed-off-by: Diego Elio Pettenò <flameeyes@flameeyes.eu> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavcodec/tiff.h')
-rw-r--r--libavcodec/tiff.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/tiff.h b/libavcodec/tiff.h
index 8a3f7f75eb..68ac695937 100644
--- a/libavcodec/tiff.h
+++ b/libavcodec/tiff.h
@@ -71,7 +71,8 @@ enum TiffCompr {
TIFF_NEWJPEG,
TIFF_ADOBE_DEFLATE,
TIFF_PACKBITS = 0x8005,
- TIFF_DEFLATE = 0x80B2
+ TIFF_DEFLATE = 0x80B2,
+ TIFF_LZMA = 0x886D,
};
enum TiffTypes {