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>2009-10-17 22:35:13 +0400
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2009-10-17 22:35:13 +0400
commit30f7f813ea48388305f91e4cc961e866d0d0f49a (patch)
tree9fbd73610f921e2da69d2ce80ef166cf9f563a63 /libcelt/kiss_fft.c
parentd35d67754304c8412848c6596ecb5db8f99ae1e0 (diff)
Changed all the celt*int*_t types to remove the _t suffix, which is reserved
by POSIX. The other _t types that are not part of the API are still there for now. Also, got rid of all that was left of the 64-bit types.
Diffstat (limited to 'libcelt/kiss_fft.c')
-rw-r--r--libcelt/kiss_fft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcelt/kiss_fft.c b/libcelt/kiss_fft.c
index 2d5e9a6..a065e67 100644
--- a/libcelt/kiss_fft.c
+++ b/libcelt/kiss_fft.c
@@ -597,7 +597,7 @@ void kf_factor(int n,int * facbuf)
case 2: p = 3; break;
default: p += 2; break;
}
- if (p>32000 || (celt_int32_t)p*(celt_int32_t)p > n)
+ if (p>32000 || (celt_int32)p*(celt_int32)p > n)
p = n; /* no more factors, skip to end */
}
n /= p;