adpstruc.h
来自「arm ads1.2 with crack.rar」· C头文件 代码 · 共 27 行
H
27 行
/*
* Adaptive Differential Pulse Code Modulation structure definition
* Copyright (C) ARM Limited 1998-1999. All rights reserved.
*/
#ifndef _ADPCM_STRUCTURE_
#define _ADPCM_STRUCTURE_
#ifndef _ADPCMSTATE
#define _ADPCMSTATE
typedef struct ADPCMState ADPCMState ;
typedef ADPCMState *ADPCMStatePtr ;
struct ADPCMState {
int stepIndex ;
int prediction ;
} ;
/* define the structure required internally during function calls */
/* must be initialised before the first call of a sequence */
#endif /* _ADPCMSTATE */
#endif /* _ADPCM_STRUCTURE_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?