32 #define LZMA_API_STATIC 
   95 #define RET_GEOKEY(TYPE, array, element)\ 
   96     if (key >= TIFF_##TYPE##_KEY_ID_OFFSET &&\ 
   97         key - TIFF_##TYPE##_KEY_ID_OFFSET < FF_ARRAY_ELEMS(ff_tiff_##array##_name_type_map))\ 
   98         return ff_tiff_##array##_name_type_map[key - TIFF_##TYPE##_KEY_ID_OFFSET].element; 
  143 #define RET_GEOKEY_VAL(TYPE, array)\ 
  144     if (val >= TIFF_##TYPE##_OFFSET &&\ 
  145         val - TIFF_##TYPE##_OFFSET < FF_ARRAY_ELEMS(ff_tiff_##array##_codes))\ 
  146         return av_strdup(ff_tiff_##array##_codes[val - TIFF_##TYPE##_OFFSET]); 
  198         snprintf(ap, 14, 
"Unknown-%d", val);
 
  206     uint64_t component_len;
 
  207     if (!sep) sep = 
", ";
 
  208     component_len = 24LL + strlen(sep);
 
  209     if (count >= (INT_MAX - 1)/component_len)
 
  211     ap = 
av_malloc(component_len * count + 1);
 
  216     for (i = 0; i < 
count; i++) {
 
  217         unsigned l = 
snprintf(ap, component_len, 
"%.15g%s", dp[i], sep);
 
  218         if(l >= component_len) {
 
  224     ap0[strlen(ap0) - strlen(sep)] = 
'\0';
 
  245         while (--width >= 0) {
 
  246             dst[(width+
offset)*8+7] = (usePtr ? src[width] : c)      & 0x1;
 
  247             dst[(width+
offset)*8+6] = (usePtr ? src[width] : c) >> 1 & 0x1;
 
  248             dst[(width+
offset)*8+5] = (usePtr ? src[width] : c) >> 2 & 0x1;
 
  249             dst[(width+
offset)*8+4] = (usePtr ? src[width] : c) >> 3 & 0x1;
 
  250             dst[(width+
offset)*8+3] = (usePtr ? src[width] : c) >> 4 & 0x1;
 
  251             dst[(width+
offset)*8+2] = (usePtr ? src[width] : c) >> 5 & 0x1;
 
  252             dst[(width+
offset)*8+1] = (usePtr ? src[width] : c) >> 6 & 0x1;
 
  253             dst[(width+
offset)*8+0] = (usePtr ? src[width] : c) >> 7;
 
  257         while (--width >= 0) {
 
  258             dst[(width+
offset)*4+3] = (usePtr ? src[width] : c) & 0x3;
 
  259             dst[(width+
offset)*4+2] = (usePtr ? src[width] : c) >> 2 & 0x3;
 
  260             dst[(width+
offset)*4+1] = (usePtr ? src[width] : c) >> 4 & 0x3;
 
  261             dst[(width+
offset)*4+0] = (usePtr ? src[width] : c) >> 6;
 
  265         while (--width >= 0) {
 
  266             dst[(width+
offset)*2+1] = (usePtr ? src[width] : c) & 0xF;
 
  267             dst[(width+
offset)*2+0] = (usePtr ? src[width] : c) >> 4;
 
  272             memcpy(dst + offset, src, width);
 
  274             memset(dst + offset, c, width);
 
  286     for (i = 0; i < 
size; i++)
 
  300         for (i = 0; i < 
w; i++) {
 
  309         for (i = 0; i < 
w; i++) {
 
  324     z_stream zstream = { 0 };
 
  327     zstream.next_in   = (
uint8_t *)src;
 
  328     zstream.avail_in  = 
size;
 
  329     zstream.next_out  = dst;
 
  330     zstream.avail_out = *
len;
 
  331     zret              = inflateInit(&zstream);
 
  336     zret = 
inflate(&zstream, Z_SYNC_FLUSH);
 
  337     inflateEnd(&zstream);
 
  338     *len = zstream.total_out;
 
  339     return zret == Z_STREAM_END ? Z_OK : zret;
 
  344                             int strip_start, 
int is_yuv)
 
  347     unsigned long outlen;
 
  349     outlen = width * lines;
 
  360     ret = tiff_uncompress(zbuf, &outlen, src, size);
 
  363                "Uncompressing failed (%lu of %lu) with error %d\n", outlen,
 
  364                (
unsigned long)width * lines, ret);
 
  369     for (line = 0; line < lines; line++) {
 
  373             memcpy(dst, src, width);
 
  388 static int tiff_uncompress_lzma(
uint8_t *dst, uint64_t *len, 
const uint8_t *src,
 
  391     lzma_stream stream = LZMA_STREAM_INIT;
 
  394     stream.next_in   = (
uint8_t *)src;
 
  395     stream.avail_in  = 
size;
 
  396     stream.next_out  = dst;
 
  397     stream.avail_out = *
len;
 
  398     ret              = lzma_stream_decoder(&stream, UINT64_MAX, 0);
 
  399     if (ret != LZMA_OK) {
 
  403     ret = lzma_code(&stream, LZMA_RUN);
 
  405     *len = stream.total_out;
 
  406     return ret == LZMA_STREAM_END ? LZMA_OK : ret;
 
  410                             const uint8_t *src, 
int size, 
int width, 
int lines,
 
  411                             int strip_start, 
int is_yuv)
 
  413     uint64_t outlen = width * (uint64_t)lines;
 
  425     ret = tiff_uncompress_lzma(buf, &outlen, src, size);
 
  426     if (ret != LZMA_OK) {
 
  428                "Uncompressing failed (%"PRIu64
" of %"PRIu64
") with error %d\n", outlen,
 
  429                (uint64_t)width * lines, ret);
 
  434     for (line = 0; line < lines; line++) {
 
  438             memcpy(dst, src, width);
 
  453                            const uint8_t *src, 
int size, 
int width, 
int lines)
 
  464                "Error allocating temporary buffer\n");
 
  469         memcpy(src2, src, size);
 
  471         for (i = 0; i < 
size; i++)
 
  478         for (line = 0; line < lines; line++) {
 
  486                              const uint8_t *src, 
int size, 
int strip_start, 
int lines)
 
  489     int c, line, 
pixels, code, ret;
 
  491     int width = ((s->
width * s->
bpp) + 7) >> 3;
 
  522         return tiff_unpack_zlib(s, p, dst, stride, src, size, width, lines,
 
  523                                 strip_start, is_yuv);
 
  526                "zlib support not enabled, " 
  527                "deflate compression not supported\n");
 
  533         return tiff_unpack_lzma(s, p, dst, stride, src, size, width, lines,
 
  534                                 strip_start, is_yuv);
 
  537                "LZMA support not enabled\n");
 
  547         if (size > 1 && !src[0] && (src[1]&1)) {
 
  554         for (line = 0; line < lines; line++) {
 
  556             if (pixels < width) {
 
  583     for (line = 0; line < lines; line++) {
 
  584         if (src - ssrc > size) {
 
  594             if (ssrc + size - src < width)
 
  599                                 dst, 1, src, 0, width, 0);
 
  602                 for (i = 0; i < 
width; i++)
 
  608             for (pixels = 0; pixels < 
width;) {
 
  609                 if (ssrc + size - src < 2) {
 
  616                     if (pixels + code > width ||
 
  617                         ssrc + size - src < code) {
 
  619                                "Copy went out of bounds\n");
 
  623                                     dst, 1, src, 0, code, pixels);
 
  626                 } 
else if (code != -128) { 
 
  628                     if (pixels + code > width) {
 
  630                                "Run went out of bounds\n");
 
  635                                     dst, 0, 
NULL, c, code, pixels);
 
  641                 for (i = 0; i < 
width; i++)
 
  658     int create_gray_palette = 0;
 
  663                "Unsupported image parameters: bpp=%d, bppcount=%d\n",
 
  678             create_gray_palette = 1;
 
  737                "This format is not supported (bpp=%d, bppcount=%d)\n",
 
  760         if (!create_gray_palette)
 
  765             uint32_t *pal = (uint32_t *)frame->
f->
data[1];
 
  766             for (i = 0; i < 1<<s->
bpp; i++)
 
  767                 pal[i] = 0xFFU << 24 | i * 255 / ((1<<s->
bpp) - 1) * 0x010101;
 
  776     s->
res[offset++] = num;
 
  779         uint64_t num = s->
res[2] * (uint64_t)s->
res[1];
 
  780         uint64_t den = s->
res[0] * (uint64_t)s->
res[3];
 
  781         if (num > INT64_MAX || den > INT64_MAX) {
 
  786                   num, den, INT32_MAX);
 
  836                    "This format is not supported (bpp=%d, %d components)\n",
 
  851                 for (i = 0; i < 
count; i++)
 
  862                    "Samples per pixel requires a single value, many provided\n");
 
  867                    "Samples per pixel %d is too large\n", value);
 
  914         if (!value || (type == 
TIFF_LONG && value == UINT_MAX))
 
  920             if (value > INT_MAX) {
 
  922                     "strippos %u too large\n", value);
 
  936             if (value > INT_MAX) {
 
  938                     "stripsize %u too large\n", value);
 
  952         set_sar(s, tag, value, value2);
 
  983                                           "PhotometricInterpretation 0x%04X",
 
  995                    "Unknown FillOrder value %d, trying default one\n", value);
 
 1003         if (count / 3 > 256 ||
 
 1007         pal_gb[0] = pal_gb[1] = pal_gb[2] = s->
gb;
 
 1017         for (i = 0; i < count / 3; i++) {
 
 1018             uint32_t p = 0xFF000000;
 
 1019             p |= (
ff_tget(&pal_gb[0], type, s->
le) >> off) << 16;
 
 1020             p |= (
ff_tget(&pal_gb[1], type, s->
le) >> off) << 8;
 
 1021             p |=  
ff_tget(&pal_gb[2], type, s->
le) >> off;
 
 1035         for (i = 0; i < 
count; i++) {
 
 1052 #define ADD_METADATA(count, name, sep)\ 
 1053     if ((ret = add_metadata(count, type, name, sep, s, frame)) < 0) {\ 
 1054         av_log(s->avctx, AV_LOG_ERROR, "Error allocating temporary buffer\n");\ 
 1101         if (count >= INT_MAX / 
sizeof(int64_t))
 
 1110         for (i = 0; i < 
count; i++)
 
 1195                    "Unknown or unsupported tag %d/0X%0X\n",
 
 1203                 "This format is not supported (bpp=%d, %d components)\n",
 
 1220     int i, j, entries, 
stride;
 
 1221     unsigned soff, ssize;
 
 1232     } 
else if (off >= UINT_MAX - 14 || avpkt->
size < off + 14) {
 
 1251     for (i = 0; i < entries; i++) {
 
 1305     for (plane = 0; plane < 
planes; plane++) {
 
 1306         int remaining = avpkt->
size;
 
 1309         for (i = 0; i < s->
height; i += s->
rps) {
 
 1322             if (soff > avpkt->
size || ssize > avpkt->
size - soff || ssize > remaining) {
 
 1343             ssize = s->
width * soff;
 
 1350                 for (i = 0; i < s->
height; i++) {
 
 1351                     for (j = soff; j < ssize; j += 2)
 
 1361                 for (i = 0; i < s->
height; i++) {
 
 1362                     for (j = soff; j < ssize; j += 2)
 
 1367                 for (i = 0; i < s->
height; i++) {
 
 1368                     for (j = soff; j < ssize; j++)
 
 1369                         dst[j] += dst[j - soff];
 
 1378             for (i = 0; i < s->
height; i++) {
 
 1379                 for (j = 0; j < 
stride; j++)
 
 1380                     dst[j] = c - dst[j];
 
int ff_lzw_decode(LZWState *p, uint8_t *buf, int len)
Decode given number of bytes NOTE: the algorithm here is inspired from the LZW GIF decoder written by...
 
const char const char void * val
 
#define AVERROR_INVALIDDATA
Invalid data found when processing input. 
 
const TiffGeoTagKeyName ff_tiff_projection_codes[]
 
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
 
This structure describes decoded (raw) audio or video data. 
 
ptrdiff_t const GLvoid * data
 
8 bits gray, 8 bits alpha 
 
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples) 
 
#define AV_LOG_WARNING
Something somehow does not look correct. 
 
static int init_thread_copy(AVCodecContext *avctx)
 
packed RGB 8:8:8, 24bpp, RGBRGB... 
 
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context. 
 
int ff_tadd_doubles_metadata(int count, const char *name, const char *sep, GetByteContext *gb, int le, AVDictionary **metadata)
Adds count doubles converted to a string into the metadata dictionary. 
 
static av_cold int init(AVCodecContext *avctx)
 
const uint8_t ff_reverse[256]
 
static av_always_inline void bytestream2_init_writer(PutByteContext *p, uint8_t *buf, int buf_size)
 
av_cold void ff_lzw_decode_close(LZWState **p)
 
static const char * search_keyval(const TiffGeoTagKeyName *keys, int n, int id)
 
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
 
av_cold void ff_lzw_decode_open(LZWState **p)
 
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx. 
 
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
 
static void free_geotags(TiffContext *const s)
 
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
 
unsigned int yuv_line_size
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
 
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
 
static av_always_inline unsigned int bytestream2_get_bufferu(GetByteContext *g, uint8_t *dst, unsigned int size)
 
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
Macro definitions for various function/variable attributes. 
 
static int tiff_unpack_strip(TiffContext *s, AVFrame *p, uint8_t *dst, int stride, const uint8_t *src, int size, int strip_start, int lines)
 
static int tiff_decode_tag(TiffContext *s, AVFrame *frame)
 
static const uint8_t type_sizes[14]
sizes of various TIFF field types (string size = 100) 
 
av_cold void ff_ccitt_unpack_init(void)
initialize unpacker code 
 
planar GBRA 4:4:4:4 64bpp, big-endian 
 
#define av_assert0(cond)
assert() equivalent, that is always enabled. 
 
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature. 
 
8 bits with AV_PIX_FMT_RGB32 palette 
 
#define TIFF_GEO_KEY_USER_DEFINED
 
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as lit...
 
static av_cold int end(AVCodecContext *avctx)
 
Multithreading support functions. 
 
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
 
static av_cold int tiff_init(AVCodecContext *avctx)
 
planar GBR 4:4:4 48bpp, big-endian 
 
static void inflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord)
 
static int add_metadata(int count, int type, const char *name, const char *sep, TiffContext *s, AVFrame *frame)
 
AVDictionary * metadata
metadata. 
 
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction. 
 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered. 
 
16 bits gray, 16 bits alpha (big-endian) 
 
unsigned int fax_buffer_size
 
#define AV_PIX_FMT_FLAG_RGB
The pixel format contains RGB-like data (as opposed to YUV/grayscale). 
 
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
 
static av_cold int tiff_end(AVCodecContext *avctx)
 
unsigned ff_tget_short(GetByteContext *gb, int le)
Reads a short from the bytestream using given endianness. 
 
static int deinvert_buffer(TiffContext *s, const uint8_t *src, int size)
 
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers. 
 
unsigned ff_tget(GetByteContext *gb, int type, int le)
Reads a byte from the bytestream using given endianness. 
 
static av_always_inline unsigned int bytestream2_get_bytes_left(GetByteContext *g)
 
const char * name
Name of the codec implementation. 
 
static void set_sar(TiffContext *s, unsigned tag, unsigned num, unsigned den)
 
static int tiff_unpack_fax(TiffContext *s, uint8_t *dst, int stride, const uint8_t *src, int size, int width, int lines)
 
int ff_ccitt_unpack(AVCodecContext *avctx, const uint8_t *src, int srcsize, uint8_t *dst, int height, int stride, enum TiffCompr compr, int opts)
unpack data compressed with CCITT Group 3 1/2-D or Group 4 method 
 
static const uint8_t offset[127][2]
 
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading. 
 
packed RGBA 8:8:8:8, 32bpp, RGBARGBA... 
 
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples) 
 
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified. 
 
uint64_t flags
Combination of AV_PIX_FMT_FLAG_... 
 
enum TiffPhotometric photometric
 
static const struct @304 planes[]
 
const TiffGeoTagKeyName ff_tiff_proj_cs_type_codes[]
 
uint8_t nb_components
The number of components each pixel has, (1-4) 
 
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors. 
 
int width
picture width / height. 
 
GLsizei GLboolean const GLfloat * value
 
static void unpack_yuv(TiffContext *s, AVFrame *p, const uint8_t *src, int lnum)
 
#define AV_EF_EXPLODE
abort decoding on minor error detection 
 
#define FF_ARRAY_ELEMS(a)
 
#define TIFF_GEO_KEY_UNDEFINED
 
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome. 
 
static av_always_inline int bytestream2_seek_p(PutByteContext *p, int offset, int whence)
 
static av_always_inline int bytestream2_tell(GetByteContext *g)
 
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
 
static const char * get_geokey_name(int key)
 
TiffCompr
list of TIFF compression types 
 
char * av_strdup(const char *s)
Duplicate a string. 
 
Libavcodec external API header. 
 
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line. 
 
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
 
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs. 
 
main external API structure. 
 
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry. 
 
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples) 
 
Rational number (pair of numerator and denominator). 
 
static int get_geokey_type(int key)
 
int ff_tadd_shorts_metadata(int count, const char *name, const char *sep, GetByteContext *gb, int le, int is_signed, AVDictionary **metadata)
Adds count shorts converted to a string into the metadata dictionary. 
 
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature. 
 
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes. 
 
Y , 1bpp, 0 is black, 1 is white, in each byte pixels are ordered from the msb to the lsb...
 
GLint GLenum GLboolean GLsizei stride
 
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples) 
 
common internal api header. 
 
static char * get_geokey_val(int key, int val)
 
static av_always_inline unsigned int bytestream2_get_eof(PutByteContext *p)
 
planar GBRA 4:4:4:4 32bpp 
 
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as big...
 
static void av_always_inline horizontal_fill(unsigned int bpp, uint8_t *dst, int usePtr, const uint8_t *src, uint8_t c, int width, int offset)
 
static char * doubles2str(double *dp, int count, const char *sep)
 
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) 
 
int ff_lzw_decode_init(LZWState *p, int csize, const uint8_t *buf, int buf_size, int mode)
Initialize LZW decoder. 
 
#define AVERROR_UNKNOWN
Unknown error, typically from an external library. 
 
#define RET_GEOKEY_VAL(TYPE, array)
 
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
 
int ff_tadd_string_metadata(int count, const char *name, GetByteContext *gb, int le, AVDictionary **metadata)
Adds a string of count characters into the metadata dictionary. 
 
Y , 16bpp, little-endian. 
 
static av_always_inline int bytestream2_seek(GetByteContext *g, int offset, int whence)
 
16 bits gray, 16 bits alpha (little-endian) 
 
int ff_tread_tag(GetByteContext *gb, int le, unsigned *tag, unsigned *type, unsigned *count, int *next)
Reads the first 3 fields of a TIFF tag, which are the tag id, the tag type and the count of values fo...
 
#define RET_GEOKEY(TYPE, array, element)
 
int ff_tdecode_header(GetByteContext *gb, int *le, int *ifd_offset)
Decodes a TIFF header from the input bytestream and sets the endianness in *le and the offset to the ...
 
static int init_image(TiffContext *s, ThreadFrame *frame)
 
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples) 
 
planar GBR 4:4:4 48bpp, little-endian 
 
#define av_malloc_array(a, b)
 
#define FFSWAP(type, a, b)
 
static int cmp_id_key(const void *id, const void *k)
 
double ff_tget_double(GetByteContext *gb, int le)
Reads a double from the bytestream using given endianness. 
 
planar GBRA 4:4:4:4 64bpp, little-endian 
 
#define ADD_METADATA(count, name, sep)
 
This structure stores compressed data. 
 
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane. 
 
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators. 
 
CCITT Fax Group 3 and 4 decompression. 
 
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
 
void * av_mallocz_array(size_t nmemb, size_t size)