read 8bit: init

dump
Zilog80 2016-01-07 16:33:55 +01:00
rodzic 4054854f5e
commit a8ce4cb3de
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -94,7 +94,7 @@ int read_IQwavheader(FILE *fp, int *sample_rate, int *bits_sample, FILE *fout) {
}
int read_csample(FILE *fp, double complex *z) {
short x, y;
short x = 0, y = 0;
if (fread( &x, bits_sample/8, 1, fp) != 1) return EOF;
if (fread( &y, bits_sample/8, 1, fp) != 1) return EOF;