aboutsummaryrefslogtreecommitdiff
path: root/sound/mixer.h
diff options
context:
space:
mode:
authorMax Horn2003-08-01 12:49:24 +0000
committerMax Horn2003-08-01 12:49:24 +0000
commitd9bd77032a9f70ca34dbd917224dcc9bc37cfa0c (patch)
tree8ac0289e93b4f72710ad4acbb812f98dba4b695a /sound/mixer.h
parent0df319e9520aa6fdcaff96f91826ccd7cff2c14a (diff)
downloadscummvm-rg350-d9bd77032a9f70ca34dbd917224dcc9bc37cfa0c.tar.gz
scummvm-rg350-d9bd77032a9f70ca34dbd917224dcc9bc37cfa0c.tar.bz2
scummvm-rg350-d9bd77032a9f70ca34dbd917224dcc9bc37cfa0c.zip
implemented raw sound looping; some debug output enabled temporarily
svn-id: r9360
Diffstat (limited to 'sound/mixer.h')
-rw-r--r--sound/mixer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/mixer.h b/sound/mixer.h
index ff156b5a08..e6060268e2 100644
--- a/sound/mixer.h
+++ b/sound/mixer.h
@@ -82,7 +82,8 @@ public:
~SoundMixer();
// start playing a raw sound
- int playRaw(PlayingSoundHandle *handle, void *sound, uint32 size, uint rate, byte flags, int id = -1);
+ int playRaw(PlayingSoundHandle *handle, void *sound, uint32 size, uint rate, byte flags,
+ int id = -1, uint32 loopStart = 0, uint32 loopEnd = 0);
#ifdef USE_MAD
int playMP3(PlayingSoundHandle *handle, File *file, uint32 size);
int playMP3CDTrack(PlayingSoundHandle *handle, File *file, mad_timer_t duration);