⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adpcm.h

📁 ADPCM 4:1 coder and decoder
💻 H
字号:
/*
** 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 */
};

void adpcm_coder (short [], char [], long, struct adpcm_state *);
void adpcm_decoder (char [], short [], int, struct adpcm_state *);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -