From f447ddb36a2bf8b923083e96b51279d72306d22a Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Sun, 8 Aug 2010 00:58:00 +0000 Subject: VIDEO: Fix compilation after the VideoDecoder::load signature change in r51725 svn-id: r51900 --- graphics/video/coktel_decoder.cpp | 12 ++++++------ graphics/video/coktel_decoder.h | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'graphics/video') 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; -- cgit v1.2.3