diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-07-16 00:55:18 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-07-17 01:23:35 +0000 |
commit | 3071af6cf20c0d8a7d91b68fdd1308d9eda48e69 (patch) | |
tree | 36e75dab054722c61b3050047a7c83457e05e845 /libavcodec/tiff.h | |
parent | 292850b634240045805e3c2001aed6f046034e93 (diff) | |
download | ffmpeg-3071af6cf20c0d8a7d91b68fdd1308d9eda48e69.tar.gz |
tiff: read more tags of type string
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/tiff.h')
-rw-r--r-- | libavcodec/tiff.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libavcodec/tiff.h b/libavcodec/tiff.h index 258f10bf55..0abeb8c096 100644 --- a/libavcodec/tiff.h +++ b/libavcodec/tiff.h @@ -41,6 +41,10 @@ enum TiffTags{ TIFF_COMPR, TIFF_INVERT = 0x106, TIFF_FILL_ORDER = 0x10A, + TIFF_DOCUMENT_NAME = 0x10D, + TIFF_IMAGE_DESCRIPTION = 0x10E, + TIFF_MAKE = 0x10F, + TIFF_MODEL = 0x110, TIFF_STRIP_OFFS = 0x111, TIFF_SAMPLES_PER_PIXEL = 0x115, TIFF_ROWSPERSTRIP = 0x116, @@ -48,12 +52,17 @@ enum TiffTags{ TIFF_XRES = 0x11A, TIFF_YRES = 0x11B, TIFF_PLANAR = 0x11C, + TIFF_PAGE_NAME = 0x11D, TIFF_XPOS = 0x11E, TIFF_YPOS = 0x11F, TIFF_T4OPTIONS = 0x124, TIFF_T6OPTIONS, TIFF_RES_UNIT = 0x128, + TIFF_PAGE_NUMBER = 0x129, TIFF_SOFTWARE_NAME = 0x131, + TIFF_DATE = 0x132, + TIFF_ARTIST = 0x13B, + TIFF_HOST_COMPUTER = 0x13C, TIFF_PREDICTOR = 0x13D, TIFF_PAL = 0x140, TIFF_TILE_WIDTH = 0x142, @@ -64,6 +73,7 @@ enum TiffTags{ TIFF_YCBCR_SUBSAMPLING = 0x212, TIFF_YCBCR_POSITIONING = 0x213, TIFF_REFERENCE_BW = 0x214, + TIFF_COPYRIGHT = 0x8298, TIFF_MODEL_TIEPOINT = 0x8482, TIFF_MODEL_PIXEL_SCALE = 0x830E, TIFF_MODEL_TRANSFORMATION = 0x8480, |