aboutsummaryrefslogtreecommitdiff
path: root/sound/iff_sound.h
diff options
context:
space:
mode:
authorMax Horn2010-01-23 13:32:45 +0000
committerMax Horn2010-01-23 13:32:45 +0000
commit2c71e7b76db6beed9d9bb2d0e3ad5f1f64cdfbf1 (patch)
treed2674f6351fdd79af79198f4f2c9980d4e2626ff /sound/iff_sound.h
parent0c5f1c3f970980c7b9a1956c3b496d7b6f5604ee (diff)
downloadscummvm-rg350-2c71e7b76db6beed9d9bb2d0e3ad5f1f64cdfbf1.tar.gz
scummvm-rg350-2c71e7b76db6beed9d9bb2d0e3ad5f1f64cdfbf1.tar.bz2
scummvm-rg350-2c71e7b76db6beed9d9bb2d0e3ad5f1f64cdfbf1.zip
cleanup
svn-id: r47468
Diffstat (limited to 'sound/iff_sound.h')
-rw-r--r--sound/iff_sound.h22
1 files changed, 4 insertions, 18 deletions
diff --git a/sound/iff_sound.h b/sound/iff_sound.h
index 01c9977c7c..4e53059380 100644
--- a/sound/iff_sound.h
+++ b/sound/iff_sound.h
@@ -32,30 +32,16 @@
#ifndef SOUND_IFF_H
#define SOUND_IFF_H
-#include "common/iff_container.h"
-#include "sound/audiostream.h"
+namespace Common {
+ class ReadStream;
+}
namespace Audio {
-struct Voice8Header {
- uint32 oneShotHiSamples;
- uint32 repeatHiSamples;
- uint32 samplesPerHiCycle;
- uint16 samplesPerSec;
- byte octaves;
- byte compression;
- uint32 volume;
-
- Voice8Header() {
- memset(this, 0, sizeof(Voice8Header));
- }
-
- void load(Common::ReadStream &stream);
-};
+class AudioStream;
AudioStream *make8SVXStream(Common::ReadStream &stream, bool loop);
-
}
#endif