aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMax Horn2010-01-19 00:54:06 +0000
committerMax Horn2010-01-19 00:54:06 +0000
commit69be7476212916b166ac16db41253cd367fb0dcc (patch)
treeca0d617ca86d0ceecd469a624359f1741e4fd16a /engines
parent349fcd1d715091c1b1816ff610910531d5dd8544 (diff)
downloadscummvm-rg350-69be7476212916b166ac16db41253cd367fb0dcc.tar.gz
scummvm-rg350-69be7476212916b166ac16db41253cd367fb0dcc.tar.bz2
scummvm-rg350-69be7476212916b166ac16db41253cd367fb0dcc.zip
Move raw audio streams to new header sound/raw.h
svn-id: r47368
Diffstat (limited to 'engines')
-rw-r--r--engines/kyra/sound_towns.cpp1
-rw-r--r--engines/made/resource.cpp1
-rw-r--r--engines/mohawk/sound.cpp1
-rw-r--r--engines/mohawk/video/qt_player.cpp1
-rw-r--r--engines/parallaction/sound_br.cpp1
-rw-r--r--engines/parallaction/sound_ns.cpp1
-rw-r--r--engines/saga/music.cpp1
-rw-r--r--engines/sci/sound/audio.cpp1
-rw-r--r--engines/sci/sound/iterator/iterator.cpp1
-rw-r--r--engines/sci/sound/music.cpp1
-rw-r--r--engines/sci/sound/seq/instrument-map.cpp1
-rw-r--r--engines/scumm/he/cup_player_he.cpp1
-rw-r--r--engines/scumm/player_mod.cpp1
-rw-r--r--engines/scumm/player_pce.cpp1
-rw-r--r--engines/tucker/sequences.cpp1
15 files changed, 15 insertions, 0 deletions
diff --git a/engines/kyra/sound_towns.cpp b/engines/kyra/sound_towns.cpp
index 2c42e7fb2b..b4da44df6a 100644
--- a/engines/kyra/sound_towns.cpp
+++ b/engines/kyra/sound_towns.cpp
@@ -30,6 +30,7 @@
#include "sound/audiocd.h"
#include "sound/audiostream.h"
+#include "sound/raw.h"
#include "common/util.h"
diff --git a/engines/made/resource.cpp b/engines/made/resource.cpp
index 2913d23b27..335634598a 100644
--- a/engines/made/resource.cpp
+++ b/engines/made/resource.cpp
@@ -25,6 +25,7 @@
#include "common/endian.h"
#include "sound/mixer.h"
+#include "sound/raw.h"
#include "made/resource.h"
#include "made/graphics.h"
diff --git a/engines/mohawk/sound.cpp b/engines/mohawk/sound.cpp
index db40555dc9..1c70972b0a 100644
--- a/engines/mohawk/sound.cpp
+++ b/engines/mohawk/sound.cpp
@@ -29,6 +29,7 @@
#include "sound/audiostream.h"
#include "sound/mp3.h"
+#include "sound/raw.h"
#include "sound/wave.h"
diff --git a/engines/mohawk/video/qt_player.cpp b/engines/mohawk/video/qt_player.cpp
index 2cb1ed364c..50928a0aac 100644
--- a/engines/mohawk/video/qt_player.cpp
+++ b/engines/mohawk/video/qt_player.cpp
@@ -40,6 +40,7 @@
// Audio codecs
#include "sound/adpcm.h"
+#include "sound/raw.h"
#include "mohawk/video/qdm2.h"
// Video codecs
diff --git a/engines/parallaction/sound_br.cpp b/engines/parallaction/sound_br.cpp
index 003861d501..1441a313bc 100644
--- a/engines/parallaction/sound_br.cpp
+++ b/engines/parallaction/sound_br.cpp
@@ -31,6 +31,7 @@
#include "sound/mididrv.h"
#include "sound/midiparser.h"
#include "sound/mods/protracker.h"
+#include "sound/raw.h"
#include "parallaction/disk.h"
#include "parallaction/parallaction.h"
diff --git a/engines/parallaction/sound_ns.cpp b/engines/parallaction/sound_ns.cpp
index 7bd9970c64..e9215cf117 100644
--- a/engines/parallaction/sound_ns.cpp
+++ b/engines/parallaction/sound_ns.cpp
@@ -30,6 +30,7 @@
#include "sound/mixer.h"
#include "sound/midiparser.h"
#include "sound/mods/protracker.h"
+#include "sound/raw.h"
#include "parallaction/sound.h"
#include "parallaction/parallaction.h"
diff --git a/engines/saga/music.cpp b/engines/saga/music.cpp
index 32f2a3d1a4..bd089f1b38 100644
--- a/engines/saga/music.cpp
+++ b/engines/saga/music.cpp
@@ -33,6 +33,7 @@
#include "sound/audiostream.h"
#include "sound/mididrv.h"
#include "sound/midiparser.h"
+#include "sound/raw.h"
#include "common/config-manager.h"
#include "common/file.h"
diff --git a/engines/sci/sound/audio.cpp b/engines/sci/sound/audio.cpp
index 5771debd60..e43d7d001f 100644
--- a/engines/sci/sound/audio.cpp
+++ b/engines/sci/sound/audio.cpp
@@ -32,6 +32,7 @@
#include "sound/audiostream.h"
#include "sound/audiocd.h"
+#include "sound/raw.h"
#include "sound/wave.h"
namespace Sci {
diff --git a/engines/sci/sound/iterator/iterator.cpp b/engines/sci/sound/iterator/iterator.cpp
index 513e74325c..232a40f121 100644
--- a/engines/sci/sound/iterator/iterator.cpp
+++ b/engines/sci/sound/iterator/iterator.cpp
@@ -36,6 +36,7 @@
#include "sound/audiostream.h"
#include "sound/mixer.h"
+#include "sound/raw.h"
namespace Sci {
diff --git a/engines/sci/sound/music.cpp b/engines/sci/sound/music.cpp
index bea15ca900..8a99c34076 100644
--- a/engines/sci/sound/music.cpp
+++ b/engines/sci/sound/music.cpp
@@ -24,6 +24,7 @@
*/
#include "sound/audiostream.h"
+#include "sound/raw.h"
#include "common/config-manager.h"
#include "sci/sci.h"
diff --git a/engines/sci/sound/seq/instrument-map.cpp b/engines/sci/sound/seq/instrument-map.cpp
index 2f1fdb2532..0390e86d32 100644
--- a/engines/sci/sound/seq/instrument-map.cpp
+++ b/engines/sci/sound/seq/instrument-map.cpp
@@ -24,6 +24,7 @@
*/
#include "common/scummsys.h"
+#include "common/endian.h"
#include "sci/sound/softseq/mididriver.h"
#include "sci/sound/seq/instrument-map.h"
diff --git a/engines/scumm/he/cup_player_he.cpp b/engines/scumm/he/cup_player_he.cpp
index 25baa24bde..dc4eafe56b 100644
--- a/engines/scumm/he/cup_player_he.cpp
+++ b/engines/scumm/he/cup_player_he.cpp
@@ -28,6 +28,7 @@
#include "common/system.h"
#include "sound/audiostream.h"
#include "sound/mixer.h"
+#include "sound/raw.h"
#include "scumm/scumm.h"
#include "scumm/util.h"
#include "scumm/he/intern_he.h"
diff --git a/engines/scumm/player_mod.cpp b/engines/scumm/player_mod.cpp
index 1b18b8f58f..6495da6d48 100644
--- a/engines/scumm/player_mod.cpp
+++ b/engines/scumm/player_mod.cpp
@@ -27,6 +27,7 @@
#include "scumm/player_mod.h"
#include "sound/mixer.h"
#include "sound/rate.h"
+#include "sound/raw.h"
namespace Scumm {
diff --git a/engines/scumm/player_pce.cpp b/engines/scumm/player_pce.cpp
index 5e8a0cdca5..bd0a358c3e 100644
--- a/engines/scumm/player_pce.cpp
+++ b/engines/scumm/player_pce.cpp
@@ -33,6 +33,7 @@
#include <math.h>
#include "player_pce.h"
+#include "common/endian.h"
// PCE sound engine is only used by Loom, which requires 16bit color support
#ifdef USE_RGB_COLOR
diff --git a/engines/tucker/sequences.cpp b/engines/tucker/sequences.cpp
index d991a6e3de..16dba3e346 100644
--- a/engines/tucker/sequences.cpp
+++ b/engines/tucker/sequences.cpp
@@ -26,6 +26,7 @@
#include "common/system.h"
#include "sound/audiostream.h"
+#include "sound/raw.h"
#include "sound/wave.h"
#include "tucker/tucker.h"