FFmpeg
|
#include "libavutil/float_dsp.h"
#include "libavutil/libm.h"
#include "libavutil/mem.h"
#include "internal.h"
#include "get_bits.h"
#include "kbdwin.h"
#include "fft.h"
Go to the source code of this file.
Data Structures | |
struct | DBEGroup |
struct | DBEChannel |
struct | DBEContext |
Macros | |
#define | FRAME_SAMPLES 1792 |
#define | MAX_PROG_CONF 23 |
#define | MAX_PROGRAMS 8 |
#define | MAX_CHANNELS 8 |
#define | MAX_SEGMENTS 2 |
#define | MAX_GROUPS 8 |
#define | MAX_EXPONENTS 304 |
#define | MAX_MANTISSAS 1024 |
#define | MAX_MSTR_EXP 2 |
#define | MAX_BIAS_EXP 50 |
Variables | |
static const uint8_t | nb_programs_tab [MAX_PROG_CONF+1] |
static const uint8_t | nb_channels_tab [MAX_PROG_CONF+1] |
static const int8_t | lfe_channel_tab [MAX_PROG_CONF+1] |
static const uint8_t | ch_reorder_4 [4] = { 0, 2, 1, 3 } |
static const uint8_t | ch_reorder_6 [6] = { 0, 2, 4, 1, 3, 5 } |
static const uint8_t | ch_reorder_8 [8] = { 0, 2, 6, 4, 1, 3, 7, 5 } |
static const uint8_t | ch_reorder_n [8] = { 0, 2, 4, 6, 1, 3, 5, 7 } |
static const uint16_t | sample_rate_tab [16] |
static const uint8_t | nb_groups_tab [4] = { 1, 8, 7, 1 } |
static const uint8_t | nb_mstr_exp_tab [4] = { 2, 2, 2, 1 } |
static const uint8_t | nb_mantissa_38 [38] |
static const uint8_t | nb_mantissa_44 [44] |
static const uint8_t | nb_mantissa_50 [50] |
static const uint8_t | imdct_bits_tab [3] = { 8, 9, 11 } |
static const DBEGroup | grp_tab_0 [1] |
static const DBEGroup | grp_tab_1 [8] |
static const DBEGroup | grp_tab_2 [7] |
static const DBEGroup | grp_tab_3 [1] |
static const DBEGroup | grp_tab_4 [1] |
static const DBEGroup | grp_tab_5 [8] |
static const DBEGroup | grp_tab_6 [7] |
static const DBEGroup | grp_tab_7 [1] |
static const DBEGroup *const | frm_ofs_tab [2][4] |
static const uint8_t | mantissa_size1 [16][4] |
static const uint8_t | mantissa_size2 [16][4] |
static const float | start_window [192] |
static const float | short_window2 [192] |
static const float | short_window3 [64] |
static const uint8_t | dc_code_tab [5] = { 0, 0, 0, 1, 1 } |
static const uint8_t | ht_code_tab [5] = { 0, 0, 1, 2, 2 } |
static const uint8_t | band_ofs_tab [3][4] |
static const uint8_t | band_low_tab [3] = { 9, 17, 24 } |
static const uint16_t | fast_gain_tab [8] |
static const uint16_t | slow_decay_tab [2][2] = { { 27, -1 }, { 32, 21 } } |
static const uint16_t | misc_decay_tab [3][2][2] |
static const uint16_t | fast_decay_tab [3][2][2][50] |
static const uint16_t | fast_gain_adj_tab [3][2][62] |
static const uint16_t | slow_gain_tab [3][2][50] |
static const uint16_t | hearing_thresh_tab [3][3][50] |
static const int16_t | lwc_gain_tab [11][7] |
static const int16_t | lwc_adj_tab [7] |
static const uint8_t | log_add_tab [212] |
static const uint8_t | bap_tab [64] |
static float | mantissa_tab1 [17][4] |
static float | mantissa_tab2 [17][4] |
static float | mantissa_tab3 [17][4] |
static float | exponent_tab [50] |
static float | gain_tab [1024] |
static float | window [3712] |
|
static |
Definition at line 115 of file dolby_e.h.
Referenced by parse_metadata().
|
static |
Definition at line 119 of file dolby_e.h.
Referenced by parse_metadata().
|
static |
Definition at line 123 of file dolby_e.h.
Referenced by parse_channel().
|
static |
Definition at line 128 of file dolby_e.h.
Referenced by filter_frame().
|
static |
Definition at line 129 of file dolby_e.h.
Referenced by filter_frame().
|
static |
Definition at line 130 of file dolby_e.h.
Referenced by filter_frame().
|
static |
Definition at line 131 of file dolby_e.h.
Referenced by filter_frame().
|
static |
Definition at line 133 of file dolby_e.h.
Referenced by dolby_e_decode_frame(), and parse_metadata().
|
static |
Definition at line 137 of file dolby_e.h.
Referenced by parse_channel().
|
static |
Definition at line 139 of file dolby_e.h.
Referenced by parse_channel().
|
static |
|
static |
|
static |
|
static |
Definition at line 160 of file dolby_e.h.
Referenced by dolby_e_init(), and imdct_calc().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
Definition at line 225 of file dolby_e.h.
Referenced by parse_mantissas().
|
static |
Definition at line 232 of file dolby_e.h.
Referenced by parse_mantissas().
|
static |
Definition at line 239 of file dolby_e.h.
Referenced by init_tables().
|
static |
Definition at line 292 of file dolby_e.h.
Referenced by init_tables().
|
static |
Definition at line 345 of file dolby_e.h.
Referenced by init_tables().
|
static |
Definition at line 364 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 366 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 368 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 372 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 374 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 378 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 380 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 386 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 458 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 504 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 542 of file dolby_e.h.
Referenced by bit_allocate().
|
static |
Definition at line 597 of file dolby_e.h.
Referenced by calc_lowcomp().
|
static |
Definition at line 611 of file dolby_e.h.
Referenced by calc_lowcomp().
|
static |
Definition at line 615 of file dolby_e.h.
Referenced by log_add().
|
static |
Definition at line 632 of file dolby_e.h.
Referenced by ac3_bit_alloc_calc_bap_c(), bit_allocate(), and decode_audio_block().
|
static |
Definition at line 639 of file dolby_e.h.
Referenced by init_tables(), and parse_mantissas().
|
static |
Definition at line 640 of file dolby_e.h.
Referenced by init_tables(), and parse_mantissas().
|
static |
Definition at line 641 of file dolby_e.h.
Referenced by init_tables(), and parse_mantissas().
|
static |
Definition at line 642 of file dolby_e.h.
Referenced by init_tables(), and parse_mantissas().
|
static |
Definition at line 643 of file dolby_e.h.
Referenced by apply_gain(), and init_tables().