Remove some unneeded variables.
Originally committed as revision 20045 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
403b1543b5
commit
8a547c25a0
@ -268,17 +268,16 @@ void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
|
|||||||
av_cold void ac3_common_init(void)
|
av_cold void ac3_common_init(void)
|
||||||
{
|
{
|
||||||
#if !CONFIG_HARDCODED_TABLES
|
#if !CONFIG_HARDCODED_TABLES
|
||||||
int i, j, k, l, v;
|
int i, k, l;
|
||||||
/* compute bndtab and masktab from bandsz */
|
/* compute bndtab and masktab from bandsz */
|
||||||
k = 0;
|
k = 0;
|
||||||
l = 0;
|
l = 0;
|
||||||
for (i = 0; i < 50; i++) {
|
for (i = 0; i < 50; i++) {
|
||||||
band_start_tab[i] = l;
|
band_start_tab[i] = k;
|
||||||
v = ff_ac3_critical_band_size_tab[i];
|
l = k + ff_ac3_critical_band_size_tab[i];
|
||||||
for (j = 0; j < v; j++)
|
while (k < l)
|
||||||
bin_to_band_tab[k++] = i;
|
bin_to_band_tab[k++] = i;
|
||||||
l += v;
|
|
||||||
}
|
}
|
||||||
band_start_tab[50] = l;
|
band_start_tab[50] = k;
|
||||||
#endif /* !CONFIG_HARDCODED_TABLES */
|
#endif /* !CONFIG_HARDCODED_TABLES */
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user