TSdlAudioPostmixCallback
A callback that fires when data is about to be fed to an audio device.
This is useful for accessing the final mix, perhaps for writing a visualizer or applying a final effect to the audio data before playback.
This callback should run as quickly as possible and not block for any significant time, as this callback delays submission of data to the audio device, which can cause audio playback problems.
The postmix callback must be able to handle any audio data format specified in ASpec
, which can change between callbacks if the audio device changed. However, this only covers frequency and channel count; data is always provided here in TSdlAudioFormat.F32 format.
The postmix callback runs after logical device gain and audiostream gain have been applied, which is to say you can make the output data louder at this point than the gain settings would suggest.
Definition
Unit: Neslib.Sdl3.Audio
type TSdlAudioPostmixCallback = procedure(AUserData: Pointer;
const ASpec: PSdlAudioSpec; ABuffer: PSingle; ASize: Integer); cdecl
Parameters
AUserData
: Pointer
: A pointer provided by the app through TSdlAudioDevice.SetPostmixCallback, for its own use.
ASpec
: PSdlAudioSpec
: The current format of audio that is to be submitted to the audio device.
ABuffer
: PSingle
: The buffer of audio samples to be submitted. The callback can inspect and/or modify this data.
ASize
: Integer
: The size of ABuffer
in bytes.
See Also
Remarks
This will run from a background thread owned by SDL. The application is responsible for locking resources the callback touches that need to be protected.