diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-10-28 12:23:08 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-10-28 12:23:08 +0000 |
commit | 40acf26d6752ec031d814dd88136afb6fca966d1 (patch) | |
tree | 89c4b3793406c197069f0c92e160e5b96d34cbb9 /mediaplugin | |
parent | da143732a2071325226a90cddd67c2c726ff7699 (diff) | |
download | usdx-40acf26d6752ec031d814dd88136afb6fca966d1.tar.gz usdx-40acf26d6752ec031d814dd88136afb6fca966d1.tar.xz usdx-40acf26d6752ec031d814dd88136afb6fca966d1.zip |
TimeDifference must be TimeDiff
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@2693 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'mediaplugin')
-rw-r--r-- | mediaplugin/src/media/UVideoDecoder_FFmpeg.pas | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mediaplugin/src/media/UVideoDecoder_FFmpeg.pas b/mediaplugin/src/media/UVideoDecoder_FFmpeg.pas index 6b6dd901..b781b0d2 100644 --- a/mediaplugin/src/media/UVideoDecoder_FFmpeg.pas +++ b/mediaplugin/src/media/UVideoDecoder_FFmpeg.pas @@ -610,7 +610,7 @@ begin DebugWriteln('Time: '+inttostr(floor(Time*1000)) + sLineBreak + 'VideoTime: '+inttostr(floor(fFrameTime*1000)) + sLineBreak + 'TimeBase: '+inttostr(floor(fFrameDuration*1000)) + sLineBreak + - 'TimeDiff: '+inttostr(floor(TimeDifference*1000))); + 'TimeDiff: '+inttostr(floor(TimeDiff*1000))); {$endif} // check if time has reached the next frame @@ -626,7 +626,7 @@ begin 'Time: '+inttostr(floor(Time*1000)) + sLineBreak + 'VideoTime: '+inttostr(floor(fFrameTime*1000)) + sLineBreak + 'TimeBase: '+inttostr(floor(fFrameDuration*1000)) + sLineBreak + - 'TimeDiff: '+inttostr(floor(TimeDifference*1000))); + 'TimeDiff: '+inttostr(floor(TimeDiff*1000))); {$endif} // we do not need a new frame now @@ -651,7 +651,7 @@ begin {$IFDEF DebugDisplay} DebugWriteln('skipping frames' + sLineBreak + 'TimeBase: '+inttostr(floor(fFrameDuration*1000)) + sLineBreak + - 'TimeDiff: '+inttostr(floor(TimeDifference*1000))); + 'TimeDiff: '+inttostr(floor(TimeDiff*1000))); {$endif} // update video-time |