Subchunk2Size fix
parent
b121302fcb
commit
d1945b93a1
Binary file not shown.
|
@ -17,13 +17,14 @@ struct Wav
|
||||||
uint16_t bitsPerSample;
|
uint16_t bitsPerSample;
|
||||||
char subchunk2ID[4];
|
char subchunk2ID[4];
|
||||||
uint32_t subchunk2Size;
|
uint32_t subchunk2Size;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Union zum Auslesen des Wav struct
|
// Union zum Auslesen des Wav struct
|
||||||
union ReadWav
|
union ReadWav
|
||||||
{
|
{
|
||||||
struct Wav header;
|
struct Wav header;
|
||||||
char c[40];
|
char c[44];
|
||||||
};
|
};
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
|
|
Loading…
Reference in New Issue