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@usherbrooke.ca>2008-03-26 15:33:06 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-03-26 15:33:06 +0300
commit9ce7fbc4217ac13ef3c5d2543d3269c95d366323 (patch)
treeb5494154cf67937bc5ee8429c14eabf9e6c417cd /libcelt/cwrs.c
parentfed97d58b58096ccf482d8e8df875eb04439ea70 (diff)
making {next|prev}_cwrs* inline
Diffstat (limited to 'libcelt/cwrs.c')
-rw-r--r--libcelt/cwrs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libcelt/cwrs.c b/libcelt/cwrs.c
index 67aa47c..92c0eed 100644
--- a/libcelt/cwrs.c
+++ b/libcelt/cwrs.c
@@ -43,7 +43,7 @@
/* Knowing ncwrs() for a fixed number of pulses m and for all vector sizes n,
compute ncwrs() for m+1, for all n. Could also be used when m and n are
swapped just by changing nc */
-static void next_ncwrs32(celt_uint32_t *nc, int len, int nc0)
+static inline void next_ncwrs32(celt_uint32_t *nc, int len, int nc0)
{
int i;
celt_uint32_t mem;
@@ -61,7 +61,7 @@ static void next_ncwrs32(celt_uint32_t *nc, int len, int nc0)
/* Knowing ncwrs() for a fixed number of pulses m and for all vector sizes n,
compute ncwrs() for m-1, for all n. Could also be used when m and n are
swapped just by changing nc */
-static void prev_ncwrs32(celt_uint32_t *nc, int len, int nc0)
+static inline void prev_ncwrs32(celt_uint32_t *nc, int len, int nc0)
{
int i;
celt_uint32_t mem;
@@ -76,7 +76,7 @@ static void prev_ncwrs32(celt_uint32_t *nc, int len, int nc0)
}
}
-static void next_ncwrs64(celt_uint64_t *nc, int len, int nc0)
+static inline void next_ncwrs64(celt_uint64_t *nc, int len, int nc0)
{
int i;
celt_uint64_t mem;
@@ -91,7 +91,7 @@ static void next_ncwrs64(celt_uint64_t *nc, int len, int nc0)
}
}
-static void prev_ncwrs64(celt_uint64_t *nc, int len, int nc0)
+static inline void prev_ncwrs64(celt_uint64_t *nc, int len, int nc0)
{
int i;
celt_uint64_t mem;