aboutsummaryrefslogtreecommitdiff
path: root/video/qt_decoder.h
diff options
context:
space:
mode:
authorMax Horn2011-02-07 22:57:35 +0000
committerMax Horn2011-02-07 22:57:35 +0000
commit85aabef6fe370766fa52ba92a7cf63c558bac772 (patch)
tree2e460a28d6f1911a2817b1a1fb55d9a85f472417 /video/qt_decoder.h
parent04748b17446d485a1343e1f1ad9b499a41f5728f (diff)
downloadscummvm-rg350-85aabef6fe370766fa52ba92a7cf63c558bac772.tar.gz
scummvm-rg350-85aabef6fe370766fa52ba92a7cf63c558bac772.tar.bz2
scummvm-rg350-85aabef6fe370766fa52ba92a7cf63c558bac772.zip
VIDEO: Replace Video::VideoTimestamp with Audio::Timestamp
svn-id: r55814
Diffstat (limited to 'video/qt_decoder.h')
-rw-r--r--video/qt_decoder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/qt_decoder.h b/video/qt_decoder.h
index cc6b6738c5..47da683f39 100644
--- a/video/qt_decoder.h
+++ b/video/qt_decoder.h
@@ -121,7 +121,7 @@ public:
// SeekableVideoDecoder API
void seekToFrame(uint32 frame);
- void seekToTime(VideoTimestamp time);
+ void seekToTime(Audio::Timestamp time);
private:
// This is the file handle from which data is read from. It can be the actual file handle or a decompressed stream.
@@ -239,7 +239,7 @@ private:
int8 _audioStreamIndex;
uint _curAudioChunk;
Audio::SoundHandle _audHandle;
- VideoTimestamp _audioStartOffset;
+ Audio::Timestamp _audioStartOffset;
Codec *createCodec(uint32 codecTag, byte bitsPerPixel);
Codec *findDefaultVideoCodec() const;