Update the maximum fine bits everywhere.
cf874373
raised the limit from 7 to 8 for N>1 bands in
interp_bits2pulses(), but did not raise the corresponding limits
for N=1 bands, or for [un]quant_energy_finalise().
This commit raises all of the limits to the same value, 8.
This commit is contained in:
parent
949f18010f
commit
fe40ddd999
2 changed files with 2 additions and 2 deletions
|
@ -453,7 +453,7 @@ void unquant_energy_finalise(const CELTMode *m, int start, int end, celt_ener *e
|
|||
{
|
||||
for (i=start;i<end && bits_left>=C ;i++)
|
||||
{
|
||||
if (fine_quant[i] >= 7 || fine_priority[i]!=prio)
|
||||
if (fine_quant[i] >= 8 || fine_priority[i]!=prio)
|
||||
continue;
|
||||
c=0;
|
||||
do {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue