FFmpeg
|
Go to the source code of this file.
Data Structures | |
struct | RangeCoder |
Macros | |
#define | MAX_OVERREAD 2 |
Functions | |
void | ff_init_range_encoder (RangeCoder *c, uint8_t *buf, int buf_size) |
void | ff_init_range_decoder (RangeCoder *c, const uint8_t *buf, int buf_size) |
int | ff_rac_terminate (RangeCoder *c, int version) |
Terminates the range coder. More... | |
void | ff_build_rac_states (RangeCoder *c, int factor, int max_p) |
static void | renorm_encoder (RangeCoder *c) |
static int | get_rac_count (RangeCoder *c) |
static void | put_rac (RangeCoder *c, uint8_t *const state, int bit) |
static void | refill (RangeCoder *c) |
static int | get_rac (RangeCoder *c, uint8_t *const state) |
Range coder.
Definition in file rangecoder.h.
#define MAX_OVERREAD 2 |
Definition at line 46 of file rangecoder.h.
void ff_init_range_encoder | ( | RangeCoder * | c, |
uint8_t * | buf, | ||
int | buf_size | ||
) |
Definition at line 42 of file rangecoder.c.
Referenced by encode_frame(), ff_init_range_decoder(), main(), and write_extradata().
void ff_init_range_decoder | ( | RangeCoder * | c, |
const uint8_t * | buf, | ||
int | buf_size | ||
) |
Definition at line 53 of file rangecoder.c.
Referenced by decode_frame(), main(), and read_extra_header().
int ff_rac_terminate | ( | RangeCoder * | c, |
int | version | ||
) |
Terminates the range coder.
version | version 0 requires the decoder to know the data size in bytes version 1 needs about 1 bit more space but does not need to carry the size from encoder to decoder |
Definition at line 109 of file rangecoder.c.
Referenced by encode_frame(), encode_slice(), main(), and write_extradata().
void ff_build_rac_states | ( | RangeCoder * | c, |
int | factor, | ||
int | max_p | ||
) |
Definition at line 68 of file rangecoder.c.
Referenced by decode_frame(), encode_frame(), encode_init(), main(), read_extra_header(), and write_extradata().
|
inlinestatic |
Definition at line 62 of file rangecoder.h.
Referenced by ff_rac_terminate(), and put_rac().
|
inlinestatic |
Definition at line 87 of file rangecoder.h.
Referenced by encode_q_branch().
|
inlinestatic |
Definition at line 95 of file rangecoder.h.
|
inlinestatic |
Definition at line 114 of file rangecoder.h.
Referenced by get_rac().
|
inlinestatic |
Definition at line 127 of file rangecoder.h.
Referenced by decode_frame(), decode_header(), decode_line_TMPL(), decode_q_branch(), decode_slice(), decode_slice_header(), get_symbol(), get_symbol2(), get_symbol_inline(), main(), rac_check_termination(), read_extra_header(), read_header(), and unpack_coeffs().