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-12 15:38:01 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-01-12 15:38:01 +0300
commitec71aee7727bfd58641a1804213f02b61bfe84b1 (patch)
tree3c220c25033ebd241a2de5bc1a231d472d8cba6e /libcelt/testcelt.c
parent3eff11d8d478772be7f888751c976aab8c2499fb (diff)
A bit of tuning and early work on bit allocation
Diffstat (limited to 'libcelt/testcelt.c')
-rw-r--r--libcelt/testcelt.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libcelt/testcelt.c b/libcelt/testcelt.c
index 943c7e5..8d97c18 100644
--- a/libcelt/testcelt.c
+++ b/libcelt/testcelt.c
@@ -52,8 +52,9 @@ int main(int argc, char *argv[])
outFile = argv[2];
fout = fopen(outFile, "wb+");
- enc = celt_encoder_new(celt_mode1);
- dec = celt_decoder_new(celt_mode1);
+ /* Use mode4 for stereo and don't forget to change the value of CHANNEL above */
+ enc = celt_encoder_new(celt_mode0);
+ dec = celt_decoder_new(celt_mode0);
while (!feof(fin))
{