| FFmpeg
    | 
#include <inttypes.h>#include "libavutil/common.h"#include "libavutil/intreadwrite.h"#include "avcodec.h"#include "bytestream.h"#include "get_bits.h"#include "internal.h"#include "unary.h"#include "thread.h"Go to the source code of this file.
| Macros | |
| #define | BITSTREAM_READER_LE | 
| Typedefs | |
| typedef int(* | decode_slice_func) (GetBitContext *gb, AVFrame *frame, int line, int height, uint8_t lru[3][8]) | 
| typedef void(* | setup_lru_func) (uint8_t lru[3][8]) | 
| Functions | |
| static int64_t | get_raw_size (enum AVPixelFormat fmt, int width, int height) | 
| static void | do_vflip (AVCodecContext *avctx, AVFrame *pic, int vflip) | 
| static int | dxtory_decode_v1_rgb (AVCodecContext *avctx, AVFrame *pic, const uint8_t *src, int src_size, int id, int bpp, uint32_t vflipped) | 
| static int | dxtory_decode_v1_410 (AVCodecContext *avctx, AVFrame *pic, const uint8_t *src, int src_size, uint32_t vflipped) | 
| static int | dxtory_decode_v1_420 (AVCodecContext *avctx, AVFrame *pic, const uint8_t *src, int src_size, uint32_t vflipped) | 
| static int | dxtory_decode_v1_444 (AVCodecContext *avctx, AVFrame *pic, const uint8_t *src, int src_size, uint32_t vflipped) | 
| static uint8_t | decode_sym (GetBitContext *gb, uint8_t lru[8]) | 
| static int | check_slice_size (AVCodecContext *avctx, const uint8_t *src, int src_size, int slice_size, int off) | 
| static int | load_buffer (AVCodecContext *avctx, const uint8_t *src, int src_size, GetByteContext *gb, int *nslices, int *off) | 
| static uint8_t | decode_sym_565 (GetBitContext *gb, uint8_t lru[8], int bits) | 
| static int | dxtory_decode_v2 (AVCodecContext *avctx, AVFrame *pic, const uint8_t *src, int src_size, decode_slice_func decode_slice, setup_lru_func setup_lru, enum AVPixelFormat fmt, uint32_t vflipped) | 
| static av_always_inline int | dx2_decode_slice_5x5 (GetBitContext *gb, AVFrame *frame, int line, int left, uint8_t lru[3][8], int is_565) | 
| static void | setup_lru_555 (uint8_t lru[3][8]) | 
| static void | setup_lru_565 (uint8_t lru[3][8]) | 
| static int | dx2_decode_slice_555 (GetBitContext *gb, AVFrame *frame, int line, int left, uint8_t lru[3][8]) | 
| static int | dx2_decode_slice_565 (GetBitContext *gb, AVFrame *frame, int line, int left, uint8_t lru[3][8]) | 
| static int | dxtory_decode_v2_565 (AVCodecContext *avctx, AVFrame *pic, const uint8_t *src, int src_size, int is_565, uint32_t vflipped) | 
| static int | dx2_decode_slice_rgb (GetBitContext *gb, AVFrame *frame, int line, int left, uint8_t lru[3][8]) | 
| static void | default_setup_lru (uint8_t lru[3][8]) | 
| static int | dxtory_decode_v2_rgb (AVCodecContext *avctx, AVFrame *pic, const uint8_t *src, int src_size, uint32_t vflipped) | 
| static int | dx2_decode_slice_410 (GetBitContext *gb, AVFrame *frame, int line, int left, uint8_t lru[3][8]) | 
| static int | dxtory_decode_v2_410 (AVCodecContext *avctx, AVFrame *pic, const uint8_t *src, int src_size, uint32_t vflipped) | 
| static int | dx2_decode_slice_420 (GetBitContext *gb, AVFrame *frame, int line, int left, uint8_t lru[3][8]) | 
| static int | dxtory_decode_v2_420 (AVCodecContext *avctx, AVFrame *pic, const uint8_t *src, int src_size, uint32_t vflipped) | 
| static int | dx2_decode_slice_444 (GetBitContext *gb, AVFrame *frame, int line, int left, uint8_t lru[3][8]) | 
| static int | dxtory_decode_v2_444 (AVCodecContext *avctx, AVFrame *pic, const uint8_t *src, int src_size, uint32_t vflipped) | 
| static int | decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) | 
| Variables | |
| static const uint8_t | def_lru [8] = { 0x00, 0x20, 0x40, 0x60, 0x80, 0xA0, 0xC0, 0xFF } | 
| static const uint8_t | def_lru_555 [8] = { 0x00, 0x08, 0x10, 0x18, 0x1F } | 
| static const uint8_t | def_lru_565 [8] = { 0x00, 0x08, 0x10, 0x20, 0x30, 0x3F } | 
| const AVCodec | ff_dxtory_decoder | 
| 
 | static | 
