clarification: premixer must use native endianess

svn-id: r10621
This commit is contained in:
Max Horn 2003-10-05 17:42:55 +00:00
parent 0954fc1dac
commit 9f537f4b8c

View File

@ -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);