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/modes.c
parentecb36a3323b0d222224546f818e7c701f67c2de7 (diff)
Converting the code to use the modes instead of global arrays.
Diffstat (limited to 'libcelt/modes.c')
-rw-r--r--libcelt/modes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libcelt/modes.c b/libcelt/modes.c
index 942b919..f915a2b 100644
--- a/libcelt/modes.c
+++ b/libcelt/modes.c
@@ -55,3 +55,5 @@ const CELTMode mode1 = {
pbank1, /**< pBands*/
qpulses1 /**< pulses */
};
+
+const CELTMode const *celt_mode1 = &mode1;