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>2008-02-14 07:02:04 +0300
committerJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-02-14 07:02:04 +0300
commit0d28aa99c03f97f8de82b9d57b6abf90b2b8c1fd (patch)
treeb3a29b80eda3cec3cf376563306836652c9617ab /libcelt/cwrs.h
parentbf17da60f0b1554e1e0b82ff7b6efe59a3622090 (diff)
Now no divisions required in the cwrs code
Diffstat (limited to 'libcelt/cwrs.h')
-rw-r--r--libcelt/cwrs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcelt/cwrs.h b/libcelt/cwrs.h
index f756d02..7d07c6b 100644
--- a/libcelt/cwrs.h
+++ b/libcelt/cwrs.h
@@ -40,7 +40,7 @@ celt_uint32_t ncwrs(int _n,int _m);
void cwrsi(int _n,int _m,celt_uint32_t _i,int *_x,int *_s);
-celt_uint32_t icwrs(int _n,int _m,const int *_x,const int *_s);
+celt_uint32_t icwrs(int _n,int _m,const int *_x,const int *_s, celt_uint32_t *bound);
void comb2pulse(int _n,int _m,int *_y,const int *_x,const int *_s);