aboutsummaryrefslogtreecommitdiff
path: root/sound/mixer.h
diff options
context:
space:
mode:
authorMax Horn2007-03-02 14:49:07 +0000
committerMax Horn2007-03-02 14:49:07 +0000
commitc2dbd22692f3135252676f1aad4f0c3057b3f1bc (patch)
tree0d9f8687115a4c860906d71f4973bf1bb36e733c /sound/mixer.h
parentb9658b5960e006db0b1c99095f54b155979ce55e (diff)
downloadscummvm-rg350-c2dbd22692f3135252676f1aad4f0c3057b3f1bc.tar.gz
scummvm-rg350-c2dbd22692f3135252676f1aad4f0c3057b3f1bc.tar.bz2
scummvm-rg350-c2dbd22692f3135252676f1aad4f0c3057b3f1bc.zip
Added reverseStereo parameter to Mixer::playInputStream; changed Mixer::playRaw to use Mixer::playInputStream
svn-id: r25923
Diffstat (limited to 'sound/mixer.h')
-rw-r--r--sound/mixer.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/mixer.h b/sound/mixer.h
index 9b10bbf996..69f5aad1f3 100644
--- a/sound/mixer.h
+++ b/sound/mixer.h
@@ -158,13 +158,16 @@ public:
* freed after playback finished
* @param permanent a flag indicating whether a plain stopAll call should
* not stop this particular stream
+ * @param reverseStereo a flag indicating whether left and right channels shall be swapped
*/
void playInputStream(
SoundType type,
SoundHandle *handle,
AudioStream *input,
int id = -1, byte volume = 255, int8 balance = 0,
- bool autofreeStream = true, bool permanent = false);
+ bool autofreeStream = true,
+ bool permanent = false,
+ bool reverseStereo = false);