diff options
Diffstat (limited to 'sound/audiostream.h')
-rw-r--r-- | sound/audiostream.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sound/audiostream.h b/sound/audiostream.h index 04c0c4fc9f..722006e625 100644 --- a/sound/audiostream.h +++ b/sound/audiostream.h @@ -53,11 +53,6 @@ public: virtual bool eof() const = 0; }; -class LinearAudioInputStream : public AudioInputStream { -public: - virtual void reset(const byte *data, uint32 len) = 0; -}; - class WrappedAudioInputStream : public AudioInputStream { public: virtual void append(const byte *data, uint32 len) = 0; @@ -123,7 +118,7 @@ public: -LinearAudioInputStream *makeLinearInputStream(byte _flags, const byte *ptr, uint32 len); +AudioInputStream *makeLinearInputStream(byte _flags, const byte *ptr, uint32 len, uint loopOffset, uint loopLen); WrappedAudioInputStream *makeWrappedInputStream(byte _flags, uint32 len); |