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@usherbrooke.ca>2008-01-09 02:44:18 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-01-09 02:44:18 +0300
commitfdca84b42f627698219139f8d818e5f26fa55ba3 (patch)
treeddc6c946208698a612725a94df95f0205173990c /libcelt/modes.c
parent95c59ea6476d369d544a30feebca5dff3344af56 (diff)
Some stereo work (breaks the decoder for now)
Diffstat (limited to 'libcelt/modes.c')
-rw-r--r--libcelt/modes.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libcelt/modes.c b/libcelt/modes.c
index 4e625df..8d8ee69 100644
--- a/libcelt/modes.c
+++ b/libcelt/modes.c
@@ -163,16 +163,16 @@ const CELTMode mode3 = {
/* Stereo mode around 120 kbps */
const CELTMode mode4 = {
128, /**< overlap */
- 128, /**< mdctSize */
- 2, /**< nbMdctBlocks */
+ 256, /**< mdctSize */
+ 1, /**< nbMdctBlocks */
2, /**< channels */
- NBANDS128, /**< nbEBands */
- PBANDS128, /**< nbPBands */
- PITCH_END128,/**< pitchEnd */
+ NBANDS256, /**< nbEBands */
+ PBANDS256, /**< nbPBands */
+ PITCH_END256,/**< pitchEnd */
- qbank1, /**< eBands */
- pbank1, /**< pBands*/
+ qbank3, /**< eBands */
+ pbank3, /**< pBands*/
qpulses2s, /**< nbPulses */
0.7, /**< ePredCoef */