mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
VIDEO: Round the edit time offset instead of truncating it
Allows for the KQ6 Mac intro to play without the edit "-1" hack
This commit is contained in:
parent
a59f5db505
commit
aaf4d38a56
@ -721,7 +721,12 @@ const Graphics::Surface *QuickTimeDecoder::VideoTrackHandler::bufferNextFrame()
|
||||
|
||||
uint32 QuickTimeDecoder::VideoTrackHandler::getRateAdjustedFrameTime() const {
|
||||
// Figure out what time the next frame is at taking the edit list rate into account
|
||||
uint32 convertedTime = (Common::Rational(_nextFrameStartTime - getCurEditTimeOffset()) / _parent->editList[_curEdit].mediaRate).toInt();
|
||||
Common::Rational offsetFromEdit = Common::Rational(_nextFrameStartTime - getCurEditTimeOffset()) / _parent->editList[_curEdit].mediaRate;
|
||||
uint32 convertedTime = offsetFromEdit.toInt();
|
||||
|
||||
if ((offsetFromEdit.getNumerator() % offsetFromEdit.getDenominator()) > (offsetFromEdit.getDenominator() / 2))
|
||||
convertedTime++;
|
||||
|
||||
return convertedTime + getCurEditTimeOffset();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user