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-01-31 06:26:29 +0300
committerJean-Marc Valin <Jean-Marc.Valin@csiro.au>2008-01-31 06:26:29 +0300
commitabe043f0a1a8dd8ce4ae273ea0043e2c057f1aae (patch)
tree4562e6356016c0b49783cb077dbe48bca3cb1969 /libcelt/cwrs.h
parent3d3bb6853628791a881a6f53e3def2d04d5bb92a (diff)
Moving everything to the same type abstraction (sort of).
Diffstat (limited to 'libcelt/cwrs.h')
-rw-r--r--libcelt/cwrs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcelt/cwrs.h b/libcelt/cwrs.h
index 7181256..dde60d1 100644
--- a/libcelt/cwrs.h
+++ b/libcelt/cwrs.h
@@ -34,11 +34,11 @@
#include "arch.h"
-unsigned ncwrs(int _n,int _m);
+celt_uint32_t ncwrs(int _n,int _m);
-void cwrsi(int _n,int _m,unsigned _i,int *_x,int *_s);
+void cwrsi(int _n,int _m,celt_uint32_t _i,int *_x,int *_s);
-unsigned 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);
void comb2pulse(int _n,int _m,int *_y,const int *_x,const int *_s);