aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-05 21:10:58 +0000
committerJohannes Schickel2010-01-05 21:10:58 +0000
commit083cab51573612f46e0a2aa6d65afb3c097fd7fa (patch)
tree1ec52e241940d8a86924dd5c8af0916e8f77cce8 /sound
parentcaa3db465955ea9fee8fc78c908b7050e587487f (diff)
downloadscummvm-rg350-083cab51573612f46e0a2aa6d65afb3c097fd7fa.tar.gz
scummvm-rg350-083cab51573612f46e0a2aa6d65afb3c097fd7fa.tar.bz2
scummvm-rg350-083cab51573612f46e0a2aa6d65afb3c097fd7fa.zip
Cleanup.
svn-id: r47046
Diffstat (limited to 'sound')
-rw-r--r--sound/mixer_intern.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/sound/mixer_intern.h b/sound/mixer_intern.h
index 0cd8793ff3..ad162dd162 100644
--- a/sound/mixer_intern.h
+++ b/sound/mixer_intern.h
@@ -78,28 +78,28 @@ public:
SoundType type,
SoundHandle *handle,
void *sound, uint32 size, uint rate, byte flags,
- int id = -1, byte volume = 255, int8 balance = 0,
- uint32 loopStart = 0, uint32 loopEnd = 0);
+ int id, byte volume, int8 balance,
+ uint32 loopStart, uint32 loopEnd);
virtual void playInputStream(
SoundType type,
SoundHandle *handle,
AudioStream *input,
- int id = -1, byte volume = 255, int8 balance = 0,
- bool autofreeStream = true,
- bool permanent = false,
- bool reverseStereo = false);
+ int id, byte volume, int8 balance,
+ bool autofreeStream,
+ bool permanent,
+ bool reverseStereo);
virtual void playInputStreamLooping(
SoundType type,
SoundHandle *handle,
SeekableAudioStream *input,
uint loopCount,
- Timestamp loopStart = Timestamp(0, 1000), Timestamp loopEnd = Timestamp(0, 1000),
- int id = -1, byte volume = kMaxChannelVolume, int8 balance = 0,
- bool autofreeStream = true,
- bool permanent = false,
- bool reverseStereo = false);
+ Timestamp loopStart, Timestamp loopEnd,
+ int id, byte volume, int8 balance,
+ bool autofreeStream,
+ bool permanent,
+ bool reverseStereo);
virtual void stopAll();
virtual void stopID(int id);