|
#define | init_vlc(vlc, nb_bits, nb_codes, bits, bits_wrap, bits_size, codes, codes_wrap, codes_size, flags) |
|
#define | INIT_VLC_INPUT_LE 2 |
|
#define | INIT_VLC_OUTPUT_LE 8 |
|
#define | INIT_VLC_LE (INIT_VLC_INPUT_LE | INIT_VLC_OUTPUT_LE) |
|
#define | INIT_VLC_USE_NEW_STATIC 4 |
|
#define | INIT_VLC_STATIC_OVERLONG (1 | INIT_VLC_USE_NEW_STATIC) |
|
#define | INIT_CUSTOM_VLC_SPARSE_STATIC(vlc, bits, a, b, c, d, e, f, g, h, i, j, flags, static_size) |
|
#define | INIT_VLC_SPARSE_STATIC(vlc, bits, a, b, c, d, e, f, g, h, i, j, static_size) |
|
#define | INIT_LE_VLC_SPARSE_STATIC(vlc, bits, a, b, c, d, e, f, g, h, i, j, static_size) |
|
#define | INIT_CUSTOM_VLC_STATIC(vlc, bits, a, b, c, d, e, f, g, flags, static_size) |
|
#define | INIT_VLC_STATIC(vlc, bits, a, b, c, d, e, f, g, static_size) INIT_VLC_SPARSE_STATIC(vlc, bits, a, b, c, d, e, f, g, NULL, 0, 0, static_size) |
|
#define | INIT_LE_VLC_STATIC(vlc, bits, a, b, c, d, e, f, g, static_size) INIT_LE_VLC_SPARSE_STATIC(vlc, bits, a, b, c, d, e, f, g, NULL, 0, 0, static_size) |
|
#define | INIT_VLC_STATIC_FROM_LENGTHS(vlc, bits, nb_codes, lens, len_wrap, symbols, symbols_wrap, symbols_size, offset, flags, static_size) |
|
|
int | ff_init_vlc_sparse (VLC *vlc, int nb_bits, int nb_codes, const void *bits, int bits_wrap, int bits_size, const void *codes, int codes_wrap, int codes_size, const void *symbols, int symbols_wrap, int symbols_size, int flags) |
|
int | ff_init_vlc_from_lengths (VLC *vlc, int nb_bits, int nb_codes, const int8_t *lens, int lens_wrap, const void *symbols, int symbols_wrap, int symbols_size, int offset, int flags, void *logctx) |
| Build VLC decoding tables suitable for use with get_vlc2() More...
|
|
void | ff_free_vlc (VLC *vlc) |
|
int ff_init_vlc_from_lengths |
( |
VLC * |
vlc, |
|
|
int |
nb_bits, |
|
|
int |
nb_codes, |
|
|
const int8_t * |
lens, |
|
|
int |
lens_wrap, |
|
|
const void * |
symbols, |
|
|
int |
symbols_wrap, |
|
|
int |
symbols_size, |
|
|
int |
offset, |
|
|
int |
flags, |
|
|
void * |
logctx |
|
) |
| |
Build VLC decoding tables suitable for use with get_vlc2()
This function takes lengths and symbols and calculates the codes from them. For this the input lengths and symbols have to be sorted according to "left
nodes in the corresponding tree first".
- Parameters
-
[in,out] | vlc | The VLC to be initialized; table and table_allocated must have been set when initializing a static VLC, otherwise this will be treated as uninitialized. |
[in] | nb_bits | The number of bits to use for the VLC table; higher values take up more memory and cache, but allow to read codes with fewer reads. |
[in] | nb_codes | The number of provided length and (if supplied) symbol entries. |
[in] | lens | The lengths of the codes. Entries > 0 correspond to valid codes; entries == 0 will be skipped and entries with len < 0 indicate that the tree is incomplete and has an open end of length -len at this position. |
[in] | lens_wrap | Stride (in bytes) of the lengths. |
[in] | symbols | The symbols, i.e. what is returned from get_vlc2() when the corresponding code is encountered. May be NULL, then 0, 1, 2, 3, 4,... will be used. |
[in] | symbols_wrap | Stride (in bytes) of the symbols. |
[in] | symbols_size | Size of the symbols. 1 and 2 are supported. |
[in] | offset | An offset to apply to all the valid symbols. |
[in] | flags | A combination of the INIT_VLC_* flags; notice that INIT_VLC_INPUT_LE is pointless and ignored. |
Definition at line 328 of file vlc.c.
Referenced by atrac3_init_static_data(), atrac9_init_vlc(), build_canonical_huff(), build_huff(), build_vlc(), clv_init_static(), ff_mjpeg_build_vlc(), huff_build(), imc_init_static(), mobiclip_init_static(), mp_decode_frame(), mpc7_init_static(), mpeg4_init_static(), mpegaudiodec_common_init_static(), mss4_init_vlc(), on2avc_decode_init(), qdmc_init_static_data(), read_code_table(), rv10_build_vlc(), rv40_init_table(), rv40_init_tables(), smacker_decode_header_tree(), smka_decode_frame(), tm2_build_huff_table(), tscc2_init_vlc(), vp3_decode_init(), wma_decode_init(), and x8_init_vlc().