From 2c71e7b76db6beed9d9bb2d0e3ad5f1f64cdfbf1 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 23 Jan 2010 13:32:45 +0000 Subject: cleanup svn-id: r47468 --- sound/iff_sound.h | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) (limited to 'sound/iff_sound.h') 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 -- cgit v1.2.3