We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95f5f88 commit f52e98dCopy full SHA for f52e98d
src/AudioCodecs/CodecWAV.h
@@ -61,7 +61,7 @@ class WAVHeader {
61
memset((void *)&headerInfo, 0, sizeof(WAVAudioInfo));
62
63
if (!setPos("RIFF")) return false;
64
- int riff_len = read_int32();
+ headerInfo.file_size = read_int32();
65
if (!setPos("WAVE")) return false;
66
if (!setPos("fmt ")) return false;
67
int fmt_length = read_int32();
0 commit comments