Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@octasic.com>2011-02-14 21:50:20 +0300
committerJean-Marc Valin <jean-marc.valin@octasic.com>2011-02-14 21:51:06 +0300
commit1e9fb6291c03ada2508d87740c91d833073b3a34 (patch)
tree2966e6239fabc3f4756f4c20f6607d61e20dccbc
parent64805fd24682223dd4c5778147aab81e03a8b529 (diff)
Fixes the inversion of SPREAD_LIGHT and SPREAD_AGGRESSIVE
Change the bit-stream (without causing desync)
-rw-r--r--libcelt/vq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcelt/vq.c b/libcelt/vq.c
index 2a65628..22aa03b 100644
--- a/libcelt/vq.c
+++ b/libcelt/vq.c
@@ -68,7 +68,7 @@ static void exp_rotation1(celt_norm *X, int len, int stride, celt_word16 c, celt
static void exp_rotation(celt_norm *X, int len, int dir, int stride, int K, int spread)
{
- static const int SPREAD_FACTOR[3]={5,10,15};
+ static const int SPREAD_FACTOR[3]={15,10,5};
int i;
celt_word16 c, s;
celt_word16 gain, theta;