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@csiro.au>2007-12-05 09:48:24 +0300
committerJean-Marc Valin <Jean-Marc.Valin@csiro.au>2007-12-05 09:48:24 +0300
commit73e51b3e94d4e9708fa1ede4b45dc56968a6f3ac (patch)
tree5413af3eae7f3132fd958ba40d33edcbd642abd5 /libcelt/testcelt.c
parentecb36a3323b0d222224546f818e7c701f67c2de7 (diff)
Converting the code to use the modes instead of global arrays.
Diffstat (limited to 'libcelt/testcelt.c')
-rw-r--r--libcelt/testcelt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcelt/testcelt.c b/libcelt/testcelt.c
index 010db91..23403dc 100644
--- a/libcelt/testcelt.c
+++ b/libcelt/testcelt.c
@@ -48,7 +48,7 @@ int main(int argc, char *argv[])
outFile = argv[2];
fout = fopen(outFile, "wb+");
- st = celt_encoder_new(FRAME_SIZE/NBLOCKS, NBLOCKS);
+ st = celt_encoder_new(celt_mode1);
while (!feof(fin))
{