mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add support for 16-bit timestamps in F5V1 events.
This commit is contained in:
parent
5872a9519e
commit
1946be162c
@ -2297,10 +2297,8 @@ bool PRS1DataChunk::ParseEventsF5V1(void)
|
||||
break;
|
||||
}
|
||||
startpos = pos;
|
||||
if (code != 0 && code != 0x12) { // These two codes have no timestamp TODO: verify this applies to F5V012
|
||||
t += data[pos] /*| (data[pos+1] << 8)*/; // TODO: Is this really only 1 byte?
|
||||
if (data[pos+1] != 0) qWarning() << this->sessionid << "nonzero time? byte" << hex(startpos);
|
||||
CHECK_VALUE(data[pos+1], 0);
|
||||
if (code != 0) { // Does this code really not have a timestamp? Never seen on F5V1, checked in F5V0.
|
||||
t += data[pos] | (data[pos+1] << 8);
|
||||
pos += 2;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user