TIFF image decoder. More...
#include "avcodec.h"
#include "config.h"
#include "lzw.h"
#include "tiff.h"
#include "faxcompr.h"
#include "internal.h"
#include "mathops.h"
#include "libavutil/attributes.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
Go to the source code of this file.
Data Structures | |
struct | TiffContext |
Typedefs | |
typedef struct TiffContext | TiffContext |
Functions | |
static unsigned | tget_short (const uint8_t **p, int le) |
static unsigned | tget_long (const uint8_t **p, int le) |
static unsigned | tget (const uint8_t **p, int type, int le) |
static int | tiff_unpack_strip (TiffContext *s, uint8_t *dst, int stride, const uint8_t *src, int size, int lines) |
static int | init_image (TiffContext *s) |
static int | tiff_decode_tag (TiffContext *s, const uint8_t *start, const uint8_t *buf, const uint8_t *end_buf) |
static int | decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
static av_cold int | tiff_init (AVCodecContext *avctx) |
static av_cold int | tiff_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_tiff_decoder |
TIFF image decoder.
Definition in file tiff.c.
typedef struct TiffContext TiffContext |
|
static |
|
static |
Definition at line 251 of file tiff.c.
Referenced by decode_frame().
|
static |
Definition at line 79 of file tiff.c.
Referenced by decode_frame(), and tiff_decode_tag().
|
static |
Definition at line 72 of file tiff.c.
Referenced by decode_frame(), tget(), and tiff_decode_tag().
|
static |
Definition at line 65 of file tiff.c.
Referenced by decode_frame(), tget(), and tiff_decode_tag().
|
static |
Definition at line 305 of file tiff.c.
Referenced by decode_frame().
|
static |
|
static |
|
static |
Definition at line 112 of file tiff.c.
Referenced by decode_frame().
AVCodec ff_tiff_decoder |