FFmpeg
|
Go to the source code of this file.
Data Structures | |
struct | RLTable |
RLTable. More... | |
Macros | |
#define | MAX_RUN 64 |
#define | MAX_LEVEL 64 |
#define | INIT_VLC_RL(rl, static_size) |
Functions | |
int | ff_rl_init (RLTable *rl, uint8_t static_store[2][2 *MAX_RUN+MAX_LEVEL+3]) |
void | ff_rl_init_vlc (RLTable *rl, unsigned static_size) |
void | ff_rl_free (RLTable *rl) |
Free the contents of a dynamically allocated table. More... | |
static int | get_rl_index (const RLTable *rl, int last, int run, int level) |
rl header.
Definition in file rl.h.
#define INIT_VLC_RL | ( | rl, | |
static_size | |||
) |
static_store | static uint8_t array[2][2*MAX_RUN + MAX_LEVEL + 3] which will hold the level and run tables, if this is NULL av_malloc() will be used |
Definition at line 39 of file rl.c.
Referenced by encode_init(), ff_h261_common_init(), ff_h263_decode_init_vlc(), ff_h263_encode_init(), ff_mpeg12_init_vlcs(), ff_mpeg1_encode_init(), ff_mpeg4videodec_static_init(), ff_msmpeg4_decode_init(), ff_msmpeg4_encode_init(), and speedhq_static_init().
void ff_rl_free | ( | RLTable * | rl | ) |
Free the contents of a dynamically allocated table.
Definition at line 28 of file rl.c.
Referenced by ff_rl_init().
Definition at line 76 of file rl.h.
Referenced by ff_msmpeg4_encode_block(), get_size_of_code(), h261_encode_block(), h263_encode_block(), init_uni_h261_rl_tab(), init_uni_h263_rl_tab(), and init_uni_mpeg4_rl_tab().