diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/video/coktel_decoder.cpp | 12 | ||||
-rw-r--r-- | graphics/video/coktel_decoder.h | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/graphics/video/coktel_decoder.cpp b/graphics/video/coktel_decoder.cpp index 864904f252..ed2ee2a46a 100644 --- a/graphics/video/coktel_decoder.cpp +++ b/graphics/video/coktel_decoder.cpp @@ -539,14 +539,14 @@ bool PreIMDDecoder::seek(int32 frame, int whence, bool restart) { return true; } -bool PreIMDDecoder::load(Common::SeekableReadStream &stream) { +bool PreIMDDecoder::load(Common::SeekableReadStream *stream) { // Since PreIMDs don't have any width and height values stored, // we need them to be specified in the constructor assert((_width > 0) && (_height > 0)); close(); - _stream = &stream; + _stream = stream; _stream->seek(0); @@ -791,10 +791,10 @@ void IMDDecoder::setXY(uint16 x, uint16 y) { _y = y; } -bool IMDDecoder::load(Common::SeekableReadStream &stream) { +bool IMDDecoder::load(Common::SeekableReadStream *stream) { close(); - _stream = &stream; + _stream = stream; uint16 handle; @@ -1410,10 +1410,10 @@ bool VMDDecoder::seek(int32 frame, int whence, bool restart) { return true; } -bool VMDDecoder::load(Common::SeekableReadStream &stream) { +bool VMDDecoder::load(Common::SeekableReadStream *stream) { close(); - _stream = &stream; + _stream = stream; _stream->seek(0); diff --git a/graphics/video/coktel_decoder.h b/graphics/video/coktel_decoder.h index 442f2b4b5d..4a2be43b13 100644 --- a/graphics/video/coktel_decoder.h +++ b/graphics/video/coktel_decoder.h @@ -214,7 +214,7 @@ public: // VideoDecoder interface - bool load(Common::SeekableReadStream &stream); + bool load(Common::SeekableReadStream *stream); void close(); bool isVideoLoaded() const; @@ -247,7 +247,7 @@ public: // VideoDecoder interface - bool load(Common::SeekableReadStream &stream); + bool load(Common::SeekableReadStream *stream); void close(); bool isVideoLoaded() const; @@ -346,7 +346,7 @@ public: // VideoDecoder interface - bool load(Common::SeekableReadStream &stream); + bool load(Common::SeekableReadStream *stream); void close(); bool isVideoLoaded() const; |