comparison ac3.h @ 6004:713d66164428 libavcodec

cosmetics: vertical align after last commit
author jbr
date Sun, 09 Dec 2007 03:25:42 +0000
parents 608c8e9ac412
children 7d9dddd54817
comparison
equal deleted inserted replaced
6003:608c8e9ac412 6004:713d66164428
128 * power in each critical band. The excitation is compared with a predefined 128 * power in each critical band. The excitation is compared with a predefined
129 * hearing threshold table to produce the masking curve. If delta bit 129 * hearing threshold table to produce the masking curve. If delta bit
130 * allocation information is provided, it is used for adjusting the masking 130 * allocation information is provided, it is used for adjusting the masking
131 * curve, usually to give a closer match to a better psychoacoustic model. 131 * curve, usually to give a closer match to a better psychoacoustic model.
132 * 132 *
133 * @param[in] s adjustable bit allocation parameters 133 * @param[in] s adjustable bit allocation parameters
134 * @param[in] band_psd signal power for each critical band 134 * @param[in] band_psd signal power for each critical band
135 * @param[in] start starting bin location 135 * @param[in] start starting bin location
136 * @param[in] end ending bin location 136 * @param[in] end ending bin location
137 * @param[in] fast_gain fast gain (estimated signal-to-mask ratio) 137 * @param[in] fast_gain fast gain (estimated signal-to-mask ratio)
138 * @param[in] is_lfe whether or not the channel being processed is the LFE 138 * @param[in] is_lfe whether or not the channel being processed is the LFE
139 * @param[in] dba_mode delta bit allocation mode (none, reuse, or new) 139 * @param[in] dba_mode delta bit allocation mode (none, reuse, or new)
140 * @param[in] dba_nsegs number of delta segments 140 * @param[in] dba_nsegs number of delta segments
141 * @param[in] dba_offsets location offsets for each segment 141 * @param[in] dba_offsets location offsets for each segment
142 * @param[in] dba_lengths length of each segment 142 * @param[in] dba_lengths length of each segment
143 * @param[in] dba_values delta bit allocation for each segment 143 * @param[in] dba_values delta bit allocation for each segment
144 * @param[out] mask calculated masking curve 144 * @param[out] mask calculated masking curve
145 */ 145 */
146 void ff_ac3_bit_alloc_calc_mask(AC3BitAllocParameters *s, int16_t *band_psd, 146 void ff_ac3_bit_alloc_calc_mask(AC3BitAllocParameters *s, int16_t *band_psd,
147 int start, int end, int fast_gain, int is_lfe, 147 int start, int end, int fast_gain, int is_lfe,
148 int dba_mode, int dba_nsegs, uint8_t *dba_offsets, 148 int dba_mode, int dba_nsegs, uint8_t *dba_offsets,
149 uint8_t *dba_lengths, uint8_t *dba_values, 149 uint8_t *dba_lengths, uint8_t *dba_values,