aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sound/aiff.cpp2
-rw-r--r--sound/aiff.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/sound/aiff.cpp b/sound/aiff.cpp
index 3c8a7f02a4..69fb806420 100644
--- a/sound/aiff.cpp
+++ b/sound/aiff.cpp
@@ -160,7 +160,7 @@ bool loadAIFFFromStream(Common::SeekableReadStream &stream, int &size, int &rate
return true;
}
-AudioStream *makeAIFFStream(Common::SeekableReadStream &stream) {
+SeekableAudioStream *makeAIFFStream(Common::SeekableReadStream &stream) {
int size, rate;
byte *data, flags;
diff --git a/sound/aiff.h b/sound/aiff.h
index b253b64e23..e8a3b6f0b0 100644
--- a/sound/aiff.h
+++ b/sound/aiff.h
@@ -39,7 +39,7 @@ namespace Common { class SeekableReadStream; }
namespace Audio {
-class AudioStream;
+class SeekableAudioStream;
/**
* Try to load an AIFF from the given seekable stream. Returns true if
@@ -56,7 +56,7 @@ extern bool loadAIFFFromStream(Common::SeekableReadStream &stream, int &size, in
*
* This function uses loadAIFFFromStream() internally.
*/
-AudioStream *makeAIFFStream(Common::SeekableReadStream &stream);
+SeekableAudioStream *makeAIFFStream(Common::SeekableReadStream &stream);
} // End of namespace Audio