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

📄 adpcm.h

📁 The Audio File Library provides a uniform programming interface to standard digital audio file form
💻 H
字号:
/*** adpcm.h - include file for adpcm coder.**** Version 1.0, 7-Jul-92.*/#ifndef ADPCM_H#define ADPCM_H#ifdef HAVE_CONFIG_H#include <config.h>#endif#ifdef HAVE_INTTYPES_H#include <inttypes.h>#endifstruct adpcm_state {    short	valprev;	/* Previous output value */    char	index;		/* Index into stepsize table */};void _af_adpcm_coder (int16_t [], u_int8_t [], int, struct adpcm_state *);void _af_adpcm_decoder (u_int8_t [], int16_t [], int, struct adpcm_state *);#endif /* ADPCM_H */

⌨️ 快捷键说明

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