mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Fix code styling
This commit is contained in:
parent
4f77420248
commit
60775306ea
@ -221,13 +221,13 @@ void ChapterFrame::parseFields(const ByteVector &data)
|
||||
int pos = 0, embPos = 0;
|
||||
d->elementID = readStringField(data, String::Latin1, &pos).data(String::Latin1);
|
||||
d->elementID.append(char(0));
|
||||
d->startTime = data.toUInt(pos,true);
|
||||
d->startTime = data.toUInt(pos, true);
|
||||
pos += 4;
|
||||
d->endTime = data.toUInt(pos,true);
|
||||
d->endTime = data.toUInt(pos, true);
|
||||
pos += 4;
|
||||
d->startOffset = data.toUInt(pos,true);
|
||||
d->startOffset = data.toUInt(pos, true);
|
||||
pos += 4;
|
||||
d->endOffset = data.toUInt(pos,true);
|
||||
d->endOffset = data.toUInt(pos, true);
|
||||
pos += 4;
|
||||
size -= pos;
|
||||
|
||||
|
@ -193,7 +193,7 @@ void SynchronizedLyricsFrame::parseFields(const ByteVector &data)
|
||||
if(text.isNull() || pos + 4 > end)
|
||||
return;
|
||||
|
||||
uint time = data.toUInt(pos,true);
|
||||
uint time = data.toUInt(pos, true);
|
||||
pos += 4;
|
||||
|
||||
d->synchedText.append(SynchedText(time, text));
|
||||
|
Loading…
Reference in New Issue
Block a user