Commit e7bfa12b authored by Renaud Dartus's avatar Renaud Dartus

* Fixing of PowerPC bug ( I hope :) )
parent a4dc58c8
...@@ -283,7 +283,7 @@ void bit_allocate (ac3dec_t * p_ac3dec) ...@@ -283,7 +283,7 @@ void bit_allocate (ac3dec_t * p_ac3dec)
static void ba_compute_psd (bit_allocate_t * p_bit, s16 start, s16 end, s16 exps[]) static void ba_compute_psd (bit_allocate_t * p_bit, s16 start, s16 end, s16 exps[])
{ {
int bin,i,j,k; int bin,j,k;
s16 lastbin = 0; s16 lastbin = 0;
/* Map the exponents into dBs */ /* Map the exponents into dBs */
...@@ -300,9 +300,8 @@ static void ba_compute_psd (bit_allocate_t * p_bit, s16 start, s16 end, s16 exps ...@@ -300,9 +300,8 @@ static void ba_compute_psd (bit_allocate_t * p_bit, s16 start, s16 end, s16 exps
p_bit->bndpsd[k] = p_bit->psd[j]; p_bit->bndpsd[k] = p_bit->psd[j];
j++; j++;
for (i = j; i < lastbin; i++) { for (; j < lastbin; j++) {
p_bit->bndpsd[k] = logadd(p_bit->bndpsd[k],p_bit->psd[j]); p_bit->bndpsd[k] = logadd(p_bit->bndpsd[k],p_bit->psd[j]);
j++;
} }
k++; k++;
......
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