/external/speex/libspeex/ |
nb_celp.h | 87 spx_mem_t *mem_sp; /**< Filter memory for signal synthesis */ 88 spx_mem_t *mem_sw; /**< Filter memory for perceptually-weighted signal */ 89 spx_mem_t *mem_sw_whole; /**< Filter memory for perceptually-weighted signal (whole frame)*/ 90 spx_mem_t *mem_exc; /**< Filter memory for excitation (whole frame) */ 91 spx_mem_t *mem_exc2; /**< Filter memory for excitation (whole frame) */ 92 spx_mem_t mem_hp[2]; /**< High-pass filter memory */ 142 spx_mem_t *mem_sp; /**< Filter memory for synthesis signal */ 143 spx_mem_t mem_hp[2]; /**< High-pass filter memory */
|
sb_celp.h | 68 spx_mem_t *mem_sp; /**< Synthesis signal memory */ 69 spx_mem_t *mem_sp2; 70 spx_mem_t *mem_sw; /**< Perceptual signal memory */ 118 spx_mem_t *mem_sp;
|
filters.h | 58 void highpass(const spx_word16_t *x, spx_word16_t *y, int len, int filtID, spx_mem_t *mem); 64 void filter_mem16(const spx_word16_t *x, const spx_coef_t *num, const spx_coef_t *den, spx_word16_t *y, int N, int ord, spx_mem_t *mem, char *stack); 65 void iir_mem16(const spx_word16_t *x, const spx_coef_t *den, spx_word16_t *y, int N, int ord, spx_mem_t *mem, char *stack); 66 void fir_mem16(const spx_word16_t *x, const spx_coef_t *num, spx_word16_t *y, int N, int ord, spx_mem_t *mem, char *stack);
|
filters_bfin.h | 85 void filter_mem16(const spx_word16_t *_x, const spx_coef_t *num, const spx_coef_t *den, spx_word16_t *_y, int N, int ord, spx_mem_t *mem, char *stack) 230 void iir_mem16(const spx_word16_t *_x, const spx_coef_t *den, spx_word16_t *_y, int N, int ord, spx_mem_t *mem, char *stack) 355 void fir_mem16(const spx_word16_t *x, const spx_coef_t *num, spx_word16_t *y, int N, int ord, spx_mem_t *mem, char *stack) 468 void filter_mem2(const spx_sig_t *_x, const spx_coef_t *num, const spx_coef_t *den, spx_sig_t *_y, int N, int ord, spx_mem_t *mem) 506 spx_mem_t m = 0;
|
filters.c | 83 void highpass(const spx_word16_t *x, spx_word16_t *y, int len, int filtID, spx_mem_t *mem) 319 void filter_mem16(const spx_word16_t *x, const spx_coef_t *num, const spx_coef_t *den, spx_word16_t *y, int N, int ord, spx_mem_t *mem, char *stack) 339 void iir_mem16(const spx_word16_t *x, const spx_coef_t *den, spx_word16_t *y, int N, int ord, spx_mem_t *mem, char *stack) 359 void fir_mem16(const spx_word16_t *x, const spx_coef_t *num, spx_word16_t *y, int N, int ord, spx_mem_t *mem, char *stack) 382 VARDECL(spx_mem_t *mem); 383 ALLOC(mem, ord, spx_mem_t); 394 VARDECL(spx_mem_t *mem); 395 ALLOC(mem, ord, spx_mem_t); 410 VARDECL(spx_mem_t *mem1); 411 VARDECL(spx_mem_t *mem2) [all...] |
arch.h | 93 typedef spx_word32_t spx_mem_t; typedef 137 typedef float spx_mem_t; typedef
|
sb_celp.c | 249 st->mem_sp = (spx_mem_t*)speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); 250 st->mem_sp2 = (spx_mem_t*)speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); 251 st->mem_sw = (spx_mem_t*)speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); 309 VARDECL(spx_mem_t *mem); 543 ALLOC(mem, st->lpcSize, spx_mem_t); 800 st->mem_sp = (spx_mem_t*)speex_alloc((2*st->lpcSize)*sizeof(spx_mem_t)); [all...] |
nb_celp.c | 177 st->mem_sp = (spx_mem_t*)speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); 178 st->mem_sw = (spx_mem_t*)speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); 179 st->mem_sw_whole = (spx_mem_t*)speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); 180 st->mem_exc = (spx_mem_t*)speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); 181 st->mem_exc2 = (spx_mem_t*)speex_alloc((st->lpcSize)*sizeof(spx_mem_t)); [all...] |
mdf.c | 185 spx_mem_t *notch_mem; 193 static inline void filter_dc_notch16(const spx_int16_t *in, spx_word16_t radius, spx_word16_t *out, int len, spx_mem_t *mem, int stride) 513 st->notch_mem = (spx_mem_t*)speex_alloc(2*C*sizeof(spx_mem_t)); [all...] |
ltp.c | 395 VARDECL(spx_mem_t *mm); 397 ALLOC(mm, p, spx_mem_t);
|