Latest versions:
Server plugin: 0.5.1
MVP dongle: 0.5.2
Raspberry Pi client: 0.5.2
Windows client: 0.5.2-1
void RecPlayer::scan()
{
.....
segments[i] = new Segment();
segments[i]->start = totalLength;
fseek(file, 0, SEEK_END);
totalLength += ftell(file); // ftell will return a 32-bit (signed) value on 32-bit systems
totalFrames = indexFile->Last();
.....