lpc10.h,v
来自「这是LPC-10压缩算法的源代码,愿共享之.也希望能赐与MELP方面的算法源码.」· H,V 代码 · 共 60 行
H,V
60 行
head 1.1;access;symbols;locks jaf:1.1; strict;comment @ * @;1.1date 96.08.19.22.47.31; author jaf; state Exp;branches;next ;desc@@1.1log@Initial revision@text@/*$Log$*/#define LPC10_SAMPLES_PER_FRAME 180#define LPC10_BITS_IN_COMPRESSED_FRAME 54/* The "#if defined"'s in this file are by no means intended to be complete. They are what Nautilus uses, which has been successfully compiled under DOS with the Microsoft C compiler, and under a few versions of Unix with GNU C compiler. */#if defined(unix)typedef short INT16;typedef int INT32;#endif#if defined(__MSDOS__) || defined(MSDOS)typedef int INT16;typedef long INT32;#endifint lpcini_(void);int lpcenc_(float *speech, INT32 *bits);int lpcdec_(INT32 *bits, float *speech);@
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?