aboutsummaryrefslogtreecommitdiff
path: root/image/codecs/cinepak.h
diff options
context:
space:
mode:
Diffstat (limited to 'image/codecs/cinepak.h')
-rw-r--r--image/codecs/cinepak.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/image/codecs/cinepak.h b/image/codecs/cinepak.h
index 99a316e428..985fc91165 100644
--- a/image/codecs/cinepak.h
+++ b/image/codecs/cinepak.h
@@ -71,7 +71,7 @@ public:
CinepakDecoder(int bitsPerPixel = 24);
~CinepakDecoder();
- const Graphics::Surface *decodeImage(Common::SeekableReadStream *stream);
+ const Graphics::Surface *decodeFrame(Common::SeekableReadStream &stream);
Graphics::PixelFormat getPixelFormat() const { return _pixelFormat; }
private:
@@ -80,8 +80,8 @@ private:
Graphics::PixelFormat _pixelFormat;
byte *_clipTable, *_clipTableBuf;
- void loadCodebook(Common::SeekableReadStream *stream, uint16 strip, byte codebookType, byte chunkID, uint32 chunkSize);
- void decodeVectors(Common::SeekableReadStream *stream, uint16 strip, byte chunkID, uint32 chunkSize);
+ void loadCodebook(Common::SeekableReadStream &stream, uint16 strip, byte codebookType, byte chunkID, uint32 chunkSize);
+ void decodeVectors(Common::SeekableReadStream &stream, uint16 strip, byte chunkID, uint32 chunkSize);
};
} // End of namespace Image