Mercurial > libavcodec.hg
changeset 7017:60fd9ae9540e libavcodec
pass bap table to ff_ac3_bit_alloc_calc_bap()
author | jbr |
---|---|
date | Sat, 07 Jun 2008 22:29:54 +0000 |
parents | b514562e0aef |
children | 885cad616170 |
files | ac3.c ac3.h ac3dec.c ac3enc.c |
diffstat | 4 files changed, 11 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/ac3.c Sat Jun 07 22:29:45 2008 +0000 +++ b/ac3.c Sat Jun 07 22:29:54 2008 +0000 @@ -173,7 +173,8 @@ } void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end, - int snr_offset, int floor, uint8_t *bap) + int snr_offset, int floor, + const uint8_t *bap_tab, uint8_t *bap) { int i, j, k, end1, v, address; @@ -190,7 +191,7 @@ end1 = FFMIN(band_start_tab[j] + ff_ac3_critical_band_size_tab[j], end); for (k = i; k < end1; k++) { address = av_clip((psd[i] - v) >> 5, 0, 63); - bap[i] = ff_ac3_bap_tab[address]; + bap[i] = bap_tab[address]; i++; } } while (end > band_start_tab[j++]); @@ -215,7 +216,8 @@ dba_mode, dba_nsegs, dba_offsets, dba_lengths, dba_values, mask); - ff_ac3_bit_alloc_calc_bap(mask, psd, start, end, snr_offset, s->floor, bap); + ff_ac3_bit_alloc_calc_bap(mask, psd, start, end, snr_offset, s->floor, + ff_ac3_bap_tab, bap); } /**
--- a/ac3.h Sat Jun 07 22:29:45 2008 +0000 +++ b/ac3.h Sat Jun 07 22:29:54 2008 +0000 @@ -168,10 +168,12 @@ * @param[in] end ending bin location * @param[in] snr_offset SNR adjustment * @param[in] floor noise floor + * @param[in] bap_tab look-up table for bit allocation pointers * @param[out] bap bit allocation pointers */ void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end, - int snr_offset, int floor, uint8_t *bap); + int snr_offset, int floor, + const uint8_t *bap_tab, uint8_t *bap); void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap, int8_t *exp, int start, int end,
--- a/ac3dec.c Sat Jun 07 22:29:45 2008 +0000 +++ b/ac3dec.c Sat Jun 07 22:29:54 2008 +0000 @@ -1047,7 +1047,7 @@ s->start_freq[ch], s->end_freq[ch], s->snr_offset[ch], s->bit_alloc_params.floor, - s->bap[ch]); + ff_ac3_bap_tab, s->bap[ch]); } }
--- a/ac3enc.c Sat Jun 07 22:29:45 2008 +0000 +++ b/ac3enc.c Sat Jun 07 22:29:54 2008 +0000 @@ -463,7 +463,8 @@ for(ch=0;ch<s->nb_all_channels;ch++) { ff_ac3_bit_alloc_calc_bap(mask[i][ch], psd[i][ch], 0, s->nb_coefs[ch], snr_offset, - s->bit_alloc.floor, bap[i][ch]); + s->bit_alloc.floor, ff_ac3_bap_tab, + bap[i][ch]); frame_bits += compute_mantissa_size(s, bap[i][ch], s->nb_coefs[ch]); }