Skip to content
Snippets Groups Projects
Commit 949f1801 authored by Timothy B. Terriberry's avatar Timothy B. Terriberry Committed by Jean-Marc Valin
Browse files

Move fine_priority calculation after the bust cap.

This way if a band doesn't get the fine bits we want because it
 wasn't allocated enough bits to start with, then we will still
 give it priority for any spare bits after PVQ.
parent fa7215fd
No related branches found
No related tags found
No related merge requests found
......@@ -320,10 +320,6 @@ static inline int interp_bits2pulses(const CELTMode *m, int start, int end, int
/* Divide with rounding */
ebits[j] = IMAX(0, (bits[j] + offset + (den<<(BITRES-1))) / (den<<BITRES));
/* If we rounded down, make it a candidate for final
fine energy pass */
fine_priority[j] = ebits[j]*(den<<BITRES) >= bits[j]+offset;
/* Make sure not to bust */
if (C*ebits[j] > (bits[j]>>BITRES))
ebits[j] = bits[j] >> stereo >> BITRES;
......@@ -332,6 +328,10 @@ static inline int interp_bits2pulses(const CELTMode *m, int start, int end, int
if (ebits[j]>8)
ebits[j]=8;
/* If we rounded down or capped this band, make it a candidate for the
final fine energy pass */
fine_priority[j] = ebits[j]*(den<<BITRES) >= bits[j]+offset;
} else {
/* For N=1, all bits go to fine energy except for a single sign bit */
ebits[j] = IMIN(IMAX(0,(bits[j] >> stereo >> BITRES)-1),7);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment