|
FFmpeg
|
#include "config_components.h"#include "avcodec.h"#include "bswapdsp.h"#include "codec_internal.h"#include "get_bits.h"#include "huffyuv.h"#include "huffyuvdsp.h"#include "lossless_videodsp.h"#include "thread.h"#include "libavutil/imgutils.h"#include "libavutil/pixdesc.h"Go to the source code of this file.
Data Structures | |
| struct | HYuvDecContext |
Macros | |
| #define | UNCHECKED_BITSTREAM_READER 1 |
| #define | VLC_BITS 12 |
| #define | classic_shift_luma_table_size 42 |
| #define | classic_shift_chroma_table_size 59 |
| #define | VLC_INTERN(dst, table, gb, name, bits, max_depth) |
| Subset of GET_VLC for use in hand-roller VLC code. More... | |
| #define | GET_VLC_DUAL(dst0, dst1, name, gb, dtable, table1, table2, bits, max_depth, OP) |
| #define | OP8bits(dst0, dst1, code) dst0 = code>>8; dst1 = code |
| #define | READ_2PIX(dst0, dst1, plane1) |
| #define | READ_2PIX_PLANE(dst0, dst1, plane, OP) |
| #define | OP14bits(dst0, dst1, code) dst0 = code>>8; dst1 = sign_extend(code, 8) |
| #define | READ_2PIX_PLANE16(dst0, dst1, plane) |
Variables | |
| static const unsigned char | classic_shift_luma [classic_shift_luma_table_size+AV_INPUT_BUFFER_PADDING_SIZE] |
| static const unsigned char | classic_shift_chroma [classic_shift_chroma_table_size+AV_INPUT_BUFFER_PADDING_SIZE] |
| static const unsigned char | classic_add_luma [256] |
| static const unsigned char | classic_add_chroma [256] |
| const FFCodec | ff_huffyuv_decoder |
huffyuv decoder
Definition in file huffyuvdec.c.
| #define UNCHECKED_BITSTREAM_READER 1 |
Definition at line 33 of file huffyuvdec.c.
| #define VLC_BITS 12 |
Definition at line 48 of file huffyuvdec.c.
| #define classic_shift_luma_table_size 42 |
Definition at line 85 of file huffyuvdec.c.
| #define classic_shift_chroma_table_size 59 |
Definition at line 93 of file huffyuvdec.c.
Subset of GET_VLC for use in hand-roller VLC code.
Definition at line 607 of file huffyuvdec.c.
Definition at line 632 of file huffyuvdec.c.
Definition at line 652 of file huffyuvdec.c.
| #define READ_2PIX | ( | dst0, | |
| dst1, | |||
| plane1 | |||
| ) |
| #define READ_2PIX_PLANE | ( | dst0, | |
| dst1, | |||
| plane, | |||
| OP | |||
| ) |
| #define OP14bits | ( | dst0, | |
| dst1, | |||
| code | |||
| ) | dst0 = code>>8; dst1 = sign_extend(code, 8) |
Definition at line 693 of file huffyuvdec.c.
| #define READ_2PIX_PLANE16 | ( | dst0, | |
| dst1, | |||
| plane | |||
| ) |
|
static |
Definition at line 140 of file huffyuvdec.c.
Referenced by read_huffman_tables(), and read_old_huffman_tables().
|
static |
Definition at line 159 of file huffyuvdec.c.
Referenced by read_huffman_tables(), and read_old_huffman_tables().
|
static |
Definition at line 249 of file huffyuvdec.c.
Referenced by decode_frame(), and decode_init().
|
static |
Definition at line 278 of file huffyuvdec.c.
Referenced by decode_init().
|
static |
Definition at line 318 of file huffyuvdec.c.
|
static |
Definition at line 332 of file huffyuvdec.c.
|
static |
Definition at line 659 of file huffyuvdec.c.
Referenced by decode_slice().
|
static |
Definition at line 703 of file huffyuvdec.c.
Referenced by decode_slice().
|
static |
Definition at line 764 of file huffyuvdec.c.
Referenced by decode_slice().
|
static |
Definition at line 782 of file huffyuvdec.c.
Referenced by decode_bgr_bitstream().
|
static |
Definition at line 840 of file huffyuvdec.c.
Referenced by decode_slice().
|
static |
Definition at line 855 of file huffyuvdec.c.
Referenced by decode_slice().
|
static |
Definition at line 883 of file huffyuvdec.c.
Referenced by decode_slice().
|
static |
Definition at line 892 of file huffyuvdec.c.
Referenced by decode_slice().
|
static |
Definition at line 901 of file huffyuvdec.c.
Referenced by decode_slice().
|
static |
Definition at line 910 of file huffyuvdec.c.
Referenced by decode_frame().
|
static |
Definition at line 1221 of file huffyuvdec.c.
|
static |
Definition at line 86 of file huffyuvdec.c.
Referenced by read_old_huffman_tables().
|
static |
Definition at line 94 of file huffyuvdec.c.
Referenced by read_old_huffman_tables().
|
static |
Definition at line 102 of file huffyuvdec.c.
Referenced by read_old_huffman_tables().
|
static |
Definition at line 121 of file huffyuvdec.c.
Referenced by read_old_huffman_tables().
| const FFCodec ff_huffyuv_decoder |
Definition at line 1304 of file huffyuvdec.c.
1.8.17