Fix skipping TOC field of Xing header

This commit is contained in:
Martchus 2023-08-19 01:09:22 +02:00
parent db5e1f2c8c
commit f2e97b9899
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ void MpegAudioFrame::parseHeader(BinaryReader &reader, Diagnostics &diag)
m_xingBytesfield = reader.readUInt32BE();
}
if (isXingTocFieldPresent()) {
reader.stream()->seekg(64, ios_base::cur);
reader.stream()->seekg(0x64, ios_base::cur);
}
if (isXingQualityIndicatorFieldPresent()) {
m_xingQualityIndicator = reader.readUInt32BE();