aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/video.h
diff options
context:
space:
mode:
authorMatthew Hoops2012-07-27 11:32:51 -0400
committerMatthew Hoops2012-07-27 11:32:51 -0400
commit991710d0a158bfce4e54bd240482a4e3044271d3 (patch)
tree749555015d23f0d889f2096a98bd31dcb7c593bf /engines/mohawk/video.h
parent21d3fa71aff686f5b64361ae3410268fc0ab5968 (diff)
downloadscummvm-rg350-991710d0a158bfce4e54bd240482a4e3044271d3.tar.gz
scummvm-rg350-991710d0a158bfce4e54bd240482a4e3044271d3.tar.bz2
scummvm-rg350-991710d0a158bfce4e54bd240482a4e3044271d3.zip
VIDEO: Adapt QuickTimeDecoder to the AdvancedVideoDecoder API
Diffstat (limited to 'engines/mohawk/video.h')
-rw-r--r--engines/mohawk/video.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mohawk/video.h b/engines/mohawk/video.h
index 98bcadfb53..937cd0f2dd 100644
--- a/engines/mohawk/video.h
+++ b/engines/mohawk/video.h
@@ -45,7 +45,7 @@ struct MLSTRecord {
struct VideoEntry {
// Playback variables
- Video::SeekableVideoDecoder *video;
+ Video::AdvancedVideoDecoder *video;
uint16 x;
uint16 y;
bool loop;
@@ -57,7 +57,7 @@ struct VideoEntry {
int id; // Internal Mohawk files
// Helper functions
- Video::SeekableVideoDecoder *operator->() const { assert(video); return video; } // TODO: Remove this eventually
+ Video::AdvancedVideoDecoder *operator->() const { assert(video); return video; } // TODO: Remove this eventually
void clear();
bool endOfVideo();
};