Skip to content
Snippets Groups Projects
Commit ce02e1b4 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Setting ft=32768 instead of 32767 so that implementations can use shifts and

thus save a few divisions.
parent d1d74056
No related branches found
No related tags found
No related merge requests found
......@@ -37,13 +37,14 @@
int ec_laplace_get_start_freq(int decay)
{
return (((ec_uint32)32767)*(16384-decay))/(16384+decay);
return (((ec_uint32)32768)*(16384-decay))/(16384+decay);
}
void ec_laplace_encode_start(ec_enc *enc, int *value, int decay, int fs)
{
int i;
int fl, ft;
int fl;
unsigned int ft;
int s = 0;
int val = *value;
if (val < 0)
......@@ -51,7 +52,7 @@ void ec_laplace_encode_start(ec_enc *enc, int *value, int decay, int fs)
s = 1;
val = -val;
}
ft = 32767;
ft = 32768;
fl = -fs;
for (i=0;i<val;i++)
{
......@@ -90,9 +91,10 @@ void ec_laplace_encode(ec_enc *enc, int *value, int decay)
int ec_laplace_decode_start(ec_dec *dec, int decay, int fs)
{
int val=0;
int fl, fh, ft, fm;
int fl, fh, fm;
unsigned int ft;
fl = 0;
ft = 32767;
ft = 32768;
fh = fs;
fm = ec_decode(dec, ft);
/*DEBUG*/
......
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