1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef LPC_H
- #define LPC_H
- #include "arch.h"
- void _spx_autocorr(
- const spx_word16_t * x,
- spx_word16_t *ac,
- int lag, int n)
- spx_word32_t
- _spx_lpc(
- spx_coef_t * lpc,
- const spx_word16_t * ac,
- int p
- )
- #endif
|