26 #define LPC10_ORDER 10 29 #define min(a,b) ((a) <= (b) ? (a) : (b)) 32 #define max(a,b) ((a) >= (b) ? (a) : (b)) 35 void lpc10_placea(int32_t *ipitch,
45 void lpc10_placev(int32_t *osbuf,
61 const int32_t buflim[],
69 void lpc10_analyse(
lpc10_encode_state_t *st,
float *speech, int32_t *voice, int32_t *pitch,
float *rms,
float rc[]);
71 static __inline__ int32_t pow_ii(int32_t x, int32_t n)
81 return (x == 0) ? 1/x : 0;
97 static __inline__
float r_sign(
float a,
float b)
102 return (b >= 0.0f) ? x : -x;
Definition: private/lpc10.h:33