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.h
parentecb36a3323b0d222224546f818e7c701f67c2de7 (diff)
Converting the code to use the modes instead of global arrays.
Diffstat (limited to 'libcelt/modes.h')
-rw-r--r--libcelt/modes.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libcelt/modes.h b/libcelt/modes.h
index 44cd563..76de37f 100644
--- a/libcelt/modes.h
+++ b/libcelt/modes.h
@@ -32,7 +32,9 @@
#ifndef MODES_H
#define MODES_H
-typedef struct {
+#include "celt.h"
+
+struct CELTMode_ {
int frameSize;
int mdctSize;
int nbMdctBlocks;
@@ -44,6 +46,6 @@ typedef struct {
const int *eBands;
const int *pBands;
const int *pulses;
-} CELTMode;
+};
#endif