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

Fix off-by-one error in ec_laplace_encode.

di_max was counting the _number_ of code-points remaining, not the
 largest one that could be used.
parent 495114b7
No related branches found
No related tags found
No related merge requests found
......@@ -75,10 +75,10 @@ void ec_laplace_encode(ec_enc *enc, int *value, int fs, int decay)
if (fs <= 0)
{
int di;
int di_max;
di_max = (32768-fl+LAPLACE_MINP-1)>>LAPLACE_LOG_MINP;
di_max = (di_max-s)>>1;
di = IMIN(val - i, di_max);
int ndi_max;
ndi_max = (32768-fl+LAPLACE_MINP-1)>>LAPLACE_LOG_MINP;
ndi_max = (ndi_max-s)>>1;
di = IMIN(val - i, ndi_max - 1);
fl += (2*di+1+s)*LAPLACE_MINP;
fs = IMIN(LAPLACE_MINP, 32768-fl);
*value = i+di+s^s;
......
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