FFmpeg
|
#include "config.h"
#include "libavutil/attributes.h"
#include "libavutil/avstring.h"
#include "libavutil/error.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "bytestream.h"
#include "faxcompr.h"
#include "internal.h"
#include "lzw.h"
#include "mathops.h"
#include "tiff.h"
#include "tiff_data.h"
#include "mjpegdec.h"
#include "thread.h"
#include "get_bits.h"
Go to the source code of this file.
Data Structures | |
struct | TiffContext |
Macros | |
#define | RET_GEOKEY(TYPE, array, element) |
#define | RET_GEOKEY_VAL(TYPE, array) |
#define | ADD_METADATA(count, name, sep) |
#define | OFFSET(x) offsetof(TiffContext, x) |
Functions | |
static void | tiff_set_type (TiffContext *s, enum TiffType tiff_type) |
static void | free_geotags (TiffContext *const s) |
static const char * | get_geokey_name (int key) |
static int | get_geokey_type (int key) |
static int | cmp_id_key (const void *id, const void *k) |
static const char * | search_keyval (const TiffGeoTagKeyName *keys, int n, int id) |
static char * | get_geokey_val (int key, int val) |
static char * | doubles2str (double *dp, int count, const char *sep) |
static int | add_metadata (int count, int type, const char *name, const char *sep, TiffContext *s, AVFrame *frame) |
static void av_always_inline | dng_blit (TiffContext *s, uint8_t *dst, int dst_stride, const uint8_t *src, int src_stride, int width, int height, int is_single_comp, int is_u16) |
static void av_always_inline | horizontal_fill (TiffContext *s, unsigned int bpp, uint8_t *dst, int usePtr, const uint8_t *src, uint8_t c, int width, int offset) |
static int | deinvert_buffer (TiffContext *s, const uint8_t *src, int size) |
static void | unpack_gray (TiffContext *s, AVFrame *p, const uint8_t *src, int lnum, int width, int bpp) |
static void | unpack_yuv (TiffContext *s, AVFrame *p, const uint8_t *src, int lnum) |
static int | tiff_unpack_fax (TiffContext *s, uint8_t *dst, int stride, const uint8_t *src, int size, int width, int lines) |
static int | dng_decode_strip (AVCodecContext *avctx, AVFrame *frame) |
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 uint16_t av_always_inline | dng_process_color16 (uint16_t value, const uint16_t *lut, uint16_t black_level, float scale_factor) |
Map stored raw sensor values into linear reference values (see: DNG Specification - Chapter 5) More... | |
static uint16_t av_always_inline | dng_process_color8 (uint16_t value, const uint16_t *lut, uint16_t black_level, float scale_factor) |
static int | dng_decode_jpeg (AVCodecContext *avctx, AVFrame *frame, int tile_byte_count, int dst_x, int dst_y, int w, int h) |
static int | dng_decode_tiles (AVCodecContext *avctx, AVFrame *frame, AVPacket *avpkt) |
static int | init_image (TiffContext *s, ThreadFrame *frame) |
static void | set_sar (TiffContext *s, unsigned tag, unsigned num, unsigned den) |
static int | tiff_decode_tag (TiffContext *s, AVFrame *frame) |
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 | |
static const AVOption | tiff_options [] |
static const AVClass | tiff_decoder_class |
AVCodec | ff_tiff_decoder |
TIFF image decoder
Definition in file tiff.c.
#define OFFSET | ( | x | ) | offsetof(TiffContext, x) |
|
static |
Definition at line 117 of file tiff.c.
Referenced by tiff_decode_tag().
|
static |
Definition at line 122 of file tiff.c.
Referenced by decode_frame(), and tiff_end().
|
static |
Definition at line 138 of file tiff.c.
Referenced by decode_frame().
Definition at line 148 of file tiff.c.
Referenced by decode_frame().
|
static |
Definition at line 158 of file tiff.c.
Referenced by search_keyval().
|
static |
Definition at line 163 of file tiff.c.
Referenced by get_geokey_val().
Definition at line 172 of file tiff.c.
Referenced by tiff_decode_tag().
|
static |
Definition at line 240 of file tiff.c.
Referenced by tiff_decode_tag().
|
static |
|
static |
Definition at line 813 of file tiff.c.
Referenced by dng_decode_jpeg(), and tiff_unpack_strip().
|
static |
Definition at line 281 of file tiff.c.
Referenced by tiff_unpack_fax(), and tiff_unpack_strip().
|
static |
Definition at line 336 of file tiff.c.
Referenced by tiff_unpack_strip().
|
static |
Definition at line 349 of file tiff.c.
Referenced by tiff_unpack_strip().
|
static |
Definition at line 362 of file tiff.c.
Referenced by tiff_unpack_strip().
|
static |
Definition at line 522 of file tiff.c.
Referenced by tiff_unpack_strip().
|
static |
Definition at line 1042 of file tiff.c.
Referenced by tiff_unpack_strip().
|
static |
Definition at line 557 of file tiff.c.
Referenced by decode_frame().
|
static |
Map stored raw sensor values into linear reference values (see: DNG Specification - Chapter 5)
Definition at line 785 of file tiff.c.
Referenced by dng_blit(), and dng_process_color8().
|
static |
Definition at line 806 of file tiff.c.
Referenced by dng_blit().
|
static |
Definition at line 876 of file tiff.c.
Referenced by dng_decode_strip(), and dng_decode_tiles().
|
static |
Definition at line 967 of file tiff.c.
Referenced by decode_frame().
|
static |
Definition at line 1055 of file tiff.c.
Referenced by decode_frame().
|
static |
Definition at line 1228 of file tiff.c.
Referenced by tiff_decode_tag().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
AVCodec ff_tiff_decoder |