OpenTTD Source  20240919-master-gdf0233f4c2
mixer.h File Reference

Go to the source code of this file.

Typedefs

typedef void(* MxStreamCallback) (int16_t *buffer, size_t samples)
 Type of callback functions for supplying PCM music. More...
 

Functions

bool MxInitialize (uint rate)
 
void MxMixSamples (void *buffer, uint samples)
 
MixerChannelMxAllocateChannel ()
 
void MxSetChannelRawSrc (MixerChannel *mc, int8_t *mem, size_t size, uint rate, bool is16bit)
 
void MxSetChannelVolume (MixerChannel *mc, uint volume, float pan)
 Set volume and pan parameters for a sound. More...
 
void MxActivateChannel (MixerChannel *)
 
void MxCloseAllChannels ()
 Close all mixer channels. More...
 
uint32_t MxSetMusicSource (MxStreamCallback music_callback)
 Set source of PCM music. More...
 
void SetEffectVolume (uint8_t volume)
 

Detailed Description

Functions to mix sound samples.

Definition in file mixer.h.

Typedef Documentation

◆ MxStreamCallback

typedef void(* MxStreamCallback) (int16_t *buffer, size_t samples)

Type of callback functions for supplying PCM music.

A music decoder/renderer implements this function and installs it with MxSetMusicSource, which also returns the sample rate used.

Parameters
bufferPointer to interleaved 2-channel signed 16 bit PCM data buffer, guaranteed to be 0-initialized.
samplesnumber of samples that must be filled into buffer.

Definition at line 21 of file mixer.h.

Function Documentation

◆ MxCloseAllChannels()

void MxCloseAllChannels ( )

Close all mixer channels.

This signals to the mixer that each channel should be closed even if it has not played all remaining samples. This is safe (and designed) to be called from the main thread.

Definition at line 117 of file mixer.cpp.

Referenced by ChangeSoundSet().

◆ MxSetChannelVolume()

void MxSetChannelVolume ( MixerChannel mc,
uint  volume,
float  pan 
)

Set volume and pan parameters for a sound.

Parameters
mcMixerChannel to set
volumeVolume level for sound, range is 0..16384
panPan position for sound, range is 0..1

Definition at line 208 of file mixer.cpp.

◆ MxSetMusicSource()

uint32_t MxSetMusicSource ( MxStreamCallback  music_callback)

Set source of PCM music.

Parameters
music_callbackFunction that will be called to fill sample buffers with music data.
Returns
Sample rate of mixer, which the buffers supplied to the callback must be rendered at.

Definition at line 229 of file mixer.cpp.

References lock.

Referenced by MusicDriver_FluidSynth::Start(), and MusicDriver_FluidSynth::Stop().