diff options
| author | Max Horn | 2003-10-05 17:42:55 +0000 |
|---|---|---|
| committer | Max Horn | 2003-10-05 17:42:55 +0000 |
| commit | 9f537f4b8cbb282af717a66d3912ad51602e174f (patch) | |
| tree | 3ab269bf95b40138d84febc8c0f98133f6354f75 | |
| parent | 0954fc1dac5195d86335edb4def33006a2c8be29 (diff) | |
| download | scummvm-rg350-9f537f4b8cbb282af717a66d3912ad51602e174f.tar.gz scummvm-rg350-9f537f4b8cbb282af717a66d3912ad51602e174f.tar.bz2 scummvm-rg350-9f537f4b8cbb282af717a66d3912ad51602e174f.zip | |
clarification: premixer must use native endianess
svn-id: r10621
| -rw-r--r-- | sound/mixer.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sound/mixer.h b/sound/mixer.h index 6c9e9a4671..03e8b46385 100644 --- a/sound/mixer.h +++ b/sound/mixer.h @@ -84,11 +84,13 @@ public: bool bindToSystem(OSystem *syst); /** - * Set the premix procedure. This is mainly used for the adlib music, but is not limited - * to it. The premix proc is invoked by the mixer whenever it needs to generate any - * data, before any other mixing takes place. The premixer than has a chanve to fill - * the mix buffer with data (usually music samples). It should generate the specified - * number of 16bit stereo samples (i.e. len * 4 bytes). + * Set the premix procedure. This is mainly used for the adlib music, but + * is not limited to it. The premix proc is invoked by the mixer whenever + * it needs to generate any data, before any other mixing takes place. The + * premixer than has a chanve to fill the mix buffer with data (usually + * music samples). It should generate the specified number of 16bit stereo + * samples (i.e. len * 4 bytes). The endianess of these samples shall be + * the native endianess. */ void setupPremix(PremixProc *proc, void *param); |
