diff options
author | Strangerke | 2012-06-20 22:17:41 +0200 |
---|---|---|
committer | Strangerke | 2012-06-20 22:17:41 +0200 |
commit | 2d1d6630d6caff8fa47559e91c8a9a667dfa2df4 (patch) | |
tree | 7fd1992906f4402a1d3896f0965d9894dff74a0b /engines | |
parent | 1ee68078c1272287db82f819f2fdc99c6fe04622 (diff) | |
download | scummvm-rg350-2d1d6630d6caff8fa47559e91c8a9a667dfa2df4.tar.gz scummvm-rg350-2d1d6630d6caff8fa47559e91c8a9a667dfa2df4.tar.bz2 scummvm-rg350-2d1d6630d6caff8fa47559e91c8a9a667dfa2df4.zip |
TONY: Remove useless CODEC class definition
Diffstat (limited to 'engines')
-rw-r--r-- | engines/tony/sound.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/engines/tony/sound.h b/engines/tony/sound.h index 585247db83..ca71652f20 100644 --- a/engines/tony/sound.h +++ b/engines/tony/sound.h @@ -49,7 +49,6 @@ enum SoundCodecs { FPCODEC_ADPCM }; - //**************************************************************************** //* class FPSound //* ------------- @@ -245,24 +244,6 @@ public: bool endOfBuffer() const; }; -/** - * Codec base class - */ -class CODEC { -protected: - bool _bEndReached; - -public: - bool _bLoop; - - CODEC(bool _bLoop = true); - virtual ~CODEC(); - virtual uint32 decompress(Common::SeekableReadStream *stream, void *lpBuf, uint32 dwSize) = 0; - virtual void loopReset() = 0; - bool endOfStream(); -}; - - class FPStream { private: uint32 _dwBufferSize; // Buffer size (bytes) |