mixer.h
author miham
Tue, 03 Oct 2006 21:11:42 +0000
changeset 4720 dc477f6ad68c
parent 2977 97c1c76b499a
permissions -rw-r--r--
(svn r6632) WebTranslator2 update to 2006-10-03 23:11:07
american - 3 fixed, 2 changed by WhiteRabbit (5)
catalan - 3 fixed, 2 changed by arnaullv (5)
norwegian - 50 fixed by brygge_2 (50)
polish - 3 fixed, 2 changed by meush (5)
swedish - 3 fixed, 2 changed by cjw (5)
/* $Id$ */

#ifndef MIXER_H
#define MIXER_H

typedef struct MixerChannel 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);
void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, uint size, uint rate, uint flags);
void MxSetChannelVolume(MixerChannel *mc, uint left, uint right);
void MxActivateChannel(MixerChannel*);

#endif /* MIXER_H */