Final Platform Layer 1.0.0
Loading...
Searching...
No Matches
Audio Initialization & Usage

Default initialization

To initialize audio playback with default settings, you have to include the fplInitFlags_Audio flag in the fplPlatformInit() call and ensure that audio is not disabled by a preprocessor directive FPL_NO_AUDIO.

fplSettings settings;
// ... your code here
}
fpl_common_api bool fplPlatformInit(const fplInitFlags initFlags, const fplSettings *initSettings)
Initializes the platform layer.
fpl_common_api void fplSetDefaultSettings(fplSettings *settings)
Resets the given settings container to default values for window, video, audio, etc.
@ fplInitFlags_Audio
Use asynchronous audio playback.
Stores settings, such as window, video, etc.

Setting the client callback

Next is to specify the client user callback which gets invoked regularly when the audio device requires new samples to play.
This client callback can be set up in the fplAudioSettings::clientReadCallback field from the fplSettings::audio or changed by calling fplSetAudioClientReadCallback() :

static uint32_t MyAudioPlaybackCallback(const fplAudioFormat *nativeFormat, const uint32_t frameCount, void *outputSamples, void *userData) {
// ... Fill audio frames here
}
fplSettings settings;
fplAudioSettings *audioSettings = &settings->audio;
audioSettings.clientReadCallback = MyAudioPlaybackCallback;
audioSettings.clientUserData = // ... pointer to some user data
// ... your code here
}
Stores audio format properties, such as type, sample rate, channels, etc.
Stores audio settings, such as format, device info, callbacks, backend, etc.
void * clientUserData
User data pointer for client read callback.
fpl_audio_client_read_callback * clientReadCallback
The callback for retrieving audio data from the client.
fplAudioSettings audio
Audio settings.
Note
This step must be done before you can start playing the audio!
You can specify a user data pointer that gets passed to the client callback as well.

Custom Settings

You can change several audio settings (Sample rate, Number of Channels, Format, Channel layout, etc.) before initializing the audio playback like this:

fplSettings settings;
fplAudioSettings &audioSettings = settings.audio;
audioSettings.clientReadCallback = MyAudioPlaybackCallback;
audioSettings.userData = // ... pointer to some user data
fplAudioFormat &audioDeviceFormat = audioSettings.deviceFormat;
audioDeviceFormat.sampleRate = 48000;
audioDeviceFormat.channels = 2;
audioDeviceFormat.layout = fplAudioChannelLayout_Stereo;
audioDeviceFormat.type = fplAudioFormatType_F32;
// ... your code here
}
@ fplAudioFormatType_F32
32-bit IEEE_FLOAT.
@ fplAudioChannelLayout_Stereo
Stereo Audio Channel Layout (2.0, 2 Channels: Front).
uint16_t channels
Number of channels (uses default when zero).
fplAudioFormatType type
Audio format (uses default when zero).
uint32_t sampleRate
Samples per second (uses default when zero).
Note
Please see the Notes for possible limitations!
If the fplAudioChannelLayout does not match the number of channels, the layout are automatically detected by the number of channels.

Choosing the audio backend

By default, FPL uses the first available audio backend which is supported on your platform.
If you want to force FPL to use a certain audio backend, you can do this by changing the fplAudioSettings::backend field in the fplAudioSettings structure:

fplSettings settings;
fplAudioSettings &audioSettings = settings.audio;
// Forcing to use the DirectSound audio backend
// ... your code here
}
@ fplAudioBackendType_DirectSound
DirectSound audio backend.
fplAudioBackendType backend
The targeted backend.

It is recommended to use the default fplAudioBackendType_Auto which tries all audio backends until a suitable is found.

Warning
If your platform/system does not support the desired backend, the audio and platform initialization will fail!

Automatic play/stop of audio samples playback

By default, FPL starts the playback of audio samples automatically, but only when fplAudioSettings::clientReadCallback was set!
Also audio playback will be stopped when fplPlatformRelease() is called as well.

You can disable this behavior by changing the fields fplAudioSettings::startAuto and fplAudioSettings.stopAuto in the fplAudioSettings configuration respectively.

Manual play/stop of audio samples playback

For manual control of start/stop playback of audio samples use the following functions:

Warning
Please ensure that fplStopAudio() is called before fplPlatformRelease() always!

Notes

There is no guarantee that you get the desired audio format you specified back!
You should always check the nativeAudioFormat in your client callback and convert/write the correct samples the audio device expects!

For more details see the page: Audio Samples Writing

If needed you can use fplSetDefaultAudioSettings() to fill in just the default video settings inside the fplAudioSettings structure.