?? rawdaudio.c
字號(hào):
/* testd - Test adpcm decoder */
#include "adpcm.h"
#include <stdio.h>
struct adpcm_state state;
#define NSAMPLES 1000
char abuf[NSAMPLES/2];
short sbuf[NSAMPLES];
main() {
int n;
while(1) {
n = read(0, abuf, NSAMPLES/2);
if ( n < 0 ) {
perror("input file");
exit(1);
}
if ( n == 0 ) break;
adpcm_decoder(abuf, sbuf, n*2, &state);
write(1, sbuf, n*4);
}
fprintf(stderr, "Final valprev=%d, index=%d\n",
state.valprev, state.index);
exit(0);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -