aboutsummaryrefslogtreecommitdiff
path: root/sword2
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-06-12 09:53:45 +0000
committerTorbjörn Andersson2004-06-12 09:53:45 +0000
commite554f46f71bb478def84544574e6c5ed8a801d5c (patch)
treec982bd8bb0735f207c2fc88f81ad4ec05b3fcc77 /sword2
parent93d26c0bd159c21a18a05f1d384f26339878955b (diff)
downloadscummvm-rg350-e554f46f71bb478def84544574e6c5ed8a801d5c.tar.gz
scummvm-rg350-e554f46f71bb478def84544574e6c5ed8a801d5c.tar.bz2
scummvm-rg350-e554f46f71bb478def84544574e6c5ed8a801d5c.zip
Cleanup
svn-id: r13956
Diffstat (limited to 'sword2')
-rw-r--r--sword2/driver/d_sound.cpp30
-rw-r--r--sword2/driver/d_sound.h3
2 files changed, 14 insertions, 19 deletions
diff --git a/sword2/driver/d_sound.cpp b/sword2/driver/d_sound.cpp
index b5cf40d9c2..04fc5b51ea 100644
--- a/sword2/driver/d_sound.cpp
+++ b/sword2/driver/d_sound.cpp
@@ -49,7 +49,7 @@ static File fpMus;
#define GetCompressedAmplitude(n) ((n) & 7)
static void premix_proc(void *param, int16 *data, uint len) {
- ((Sound *) param)->fxServer(data, len);
+ ((Sound *) param)->streamMusic(data, len);
}
Sound::Sound(Sword2Engine *vm) {
@@ -86,13 +86,23 @@ Sound::~Sound() {
_vm->_system->deleteMutex(_mutex);
}
-void Sound::fxServer(int16 *data, uint len) {
+void Sound::streamMusic(int16 *data, uint len) {
Common::StackLock lock(_mutex);
if (!_soundOn)
return;
- updateCompSampleStreaming(data, len);
+ for (int i = 0; i < MAXMUS; i++) {
+ if (!_music[i]._streaming || _music[i]._paused)
+ continue;
+
+ st_volume_t volume = _musicMuted ? 0 : _musicVolTable[_musicVol];
+
+ fpMus.seek(_music[i]._filePos, SEEK_SET);
+ _converter->flow(_music[i], data, len, volume, volume);
+ }
+
+ // DipMusic();
if (!_music[0]._streaming && !_music[1]._streaming && fpMus.isOpen())
fpMus.close();
@@ -516,20 +526,6 @@ int32 Sound::streamCompMusic(const char *filename, uint32 musicId, bool looping)
return _music[primaryStream].play(filename, musicId, looping);
}
-void Sound::updateCompSampleStreaming(int16 *data, uint len) {
- for (int i = 0; i < MAXMUS; i++) {
- if (!_music[i]._streaming || _music[i]._paused)
- continue;
-
- st_volume_t volume = _musicMuted ? 0 : _musicVolTable[_musicVol];
-
- fpMus.seek(_music[i]._filePos, SEEK_SET);
- _converter->flow(_music[i], data, len, volume, volume);
- }
-
- // DipMusic();
-}
-
int32 Sound::dipMusic(void) {
// disable this func for now
return RD_OK;
diff --git a/sword2/driver/d_sound.h b/sword2/driver/d_sound.h
index ef10dd79e4..7efdf22479 100644
--- a/sword2/driver/d_sound.h
+++ b/sword2/driver/d_sound.h
@@ -92,7 +92,6 @@ private:
bool _musicMuted;
uint8 _musicVol;
- void updateCompSampleStreaming(int16 *data, uint len);
int32 dipMusic(void);
PlayingSoundHandle _soundHandleSpeech;
@@ -113,7 +112,7 @@ public:
Sound(Sword2Engine *vm);
~Sound();
- void fxServer(int16 *data, uint len);
+ void streamMusic(int16 *data, uint len);
void buildPanTable(bool reverse);
bool getWavInfo(uint8 *data, WavInfo *wavInfo);