FFmpeg
|
huffyuv decoder More...
#include "avcodec.h"
#include "get_bits.h"
#include "huffyuv.h"
#include "huffyuvdsp.h"
#include "thread.h"
#include "libavutil/pixdesc.h"
Go to the source code of this file.
Macros | |
#define | UNCHECKED_BITSTREAM_READER 1 |
#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. | |
#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+FF_INPUT_BUFFER_PADDING_SIZE] |
static const unsigned char | classic_shift_chroma [classic_shift_chroma_table_size+FF_INPUT_BUFFER_PADDING_SIZE] |
static const unsigned char | classic_add_luma [256] |
static const unsigned char | classic_add_chroma [256] |
AVCodec | ff_huffyuv_decoder |
huffyuv decoder
Definition in file huffyuvdec.c.
#define UNCHECKED_BITSTREAM_READER 1 |
Definition at line 33 of file huffyuvdec.c.
#define classic_shift_luma_table_size 42 |
Definition at line 42 of file huffyuvdec.c.
Referenced by read_old_huffman_tables().
#define classic_shift_chroma_table_size 59 |
Definition at line 50 of file huffyuvdec.c.
Referenced by read_old_huffman_tables().
Subset of GET_VLC for use in hand-roller VLC code.
Definition at line 564 of file huffyuvdec.c.
Referenced by decode_bgr_1().
Definition at line 589 of file huffyuvdec.c.
#define OP8bits | ( | dst0, | |
dst1, | |||
code | |||
) | dst0 = code>>8; dst1 = code |
Definition at line 609 of file huffyuvdec.c.
Referenced by decode_plane_bitstream().
#define READ_2PIX | ( | dst0, | |
dst1, | |||
plane1 | |||
) |
Definition at line 611 of file huffyuvdec.c.
Referenced by decode_422_bitstream(), and decode_gray_bitstream().
#define READ_2PIX_PLANE | ( | dst0, | |
dst1, | |||
plane, | |||
OP | |||
) |
#define OP14bits | ( | dst0, | |
dst1, | |||
code | |||
) | dst0 = code>>8; dst1 = sign_extend(code, 8) |
Definition at line 650 of file huffyuvdec.c.
Referenced by decode_plane_bitstream().
#define READ_2PIX_PLANE16 | ( | dst0, | |
dst1, | |||
plane | |||
) |
|
static |
Definition at line 96 of file huffyuvdec.c.
Referenced by read_huffman_tables(), and read_old_huffman_tables().
|
static |
Definition at line 115 of file huffyuvdec.c.
Referenced by read_huffman_tables(), and read_old_huffman_tables().
|
static |
Definition at line 197 of file huffyuvdec.c.
Referenced by decode_frame(), decode_init(), and decode_init_thread_copy().
|
static |
Definition at line 227 of file huffyuvdec.c.
Referenced by decode_init(), and decode_init_thread_copy().
|
static |
Definition at line 266 of file huffyuvdec.c.
|
static |
Definition at line 538 of file huffyuvdec.c.
|
static |
Definition at line 616 of file huffyuvdec.c.
Referenced by decode_frame().
|
static |
Definition at line 660 of file huffyuvdec.c.
Referenced by decode_frame().
|
static |
Definition at line 703 of file huffyuvdec.c.
Referenced by decode_frame().
|
static |
Definition at line 721 of file huffyuvdec.c.
Referenced by decode_bgr_bitstream().
|
static |
Definition at line 780 of file huffyuvdec.c.
Referenced by decode_frame().
|
static |
Definition at line 795 of file huffyuvdec.c.
Referenced by decode_frame().
|
static |
Definition at line 824 of file huffyuvdec.c.
Referenced by decode_frame().
|
static |
Definition at line 833 of file huffyuvdec.c.
Referenced by decode_frame().
|
static |
Definition at line 842 of file huffyuvdec.c.
Referenced by decode_frame().
|
static |
Definition at line 850 of file huffyuvdec.c.
|
static |
Definition at line 1164 of file huffyuvdec.c.
|
static |
Definition at line 43 of file huffyuvdec.c.
Referenced by read_old_huffman_tables().
|
static |
Definition at line 51 of file huffyuvdec.c.
Referenced by read_old_huffman_tables().
|
static |
Definition at line 58 of file huffyuvdec.c.
Referenced by read_old_huffman_tables().
|
static |
Definition at line 77 of file huffyuvdec.c.
Referenced by read_old_huffman_tables().
AVCodec ff_huffyuv_decoder |
Definition at line 1179 of file huffyuvdec.c.