FFmpeg
|
Common code between the AC-3 encoder and decoder. More...
Go to the source code of this file.
Functions | |
static int | calc_lowcomp1 (int a, int b0, int b1, int c) |
static int | calc_lowcomp (int a, int b0, int b1, int bin) |
void | ff_ac3_bit_alloc_calc_psd (int8_t *exp, int start, int end, int16_t *psd, int16_t *band_psd) |
Calculate the log power-spectral density of the input signal. More... | |
int | ff_ac3_bit_alloc_calc_mask (AC3BitAllocParameters *s, int16_t *band_psd, int start, int end, int fast_gain, int is_lfe, int dba_mode, int dba_nsegs, uint8_t *dba_offsets, uint8_t *dba_lengths, uint8_t *dba_values, int16_t *mask) |
Calculate the masking curve. More... | |
av_cold void | ff_ac3_common_init (void) |
Initialize some tables. More... | |
Variables | |
const uint8_t | ff_ac3_band_start_tab [AC3_CRITICAL_BANDS+1] |
Starting frequency coefficient bin for each critical band. More... | |
uint8_t | ff_ac3_bin_to_band_tab [253] |
Detailed Description
Common code between the AC-3 encoder and decoder.
Definition in file ac3.c.
Function Documentation
|
inlinestatic |
Definition at line 86 of file ac3.c.
Referenced by ff_ac3_bit_alloc_calc_mask().
|
inlinestatic |
Definition at line 76 of file ac3.c.
Referenced by calc_lowcomp(), and ff_ac3_bit_alloc_calc_mask().
int ff_ac3_bit_alloc_calc_mask | ( | AC3BitAllocParameters * | s, |
int16_t * | band_psd, | ||
int | start, | ||
int | end, | ||
int | fast_gain, | ||
int | is_lfe, | ||
int | dba_mode, | ||
int | dba_nsegs, | ||
uint8_t * | dba_offsets, | ||
uint8_t * | dba_lengths, | ||
uint8_t * | dba_values, | ||
int16_t * | mask | ||
) |
Calculate the masking curve.
First, the excitation is calculated using parameters in s and the signal power in each critical band. The excitation is compared with a predefined hearing threshold table to produce the masking curve. If delta bit allocation information is provided, it is used for adjusting the masking curve, usually to give a closer match to a better psychoacoustic model.
- Parameters
-
[in] s adjustable bit allocation parameters [in] band_psd signal power for each critical band [in] start starting bin location [in] end ending bin location [in] fast_gain fast gain (estimated signal-to-mask ratio) [in] is_lfe whether or not the channel being processed is the LFE [in] dba_mode delta bit allocation mode (none, reuse, or new) [in] dba_nsegs number of delta segments [in] dba_offsets location offsets for each segment [in] dba_lengths length of each segment [in] dba_values delta bit allocation for each segment [out] mask calculated masking curve
- Returns
- returns 0 for success, non-zero for error
Definition at line 123 of file ac3.c.
Referenced by bit_alloc_masking(), and decode_audio_block().
void ff_ac3_bit_alloc_calc_psd | ( | int8_t * | exp, |
int | start, | ||
int | end, | ||
int16_t * | psd, | ||
int16_t * | band_psd | ||
) |
Calculate the log power-spectral density of the input signal.
This gives a rough estimate of signal power in the frequency domain by using the spectral envelope (exponents). The psd is also separately grouped into critical bands for use in the calculating the masking curve. 128 units in psd = -6 dB. The dbknee parameter in AC3BitAllocParameters determines the reference level.
- Parameters
-
[in] exp frequency coefficient exponents [in] start starting bin location [in] end ending bin location [out] psd signal power for each frequency bin [out] band_psd signal power for each critical band
Definition at line 97 of file ac3.c.
Referenced by bit_alloc_masking(), and decode_audio_block().
Initialize some tables.
note: This function must remain thread safe because it is called by the AVParser init code.
Definition at line 220 of file ac3.c.
Referenced by ac3_decode_init(), and ff_ac3_encode_init().
Variable Documentation
const uint8_t ff_ac3_band_start_tab[AC3_CRITICAL_BANDS+1] |
Starting frequency coefficient bin for each critical band.
Definition at line 34 of file ac3.c.
Referenced by ac3_bit_alloc_calc_bap_c(), ff_ac3_bit_alloc_calc_psd(), and ff_ac3_common_init().
uint8_t ff_ac3_bin_to_band_tab[253] |
Definition at line 73 of file ac3.c.
Referenced by ac3_bit_alloc_calc_bap_c(), ff_ac3_bit_alloc_calc_mask(), ff_ac3_bit_alloc_calc_psd(), and ff_ac3_common_init().
Generated on Mon Nov 18 2024 06:52:04 for FFmpeg by 1.8.11