aboutsummaryrefslogtreecommitdiff
path: root/video/qt_decoder.h
diff options
context:
space:
mode:
authorMatthew Hoops2012-05-12 22:05:32 -0400
committerMatthew Hoops2012-05-12 22:05:32 -0400
commit0aacf4c4c08baf512b98afa63bd3d052bfec0716 (patch)
treedfe9ec43b98871a91ba594e6a69e290dbcb1fa24 /video/qt_decoder.h
parent9e330174c8b8a0d2574746f1bc055423be263311 (diff)
downloadscummvm-rg350-0aacf4c4c08baf512b98afa63bd3d052bfec0716.tar.gz
scummvm-rg350-0aacf4c4c08baf512b98afa63bd3d052bfec0716.tar.bz2
scummvm-rg350-0aacf4c4c08baf512b98afa63bd3d052bfec0716.zip
VIDEO: Make seekToTime() take a const Timestamp reference
Diffstat (limited to 'video/qt_decoder.h')
-rw-r--r--video/qt_decoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/qt_decoder.h b/video/qt_decoder.h
index 7f2d32e515..1f614df18b 100644
--- a/video/qt_decoder.h
+++ b/video/qt_decoder.h
@@ -112,7 +112,7 @@ public:
// SeekableVideoDecoder API
void seekToFrame(uint32 frame);
- void seekToTime(Audio::Timestamp time);
+ void seekToTime(const Audio::Timestamp &time);
uint32 getDuration() const { return _duration * 1000 / _timeScale; }
protected: