?? adpcm_u.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 */
};
extern void adpcm_coder_u(unsigned char[], char[], int, struct adpcm_state *);
extern void adpcm_decoder_u(char[], unsigned char[], int, struct adpcm_state *);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -