aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/videoplayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/videoplayer.h')
-rw-r--r--engines/gob/videoplayer.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/gob/videoplayer.h b/engines/gob/videoplayer.h
index b7aa7313b0..295bb62fd3 100644
--- a/engines/gob/videoplayer.h
+++ b/engines/gob/videoplayer.h
@@ -80,6 +80,9 @@ public:
int16 getDefaultX(int slot = -1) const;
int16 getDefaultY(int slot = -1) const;
+ bool hasExtraData(const char *fileName, int slot = -1) const;
+ Common::MemoryReadStream *getExtraData(const char *fileName, int slot = -1);
+
void writeVideoInfo(const char *videoFile, int16 varX, int16 varY,
int16 varFrames, int16 varWidth, int16 varHeight);
@@ -104,6 +107,9 @@ private:
int16 getDefaultX() const;
int16 getDefaultY() const;
+ bool hasExtraData(const char *fileName) const;
+ Common::MemoryReadStream *getExtraData(const char *fileName);
+
CoktelVideo::State nextFrame();
private:
@@ -129,6 +135,7 @@ private:
bool findFile(char *fileName, Type &which);
const Video *getVideoBySlot(int slot = -1) const;
+ Video *getVideoBySlot(int slot = -1);
int getNextFreeSlot();