12345678910111213141516171819202122232425262728 |
- #ifndef _V_LSP_H_
- #define _V_LSP_H_
- extern int vorbis_lpc_to_lsp(float *lpc,float *lsp,int m);
- extern void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln,
- float *lsp,int m,
- float amp,float ampoffset);
- #endif
|