(svn r16805) -Codechange: Remove 'unused' mixer channel flags, which always had the same value.

This commit is contained in:
2009-07-13 10:17:22 +00:00
parent 2547ba9517
commit a67f861d55
3 changed files with 4 additions and 14 deletions

View File

@@ -7,18 +7,11 @@
struct MixerChannel;
enum {
MX_AUTOFREE = 1,
// MX_8BIT = 2,
// MX_STEREO = 4,
// MX_UNSIGNED = 8,
};
bool MxInitialize(uint rate);
void MxMixSamples(void *buffer, uint samples);
MixerChannel *MxAllocateChannel();
void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, size_t size, uint rate, uint flags);
void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, size_t size, uint rate);
void MxSetChannelVolume(MixerChannel *mc, uint left, uint right);
void MxActivateChannel(MixerChannel*);