search for: celt_types

Displaying 2 results from an estimated 2 matches for "celt_types".

Did you mean: call_types
2010 Sep 13
1
Small mistake in celt_types.h for MacOS X
Hi JM, When porting my project to the Mac, I found that the definition for "celt_int16" and "celt_uint16" are wrong for the MacOS X Framework in celt_types.h, and need to be changed to "int16_t" and "u_int16_t" respectively. Just thought you ought to know. John Ridges
2011 Mar 03
0
[PATCH] Eliminate the ec_int32 and ec_uint32 typedefs.
...quired_bits(celt_int16 *bits, int N, int K, int frac); diff --git a/libcelt/ecintrin.h b/libcelt/ecintrin.h index 9222a3c..1a7f168 100644 --- a/libcelt/ecintrin.h +++ b/libcelt/ecintrin.h @@ -26,6 +26,7 @@ */ /*Some common macros for potential platform-specific optimization.*/ +#include "celt_types.h" #include <math.h> #include <limits.h> #if !defined(_ecintrin_H) @@ -114,7 +115,7 @@ static __inline int ec_bsr(unsigned long _x){ When we need to, it can be special cased.*/ # define EC_ILOG(_x) (EC_CLZ0-EC_CLZ(_x)) #else -int ec_ilog(ec_uint32 _v); +int ec_ilog(celt_uin...