Merge branch 'development' into LTS_development
# Conflicts: # src/input/input.cpp
This commit is contained in:
commit
e0ed755890
1 changed files with 5 additions and 1 deletions
|
@ -516,8 +516,12 @@ namespace Mist {
|
|||
while (thisPacket && thisPacket.getTime() < (unsigned long long)myMeta.tracks[track].keys[keyNum - 1].getTime()) {
|
||||
getNext();
|
||||
}
|
||||
uint64_t lastBuffered = 0;
|
||||
while (thisPacket && thisPacket.getTime() < stopTime) {
|
||||
bufferNext(thisPacket);
|
||||
if (thisPacket.getTime() >= lastBuffered){
|
||||
bufferNext(thisPacket);
|
||||
lastBuffered = thisPacket.getTime();
|
||||
}
|
||||
getNext();
|
||||
}
|
||||
bufferFinalize(track);
|
||||
|
|
Loading…
Add table
Reference in a new issue