aboutsummaryrefslogtreecommitdiff
path: root/sound/mixer.h
diff options
context:
space:
mode:
authorRobert Göffringmann2003-12-16 02:11:04 +0000
committerRobert Göffringmann2003-12-16 02:11:04 +0000
commit5756a41ba69394aaf9f24f3ade825e397786a63b (patch)
treefc1e8d7a8792aec2113325b2f51a6d1d4bc9b36d /sound/mixer.h
parent189e08bc7985fc5664e7ab95195bbade07488f48 (diff)
downloadscummvm-rg350-5756a41ba69394aaf9f24f3ade825e397786a63b.tar.gz
scummvm-rg350-5756a41ba69394aaf9f24f3ade825e397786a63b.tar.bz2
scummvm-rg350-5756a41ba69394aaf9f24f3ade825e397786a63b.zip
added mixer flag for little endian samples
svn-id: r11665
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 8847d208e7..4518776799 100644
--- a/sound/mixer.h
+++ b/sound/mixer.h
@@ -55,7 +55,8 @@ public:
FLAG_16BITS = 1 << 2, // sound is 16 bits wide (default: 8bit)
FLAG_AUTOFREE = 1 << 3, // sound buffer is freed automagically at the end of playing
FLAG_REVERSE_STEREO = 1 << 4, // reverse the left and right stereo channel
- FLAG_LOOP = 1 << 5 // loop the audio
+ FLAG_LOOP = 1 << 5, // loop the audio
+ FLAG_LITTLE_ENDIAN = 1 << 6 // sample is little endian (default: big endian)
};