diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-09-24 18:30:28 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-09-24 18:30:28 +0000 |
commit | a58e96be0e6f01721c5a3c26c42d08d6247dd682 (patch) | |
tree | ff3f1f3af47e56ea862e37f26978fa28e34ff1d4 /libavcodec/tiff.h | |
parent | d38b7b80d136a9fafa649cd0b1a82c9d9e366cd6 (diff) | |
download | ffmpeg-a58e96be0e6f01721c5a3c26c42d08d6247dd682.tar.gz |
Support both LSB and MSB orders for TIFF CCITT G.x compressed data.
This fixes issue 1410.
Originally committed as revision 20016 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/tiff.h')
-rw-r--r-- | libavcodec/tiff.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/tiff.h b/libavcodec/tiff.h index e53c6e85f3..17c65b921c 100644 --- a/libavcodec/tiff.h +++ b/libavcodec/tiff.h @@ -37,6 +37,7 @@ enum TiffTags{ TIFF_BPP, TIFF_COMPR, TIFF_INVERT = 0x106, + TIFF_FILL_ORDER = 0x10A, TIFF_STRIP_OFFS = 0x111, TIFF_SAMPLES_PER_PIXEL = 0x115, TIFF_ROWSPERSTRIP = 0x116, |