Definition at line 36 of file dxtory.c.
Referenced by dxtory_decode_v1_410(), dxtory_decode_v1_420(), dxtory_decode_v1_444(), and dxtory_decode_v1_rgb().
| 
 | static | 
Definition at line 55 of file dxtory.c.
Referenced by dxtory_decode_v1_410(), dxtory_decode_v1_420(), dxtory_decode_v1_444(), dxtory_decode_v1_rgb(), and dxtory_decode_v2().
| 
 | static | 
Definition at line 92 of file dxtory.c.
Referenced by decode_frame().
| 
 | static | 
Definition at line 124 of file dxtory.c.
Referenced by decode_frame().
| 
 | static | 
Definition at line 220 of file dxtory.c.
Referenced by decode_frame().
| 
 | static | 
Definition at line 293 of file dxtory.c.
Referenced by decode_frame().
| 
 | inlinestatic | 
Definition at line 336 of file dxtory.c.
Referenced by dx2_decode_slice_410(), dx2_decode_slice_420(), dx2_decode_slice_444(), and dx2_decode_slice_rgb().
| 
 | static | 
Definition at line 353 of file dxtory.c.
Referenced by dxtory_decode_v2().
| 
 | static | 
Definition at line 381 of file dxtory.c.
Referenced by dxtory_decode_v2().
| 
 | inlinestatic | 
Definition at line 403 of file dxtory.c.
Referenced by dx2_decode_slice_5x5().
| 
 | static | 
Definition at line 426 of file dxtory.c.
Referenced by dxtory_decode_v2_410(), dxtory_decode_v2_420(), dxtory_decode_v2_444(), dxtory_decode_v2_565(), and dxtory_decode_v2_rgb().
| 
 | static | 
Definition at line 492 of file dxtory.c.
Referenced by dx2_decode_slice_555(), and dx2_decode_slice_565().
| 
 | static | 
Definition at line 518 of file dxtory.c.
Referenced by dxtory_decode_v2_565().
| 
 | static | 
Definition at line 525 of file dxtory.c.
Referenced by dxtory_decode_v2_565().
| 
 | static | 
Definition at line 532 of file dxtory.c.
Referenced by dxtory_decode_v2_565().
| 
 | static | 
Definition at line 538 of file dxtory.c.
Referenced by dxtory_decode_v2_565().
| 
 | static | 
Definition at line 544 of file dxtory.c.
Referenced by decode_frame().
| 
 | static | 
Definition at line 561 of file dxtory.c.
Referenced by dxtory_decode_v2_rgb().
| 
 | static | 
Definition at line 582 of file dxtory.c.
Referenced by dxtory_decode_v2_410(), dxtory_decode_v2_420(), dxtory_decode_v2_444(), and dxtory_decode_v2_rgb().
| 
 | static | 
Definition at line 590 of file dxtory.c.
Referenced by decode_frame().
| 
 | static | 
Definition at line 600 of file dxtory.c.
Referenced by dxtory_decode_v2_410().
| 
 | static | 
Definition at line 669 of file dxtory.c.
Referenced by decode_frame().
| 
 | static | 
Definition at line 679 of file dxtory.c.
Referenced by dxtory_decode_v2_420().
| 
 | static | 
Definition at line 741 of file dxtory.c.
Referenced by decode_frame().
| 
 | static | 
Definition at line 751 of file dxtory.c.
Referenced by dxtory_decode_v2_444().
| 
 | static | 
Definition at line 782 of file dxtory.c.
Referenced by decode_frame().
| 
 | static | 
| 
 | static | 
Definition at line 332 of file dxtory.c.
Referenced by default_setup_lru(), setup_lru_555(), and setup_lru_565().
| 
 | static | 
Definition at line 333 of file dxtory.c.
Referenced by setup_lru_555(), and setup_lru_565().
| 
 | static | 
Definition at line 334 of file dxtory.c.
Referenced by setup_lru_565().
| const AVCodec ff_dxtory_decoder | 
 1.8.17
 1.8.17