📄 adpstruc.h
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -