adpcm.h
来自「用C实现的在LINUX系统下的聊天程序.无需登录就可以下载」· C头文件 代码 · 共 20 行
H
20 行
/*** adpcm.h - include file for adpcm coder.**** Version 1.0, 7-Jul-92.*/struct adpcm_state { short valprev; /* Previous output value */ char index; /* Index into stepsize table */};#ifdef __STDC__#define ARGS(x) x#else#define ARGS(x) ()#endifvoid adpcm_coder ARGS((short [], char [], int, struct adpcm_state *));void adpcm_decoder ARGS((char [], short [], int, struct adpcm_state *));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?