Commit da04be10 authored by Justin Ruggles's avatar Justin Ruggles

store exp_strategy for all blocks in decode context

Originally committed as revision 13704 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 54624396
...@@ -843,18 +843,18 @@ static int ac3_parse_audio_block(AC3DecodeContext *s, int blk) ...@@ -843,18 +843,18 @@ static int ac3_parse_audio_block(AC3DecodeContext *s, int blk)
} }
/* exponent strategies for each channel */ /* exponent strategies for each channel */
s->exp_strategy[CPL_CH] = EXP_REUSE; s->exp_strategy[blk][CPL_CH] = EXP_REUSE;
s->exp_strategy[s->lfe_ch] = EXP_REUSE; s->exp_strategy[blk][s->lfe_ch] = EXP_REUSE;
for (ch = !cpl_in_use; ch <= s->channels; ch++) { for (ch = !cpl_in_use; ch <= s->channels; ch++) {
s->exp_strategy[ch] = get_bits(gbc, 2 - (ch == s->lfe_ch)); s->exp_strategy[blk][ch] = get_bits(gbc, 2 - (ch == s->lfe_ch));
if(s->exp_strategy[ch] != EXP_REUSE) if(s->exp_strategy[blk][ch] != EXP_REUSE)
bit_alloc_stages[ch] = 3; bit_alloc_stages[ch] = 3;
} }
/* channel bandwidth */ /* channel bandwidth */
for (ch = 1; ch <= fbw_channels; ch++) { for (ch = 1; ch <= fbw_channels; ch++) {
s->start_freq[ch] = 0; s->start_freq[ch] = 0;
if (s->exp_strategy[ch] != EXP_REUSE) { if (s->exp_strategy[blk][ch] != EXP_REUSE) {
int group_size; int group_size;
int prev = s->end_freq[ch]; int prev = s->end_freq[ch];
if (s->channel_in_cpl[ch]) if (s->channel_in_cpl[ch])
...@@ -867,22 +867,22 @@ static int ac3_parse_audio_block(AC3DecodeContext *s, int blk) ...@@ -867,22 +867,22 @@ static int ac3_parse_audio_block(AC3DecodeContext *s, int blk)
} }
s->end_freq[ch] = bandwidth_code * 3 + 73; s->end_freq[ch] = bandwidth_code * 3 + 73;
} }
group_size = 3 << (s->exp_strategy[ch] - 1); group_size = 3 << (s->exp_strategy[blk][ch] - 1);
s->num_exp_groups[ch] = (s->end_freq[ch]+group_size-4) / group_size; s->num_exp_groups[ch] = (s->end_freq[ch]+group_size-4) / group_size;
if(blk > 0 && s->end_freq[ch] != prev) if(blk > 0 && s->end_freq[ch] != prev)
memset(bit_alloc_stages, 3, AC3_MAX_CHANNELS); memset(bit_alloc_stages, 3, AC3_MAX_CHANNELS);
} }
} }
if (cpl_in_use && s->exp_strategy[CPL_CH] != EXP_REUSE) { if (cpl_in_use && s->exp_strategy[blk][CPL_CH] != EXP_REUSE) {
s->num_exp_groups[CPL_CH] = (s->end_freq[CPL_CH] - s->start_freq[CPL_CH]) / s->num_exp_groups[CPL_CH] = (s->end_freq[CPL_CH] - s->start_freq[CPL_CH]) /
(3 << (s->exp_strategy[CPL_CH] - 1)); (3 << (s->exp_strategy[blk][CPL_CH] - 1));
} }
/* decode exponents for each channel */ /* decode exponents for each channel */
for (ch = !cpl_in_use; ch <= s->channels; ch++) { for (ch = !cpl_in_use; ch <= s->channels; ch++) {
if (s->exp_strategy[ch] != EXP_REUSE) { if (s->exp_strategy[blk][ch] != EXP_REUSE) {
s->dexps[ch][0] = get_bits(gbc, 4) << !ch; s->dexps[ch][0] = get_bits(gbc, 4) << !ch;
decode_exponents(gbc, s->exp_strategy[ch], decode_exponents(gbc, s->exp_strategy[blk][ch],
s->num_exp_groups[ch], s->dexps[ch][0], s->num_exp_groups[ch], s->dexps[ch][0],
&s->dexps[ch][s->start_freq[ch]+!!ch]); &s->dexps[ch][s->start_freq[ch]+!!ch]);
if(ch != CPL_CH && ch != s->lfe_ch) if(ch != CPL_CH && ch != s->lfe_ch)
......
...@@ -102,7 +102,7 @@ typedef struct { ...@@ -102,7 +102,7 @@ typedef struct {
///@defgroup exponents exponents ///@defgroup exponents exponents
int num_exp_groups[AC3_MAX_CHANNELS]; ///< Number of exponent groups (nexpgrp) int num_exp_groups[AC3_MAX_CHANNELS]; ///< Number of exponent groups (nexpgrp)
int8_t dexps[AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///< decoded exponents int8_t dexps[AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///< decoded exponents
int exp_strategy[AC3_MAX_CHANNELS]; ///< exponent strategies (expstr) int exp_strategy[MAX_BLOCKS][AC3_MAX_CHANNELS]; ///< exponent strategies (expstr)
///@} ///@}
///@defgroup bitalloc bit allocation ///@defgroup bitalloc bit allocation
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment