SDL 3.0
SDL_audio.h
Go to the documentation of this file.
1/*
2 Simple DirectMedia Layer
3 Copyright (C) 1997-2026 Sam Lantinga <slouken@libsdl.org>
4
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
8
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
12
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
20*/
21
22/**
23 * # CategoryAudio
24 *
25 * Audio functionality for the SDL library.
26 *
27 * All audio in SDL3 revolves around SDL_AudioStream. Whether you want to play
28 * or record audio, convert it, stream it, buffer it, or mix it, you're going
29 * to be passing it through an audio stream.
30 *
31 * Audio streams are quite flexible; they can accept any amount of data at a
32 * time, in any supported format, and output it as needed in any other format,
33 * even if the data format changes on either side halfway through.
34 *
35 * An app opens an audio device and binds any number of audio streams to it,
36 * feeding more data to the streams as available. When the device needs more
37 * data, it will pull it from all bound streams and mix them together for
38 * playback.
39 *
40 * Audio streams can also use an app-provided callback to supply data
41 * on-demand, which maps pretty closely to the SDL2 audio model.
42 *
43 * SDL also provides a simple .WAV loader in SDL_LoadWAV (and SDL_LoadWAV_IO
44 * if you aren't reading from a file) as a basic means to load sound data into
45 * your program.
46 *
47 * ## Logical audio devices
48 *
49 * In SDL3, opening a physical device (like a SoundBlaster 16 Pro) gives you a
50 * logical device ID that you can bind audio streams to. In almost all cases,
51 * logical devices can be used anywhere in the API that a physical device is
52 * normally used. However, since each device opening generates a new logical
53 * device, different parts of the program (say, a VoIP library, or
54 * text-to-speech framework, or maybe some other sort of mixer on top of SDL)
55 * can have their own device opens that do not interfere with each other; each
56 * logical device will mix its separate audio down to a single buffer, fed to
57 * the physical device, behind the scenes. As many logical devices as you like
58 * can come and go; SDL will only have to open the physical device at the OS
59 * level once, and will manage all the logical devices on top of it
60 * internally.
61 *
62 * One other benefit of logical devices: if you don't open a specific physical
63 * device, instead opting for the default, SDL can automatically migrate those
64 * logical devices to different hardware as circumstances change: a user
65 * plugged in headphones? The system default changed? SDL can transparently
66 * migrate the logical devices to the correct physical device seamlessly and
67 * keep playing; the app doesn't even have to know it happened if it doesn't
68 * want to.
69 *
70 * ## Simplified audio
71 *
72 * As a simplified model for when a single source of audio is all that's
73 * needed, an app can use SDL_OpenAudioDeviceStream, which is a single
74 * function to open an audio device, create an audio stream, bind that stream
75 * to the newly-opened device, and (optionally) provide a callback for
76 * obtaining audio data. When using this function, the primary interface is
77 * the SDL_AudioStream and the device handle is mostly hidden away; destroying
78 * a stream created through this function will also close the device, stream
79 * bindings cannot be changed, etc. One other quirk of this is that the device
80 * is started in a _paused_ state and must be explicitly resumed; this is
81 * partially to offer a clean migration for SDL2 apps and partially because
82 * the app might have to do more setup before playback begins; in the
83 * non-simplified form, nothing will play until a stream is bound to a device,
84 * so they start _unpaused_.
85 *
86 * ## Channel layouts
87 *
88 * Audio data passing through SDL is uncompressed PCM data, interleaved. One
89 * can provide their own decompression through an MP3, etc, decoder, but SDL
90 * does not provide this directly. Each interleaved channel of data is meant
91 * to be in a specific order.
92 *
93 * Abbreviations:
94 *
95 * - FRONT = single mono speaker
96 * - FL = front left speaker
97 * - FR = front right speaker
98 * - FC = front center speaker
99 * - BL = back left speaker
100 * - BR = back right speaker
101 * - SR = surround right speaker
102 * - SL = surround left speaker
103 * - BC = back center speaker
104 * - LFE = low-frequency speaker
105 *
106 * These are listed in the order they are laid out in memory, so "FL, FR"
107 * means "the front left speaker is laid out in memory first, then the front
108 * right, then it repeats for the next audio frame".
109 *
110 * - 1 channel (mono) layout: FRONT
111 * - 2 channels (stereo) layout: FL, FR
112 * - 3 channels (2.1) layout: FL, FR, LFE
113 * - 4 channels (quad) layout: FL, FR, BL, BR
114 * - 5 channels (4.1) layout: FL, FR, LFE, BL, BR
115 * - 6 channels (5.1) layout: FL, FR, FC, LFE, BL, BR (last two can also be
116 * SL, SR)
117 * - 7 channels (6.1) layout: FL, FR, FC, LFE, BC, SL, SR
118 * - 8 channels (7.1) layout: FL, FR, FC, LFE, BL, BR, SL, SR
119 *
120 * This is the same order as DirectSound expects, but applied to all
121 * platforms; SDL will swizzle the channels as necessary if a platform expects
122 * something different.
123 *
124 * SDL_AudioStream can also be provided channel maps to change this ordering
125 * to whatever is necessary, in other audio processing scenarios.
126 */
127
128#ifndef SDL_audio_h_
129#define SDL_audio_h_
130
131#include <SDL3/SDL_stdinc.h>
132#include <SDL3/SDL_endian.h>
133#include <SDL3/SDL_error.h>
134#include <SDL3/SDL_mutex.h>
135#include <SDL3/SDL_properties.h>
136#include <SDL3/SDL_iostream.h>
137
138#include <SDL3/SDL_begin_code.h>
139/* Set up for C function definitions, even when using C++ */
140#ifdef __cplusplus
141extern "C" {
142#endif
143
144/**
145 * Mask of bits in an SDL_AudioFormat that contains the format bit size.
146 *
147 * Generally one should use SDL_AUDIO_BITSIZE instead of this macro directly.
148 *
149 * \since This macro is available since SDL 3.2.0.
150 */
151#define SDL_AUDIO_MASK_BITSIZE (0xFFu)
152
153/**
154 * Mask of bits in an SDL_AudioFormat that contain the floating point flag.
155 *
156 * Generally one should use SDL_AUDIO_ISFLOAT instead of this macro directly.
157 *
158 * \since This macro is available since SDL 3.2.0.
159 */
160#define SDL_AUDIO_MASK_FLOAT (1u<<8)
161
162/**
163 * Mask of bits in an SDL_AudioFormat that contain the bigendian flag.
164 *
165 * Generally one should use SDL_AUDIO_ISBIGENDIAN or SDL_AUDIO_ISLITTLEENDIAN
166 * instead of this macro directly.
167 *
168 * \since This macro is available since SDL 3.2.0.
169 */
170#define SDL_AUDIO_MASK_BIG_ENDIAN (1u<<12)
171
172/**
173 * Mask of bits in an SDL_AudioFormat that contain the signed data flag.
174 *
175 * Generally one should use SDL_AUDIO_ISSIGNED instead of this macro directly.
176 *
177 * \since This macro is available since SDL 3.2.0.
178 */
179#define SDL_AUDIO_MASK_SIGNED (1u<<15)
180
181/**
182 * Define an SDL_AudioFormat value.
183 *
184 * SDL does not support custom audio formats, so this macro is not of much use
185 * externally, but it can be illustrative as to what the various bits of an
186 * SDL_AudioFormat mean.
187 *
188 * For example, SDL_AUDIO_S32LE looks like this:
189 *
190 * ```c
191 * SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 32)
192 * ```
193 *
194 * \param signed 1 for signed data, 0 for unsigned data.
195 * \param bigendian 1 for bigendian data, 0 for littleendian data.
196 * \param flt 1 for floating point data, 0 for integer data.
197 * \param size number of bits per sample.
198 * \returns a format value in the style of SDL_AudioFormat.
199 *
200 * \threadsafety It is safe to call this macro from any thread.
201 *
202 * \since This macro is available since SDL 3.2.0.
203 */
204#define SDL_DEFINE_AUDIO_FORMAT(signed, bigendian, flt, size) \
205 (((Uint16)(signed) << 15) | ((Uint16)(bigendian) << 12) | ((Uint16)(flt) << 8) | ((size) & SDL_AUDIO_MASK_BITSIZE))
206
207/**
208 * Audio format.
209 *
210 * \since This enum is available since SDL 3.2.0.
211 *
212 * \sa SDL_AUDIO_BITSIZE
213 * \sa SDL_AUDIO_BYTESIZE
214 * \sa SDL_AUDIO_ISINT
215 * \sa SDL_AUDIO_ISFLOAT
216 * \sa SDL_AUDIO_ISBIGENDIAN
217 * \sa SDL_AUDIO_ISLITTLEENDIAN
218 * \sa SDL_AUDIO_ISSIGNED
219 * \sa SDL_AUDIO_ISUNSIGNED
220 */
221typedef enum SDL_AudioFormat
222{
223 SDL_AUDIO_UNKNOWN = 0x0000u, /**< Unspecified audio format */
224 SDL_AUDIO_U8 = 0x0008u, /**< Unsigned 8-bit samples */
225 /* SDL_DEFINE_AUDIO_FORMAT(0, 0, 0, 8), */
226 SDL_AUDIO_S8 = 0x8008u, /**< Signed 8-bit samples */
227 /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 8), */
228 SDL_AUDIO_S16LE = 0x8010u, /**< Signed 16-bit samples */
229 /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 16), */
230 SDL_AUDIO_S16BE = 0x9010u, /**< As above, but big-endian byte order */
231 /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 16), */
232 SDL_AUDIO_S32LE = 0x8020u, /**< 32-bit integer samples */
233 /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 32), */
234 SDL_AUDIO_S32BE = 0x9020u, /**< As above, but big-endian byte order */
235 /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 32), */
236 SDL_AUDIO_F32LE = 0x8120u, /**< 32-bit floating point samples */
237 /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 1, 32), */
238 SDL_AUDIO_F32BE = 0x9120u, /**< As above, but big-endian byte order */
239 /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 1, 32), */
240
241 /* These represent the current system's byteorder. */
242 #if SDL_BYTEORDER == SDL_LIL_ENDIAN
246 #else
250 #endif
252
253
254/**
255 * Retrieve the size, in bits, from an SDL_AudioFormat.
256 *
257 * For example, `SDL_AUDIO_BITSIZE(SDL_AUDIO_S16)` returns 16.
258 *
259 * \param x an SDL_AudioFormat value.
260 * \returns data size in bits.
261 *
262 * \threadsafety It is safe to call this macro from any thread.
263 *
264 * \since This macro is available since SDL 3.2.0.
265 */
266#define SDL_AUDIO_BITSIZE(x) ((x) & SDL_AUDIO_MASK_BITSIZE)
267
268/**
269 * Retrieve the size, in bytes, from an SDL_AudioFormat.
270 *
271 * For example, `SDL_AUDIO_BYTESIZE(SDL_AUDIO_S16)` returns 2.
272 *
273 * \param x an SDL_AudioFormat value.
274 * \returns data size in bytes.
275 *
276 * \threadsafety It is safe to call this macro from any thread.
277 *
278 * \since This macro is available since SDL 3.2.0.
279 */
280#define SDL_AUDIO_BYTESIZE(x) (SDL_AUDIO_BITSIZE(x) / 8)
281
282/**
283 * Determine if an SDL_AudioFormat represents floating point data.
284 *
285 * For example, `SDL_AUDIO_ISFLOAT(SDL_AUDIO_S16)` returns 0.
286 *
287 * \param x an SDL_AudioFormat value.
288 * \returns non-zero if format is floating point, zero otherwise.
289 *
290 * \threadsafety It is safe to call this macro from any thread.
291 *
292 * \since This macro is available since SDL 3.2.0.
293 */
294#define SDL_AUDIO_ISFLOAT(x) ((x) & SDL_AUDIO_MASK_FLOAT)
295
296/**
297 * Determine if an SDL_AudioFormat represents bigendian data.
298 *
299 * For example, `SDL_AUDIO_ISBIGENDIAN(SDL_AUDIO_S16LE)` returns 0.
300 *
301 * \param x an SDL_AudioFormat value.
302 * \returns non-zero if format is bigendian, zero otherwise.
303 *
304 * \threadsafety It is safe to call this macro from any thread.
305 *
306 * \since This macro is available since SDL 3.2.0.
307 */
308#define SDL_AUDIO_ISBIGENDIAN(x) ((x) & SDL_AUDIO_MASK_BIG_ENDIAN)
309
310/**
311 * Determine if an SDL_AudioFormat represents littleendian data.
312 *
313 * For example, `SDL_AUDIO_ISLITTLEENDIAN(SDL_AUDIO_S16BE)` returns 0.
314 *
315 * \param x an SDL_AudioFormat value.
316 * \returns non-zero if format is littleendian, zero otherwise.
317 *
318 * \threadsafety It is safe to call this macro from any thread.
319 *
320 * \since This macro is available since SDL 3.2.0.
321 */
322#define SDL_AUDIO_ISLITTLEENDIAN(x) (!SDL_AUDIO_ISBIGENDIAN(x))
323
324/**
325 * Determine if an SDL_AudioFormat represents signed data.
326 *
327 * For example, `SDL_AUDIO_ISSIGNED(SDL_AUDIO_U8)` returns 0.
328 *
329 * \param x an SDL_AudioFormat value.
330 * \returns non-zero if format is signed, zero otherwise.
331 *
332 * \threadsafety It is safe to call this macro from any thread.
333 *
334 * \since This macro is available since SDL 3.2.0.
335 */
336#define SDL_AUDIO_ISSIGNED(x) ((x) & SDL_AUDIO_MASK_SIGNED)
337
338/**
339 * Determine if an SDL_AudioFormat represents integer data.
340 *
341 * For example, `SDL_AUDIO_ISINT(SDL_AUDIO_F32)` returns 0.
342 *
343 * \param x an SDL_AudioFormat value.
344 * \returns non-zero if format is integer, zero otherwise.
345 *
346 * \threadsafety It is safe to call this macro from any thread.
347 *
348 * \since This macro is available since SDL 3.2.0.
349 */
350#define SDL_AUDIO_ISINT(x) (!SDL_AUDIO_ISFLOAT(x))
351
352/**
353 * Determine if an SDL_AudioFormat represents unsigned data.
354 *
355 * For example, `SDL_AUDIO_ISUNSIGNED(SDL_AUDIO_S16)` returns 0.
356 *
357 * \param x an SDL_AudioFormat value.
358 * \returns non-zero if format is unsigned, zero otherwise.
359 *
360 * \threadsafety It is safe to call this macro from any thread.
361 *
362 * \since This macro is available since SDL 3.2.0.
363 */
364#define SDL_AUDIO_ISUNSIGNED(x) (!SDL_AUDIO_ISSIGNED(x))
365
366
367/**
368 * SDL Audio Device instance IDs.
369 *
370 * Zero is used to signify an invalid/null device.
371 *
372 * \since This datatype is available since SDL 3.2.0.
373 */
375
376/**
377 * A value used to request a default playback audio device.
378 *
379 * Several functions that require an SDL_AudioDeviceID will accept this value
380 * to signify the app just wants the system to choose a default device instead
381 * of the app providing a specific one.
382 *
383 * \since This macro is available since SDL 3.2.0.
384 */
385#define SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK ((SDL_AudioDeviceID) 0xFFFFFFFFu)
386
387/**
388 * A value used to request a default recording audio device.
389 *
390 * Several functions that require an SDL_AudioDeviceID will accept this value
391 * to signify the app just wants the system to choose a default device instead
392 * of the app providing a specific one.
393 *
394 * \since This macro is available since SDL 3.2.0.
395 */
396#define SDL_AUDIO_DEVICE_DEFAULT_RECORDING ((SDL_AudioDeviceID) 0xFFFFFFFEu)
397
398/**
399 * Format specifier for audio data.
400 *
401 * \since This struct is available since SDL 3.2.0.
402 *
403 * \sa SDL_AudioFormat
404 */
405typedef struct SDL_AudioSpec
406{
407 SDL_AudioFormat format; /**< Audio data format */
408 int channels; /**< Number of channels: 1 mono, 2 stereo, etc */
409 int freq; /**< sample rate: sample frames per second */
411
412/**
413 * Calculate the size of each audio frame (in bytes) from an SDL_AudioSpec.
414 *
415 * This reports on the size of an audio sample frame: stereo Sint16 data (2
416 * channels of 2 bytes each) would be 4 bytes per frame, for example.
417 *
418 * \param x an SDL_AudioSpec to query.
419 * \returns the number of bytes used per sample frame.
420 *
421 * \threadsafety It is safe to call this macro from any thread.
422 *
423 * \since This macro is available since SDL 3.2.0.
424 */
425#define SDL_AUDIO_FRAMESIZE(x) (SDL_AUDIO_BYTESIZE((x).format) * (x).channels)
426
427/**
428 * The opaque handle that represents an audio stream.
429 *
430 * SDL_AudioStream is an audio conversion interface.
431 *
432 * - It can handle resampling data in chunks without generating artifacts,
433 * when it doesn't have the complete buffer available.
434 * - It can handle incoming data in any variable size.
435 * - It can handle input/output format changes on the fly.
436 * - It can remap audio channels between inputs and outputs.
437 * - You push data as you have it, and pull it when you need it; the
438 * stream will buffer data as needed.
439 * - It can also function as a basic audio data queue even if you just have
440 * sound that needs to pass from one place to another.
441 * - You can hook callbacks up to them when more data is added or requested,
442 * to manage data on-the-fly.
443 *
444 * Audio streams are the core of the SDL3 audio interface. You create one or
445 * more of them, bind them to an opened audio device, and feed data to them
446 * (or for recording, consume data from them).
447 *
448 * \since This struct is available since SDL 3.2.0.
449 *
450 * \sa SDL_CreateAudioStream
451 */
453
454
455/* Function prototypes */
456
457/**
458 * Use this function to get the number of built-in audio drivers.
459 *
460 * This function returns a hardcoded number. This never returns a negative
461 * value; if there are no drivers compiled into this build of SDL, this
462 * function returns zero. The presence of a driver in this list does not mean
463 * it will function, it just means SDL is capable of interacting with that
464 * interface. For example, a build of SDL might have esound support, but if
465 * there's no esound server available, SDL's esound driver would fail if used.
466 *
467 * By default, SDL tries all drivers, in its preferred order, until one is
468 * found to be usable.
469 *
470 * \returns the number of built-in audio drivers.
471 *
472 * \threadsafety It is safe to call this function from any thread.
473 *
474 * \since This function is available since SDL 3.2.0.
475 *
476 * \sa SDL_GetAudioDriver
477 */
478extern SDL_DECLSPEC int SDLCALL SDL_GetNumAudioDrivers(void);
479
480/**
481 * Use this function to get the name of a built in audio driver.
482 *
483 * The list of audio drivers is given in the order that they are normally
484 * initialized by default; the drivers that seem more reasonable to choose
485 * first (as far as the SDL developers believe) are earlier in the list.
486 *
487 * The names of drivers are all simple, low-ASCII identifiers, like "alsa",
488 * "coreaudio" or "wasapi". These never have Unicode characters, and are not
489 * meant to be proper names.
490 *
491 * \param index the index of the audio driver; the value ranges from 0 to
492 * SDL_GetNumAudioDrivers() - 1.
493 * \returns the name of the audio driver at the requested index, or NULL if an
494 * invalid index was specified.
495 *
496 * \threadsafety It is safe to call this function from any thread.
497 *
498 * \since This function is available since SDL 3.2.0.
499 *
500 * \sa SDL_GetNumAudioDrivers
501 */
502extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioDriver(int index);
503
504/**
505 * Get the name of the current audio driver.
506 *
507 * The names of drivers are all simple, low-ASCII identifiers, like "alsa",
508 * "coreaudio" or "wasapi". These never have Unicode characters, and are not
509 * meant to be proper names.
510 *
511 * \returns the name of the current audio driver or NULL if no driver has been
512 * initialized.
513 *
514 * \threadsafety It is safe to call this function from any thread.
515 *
516 * \since This function is available since SDL 3.2.0.
517 */
518extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentAudioDriver(void);
519
520/**
521 * Get a list of currently-connected audio playback devices.
522 *
523 * This returns of list of available devices that play sound, perhaps to
524 * speakers or headphones ("playback" devices). If you want devices that
525 * record audio, like a microphone ("recording" devices), use
526 * SDL_GetAudioRecordingDevices() instead.
527 *
528 * This only returns a list of physical devices; it will not have any device
529 * IDs returned by SDL_OpenAudioDevice().
530 *
531 * If this function returns NULL, to signify an error, `*count` will be set to
532 * zero.
533 *
534 * \param count a pointer filled in with the number of devices returned, may
535 * be NULL.
536 * \returns a 0 terminated array of device instance IDs or NULL on error; call
537 * SDL_GetError() for more information. This should be freed with
538 * SDL_free() when it is no longer needed.
539 *
540 * \threadsafety It is safe to call this function from any thread.
541 *
542 * \since This function is available since SDL 3.2.0.
543 *
544 * \sa SDL_OpenAudioDevice
545 * \sa SDL_GetAudioRecordingDevices
546 */
547extern SDL_DECLSPEC SDL_AudioDeviceID * SDLCALL SDL_GetAudioPlaybackDevices(int *count);
548
549/**
550 * Get a list of currently-connected audio recording devices.
551 *
552 * This returns of list of available devices that record audio, like a
553 * microphone ("recording" devices). If you want devices that play sound,
554 * perhaps to speakers or headphones ("playback" devices), use
555 * SDL_GetAudioPlaybackDevices() instead.
556 *
557 * This only returns a list of physical devices; it will not have any device
558 * IDs returned by SDL_OpenAudioDevice().
559 *
560 * If this function returns NULL, to signify an error, `*count` will be set to
561 * zero.
562 *
563 * \param count a pointer filled in with the number of devices returned, may
564 * be NULL.
565 * \returns a 0 terminated array of device instance IDs, or NULL on failure;
566 * call SDL_GetError() for more information. This should be freed
567 * with SDL_free() when it is no longer needed.
568 *
569 * \threadsafety It is safe to call this function from any thread.
570 *
571 * \since This function is available since SDL 3.2.0.
572 *
573 * \sa SDL_OpenAudioDevice
574 * \sa SDL_GetAudioPlaybackDevices
575 */
576extern SDL_DECLSPEC SDL_AudioDeviceID * SDLCALL SDL_GetAudioRecordingDevices(int *count);
577
578/**
579 * Get the human-readable name of a specific audio device.
580 *
581 * **WARNING**: this function will work with SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK
582 * and SDL_AUDIO_DEVICE_DEFAULT_RECORDING, returning the current default
583 * physical devices' names. However, as the default device may change at any
584 * time, it is likely better to show a generic name to the user, like "System
585 * default audio device" or perhaps "default [currently %s]". Do not store
586 * this name to disk to reidentify the device in a later run of the program,
587 * as the default might change in general, and the string will be the name of
588 * a specific device and not the abstract system default.
589 *
590 * \param devid the instance ID of the device to query.
591 * \returns the name of the audio device, or NULL on failure; call
592 * SDL_GetError() for more information.
593 *
594 * \threadsafety It is safe to call this function from any thread.
595 *
596 * \since This function is available since SDL 3.2.0.
597 *
598 * \sa SDL_GetAudioPlaybackDevices
599 * \sa SDL_GetAudioRecordingDevices
600 */
601extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioDeviceName(SDL_AudioDeviceID devid);
602
603/**
604 * Get the current audio format of a specific audio device.
605 *
606 * For an opened device, this will report the format the device is currently
607 * using. If the device isn't yet opened, this will report the device's
608 * preferred format (or a reasonable default if this can't be determined).
609 *
610 * You may also specify SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK or
611 * SDL_AUDIO_DEVICE_DEFAULT_RECORDING here, which is useful for getting a
612 * reasonable recommendation before opening the system-recommended default
613 * device.
614 *
615 * You can also use this to request the current device buffer size. This is
616 * specified in sample frames and represents the amount of data SDL will feed
617 * to the physical hardware in each chunk. This can be converted to
618 * milliseconds of audio with the following equation:
619 *
620 * `ms = (int) ((((Sint64) frames) * 1000) / spec.freq);`
621 *
622 * Buffer size is only important if you need low-level control over the audio
623 * playback timing. Most apps do not need this.
624 *
625 * \param devid the instance ID of the device to query.
626 * \param spec on return, will be filled with device details.
627 * \param sample_frames pointer to store device buffer size, in sample frames.
628 * Can be NULL.
629 * \returns true on success or false on failure; call SDL_GetError() for more
630 * information.
631 *
632 * \threadsafety It is safe to call this function from any thread.
633 *
634 * \since This function is available since SDL 3.2.0.
635 */
636extern SDL_DECLSPEC bool SDLCALL SDL_GetAudioDeviceFormat(SDL_AudioDeviceID devid, SDL_AudioSpec *spec, int *sample_frames);
637
638/**
639 * Get the current channel map of an audio device.
640 *
641 * Channel maps are optional; most things do not need them, instead passing
642 * data in the [order that SDL expects](CategoryAudio#channel-layouts).
643 *
644 * Audio devices usually have no remapping applied. This is represented by
645 * returning NULL, and does not signify an error.
646 *
647 * \param devid the instance ID of the device to query.
648 * \param count On output, set to number of channels in the map. Can be NULL.
649 * \returns an array of the current channel mapping, with as many elements as
650 * the current output spec's channels, or NULL if default. This
651 * should be freed with SDL_free() when it is no longer needed.
652 *
653 * \threadsafety It is safe to call this function from any thread.
654 *
655 * \since This function is available since SDL 3.2.0.
656 *
657 * \sa SDL_SetAudioStreamInputChannelMap
658 */
659extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioDeviceChannelMap(SDL_AudioDeviceID devid, int *count);
660
661/**
662 * Open a specific audio device.
663 *
664 * You can open both playback and recording devices through this function.
665 * Playback devices will take data from bound audio streams, mix it, and send
666 * it to the hardware. Recording devices will feed any bound audio streams
667 * with a copy of any incoming data.
668 *
669 * An opened audio device starts out with no audio streams bound. To start
670 * audio playing, bind a stream and supply audio data to it. Unlike SDL2,
671 * there is no audio callback; you only bind audio streams and make sure they
672 * have data flowing into them (however, you can simulate SDL2's semantics
673 * fairly closely by using SDL_OpenAudioDeviceStream instead of this
674 * function).
675 *
676 * If you don't care about opening a specific device, pass a `devid` of either
677 * `SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK` or
678 * `SDL_AUDIO_DEVICE_DEFAULT_RECORDING`. In this case, SDL will try to pick
679 * the most reasonable default, and may also switch between physical devices
680 * seamlessly later, if the most reasonable default changes during the
681 * lifetime of this opened device (user changed the default in the OS's system
682 * preferences, the default got unplugged so the system jumped to a new
683 * default, the user plugged in headphones on a mobile device, etc). Unless
684 * you have a good reason to choose a specific device, this is probably what
685 * you want.
686 *
687 * You may request a specific format for the audio device, but there is no
688 * promise the device will honor that request for several reasons. As such,
689 * it's only meant to be a hint as to what data your app will provide. Audio
690 * streams will accept data in whatever format you specify and manage
691 * conversion for you as appropriate. SDL_GetAudioDeviceFormat can tell you
692 * the preferred format for the device before opening and the actual format
693 * the device is using after opening.
694 *
695 * It's legal to open the same device ID more than once; each successful open
696 * will generate a new logical SDL_AudioDeviceID that is managed separately
697 * from others on the same physical device. This allows libraries to open a
698 * device separately from the main app and bind its own streams without
699 * conflicting.
700 *
701 * It is also legal to open a device ID returned by a previous call to this
702 * function; doing so just creates another logical device on the same physical
703 * device. This may be useful for making logical groupings of audio streams.
704 *
705 * This function returns the opened device ID on success. This is a new,
706 * unique SDL_AudioDeviceID that represents a logical device.
707 *
708 * Some backends might offer arbitrary devices (for example, a networked audio
709 * protocol that can connect to an arbitrary server). For these, as a change
710 * from SDL2, you should open a default device ID and use an SDL hint to
711 * specify the target if you care, or otherwise let the backend figure out a
712 * reasonable default. Most backends don't offer anything like this, and often
713 * this would be an end user setting an environment variable for their custom
714 * need, and not something an application should specifically manage.
715 *
716 * When done with an audio device, possibly at the end of the app's life, one
717 * should call SDL_CloseAudioDevice() on the returned device id.
718 *
719 * \param devid the device instance id to open, or
720 * SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK or
721 * SDL_AUDIO_DEVICE_DEFAULT_RECORDING for the most reasonable
722 * default device.
723 * \param spec the requested device configuration. Can be NULL to use
724 * reasonable defaults.
725 * \returns the device ID on success or 0 on failure; call SDL_GetError() for
726 * more information.
727 *
728 * \threadsafety It is safe to call this function from any thread.
729 *
730 * \since This function is available since SDL 3.2.0.
731 *
732 * \sa SDL_CloseAudioDevice
733 * \sa SDL_GetAudioDeviceFormat
734 */
735extern SDL_DECLSPEC SDL_AudioDeviceID SDLCALL SDL_OpenAudioDevice(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec);
736
737/**
738 * Determine if an audio device is physical (instead of logical).
739 *
740 * An SDL_AudioDeviceID that represents physical hardware is a physical
741 * device; there is one for each piece of hardware that SDL can see. Logical
742 * devices are created by calling SDL_OpenAudioDevice or
743 * SDL_OpenAudioDeviceStream, and while each is associated with a physical
744 * device, there can be any number of logical devices on one physical device.
745 *
746 * For the most part, logical and physical IDs are interchangeable--if you try
747 * to open a logical device, SDL understands to assign that effort to the
748 * underlying physical device, etc. However, it might be useful to know if an
749 * arbitrary device ID is physical or logical. This function reports which.
750 *
751 * This function may return either true or false for invalid device IDs.
752 *
753 * \param devid the device ID to query.
754 * \returns true if devid is a physical device, false if it is logical.
755 *
756 * \threadsafety It is safe to call this function from any thread.
757 *
758 * \since This function is available since SDL 3.2.0.
759 */
760extern SDL_DECLSPEC bool SDLCALL SDL_IsAudioDevicePhysical(SDL_AudioDeviceID devid);
761
762/**
763 * Determine if an audio device is a playback device (instead of recording).
764 *
765 * This function may return either true or false for invalid device IDs.
766 *
767 * \param devid the device ID to query.
768 * \returns true if devid is a playback device, false if it is recording.
769 *
770 * \threadsafety It is safe to call this function from any thread.
771 *
772 * \since This function is available since SDL 3.2.0.
773 */
774extern SDL_DECLSPEC bool SDLCALL SDL_IsAudioDevicePlayback(SDL_AudioDeviceID devid);
775
776/**
777 * Use this function to pause audio playback on a specified device.
778 *
779 * This function pauses audio processing for a given device. Any bound audio
780 * streams will not progress, and no audio will be generated. Pausing one
781 * device does not prevent other unpaused devices from running.
782 *
783 * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app
784 * has to bind a stream before any audio will flow. Pausing a paused device is
785 * a legal no-op.
786 *
787 * Pausing a device can be useful to halt all audio without unbinding all the
788 * audio streams. This might be useful while a game is paused, or a level is
789 * loading, etc.
790 *
791 * Physical devices can not be paused or unpaused, only logical devices
792 * created through SDL_OpenAudioDevice() can be.
793 *
794 * \param devid a device opened by SDL_OpenAudioDevice().
795 * \returns true on success or false on failure; call SDL_GetError() for more
796 * information.
797 *
798 * \threadsafety It is safe to call this function from any thread.
799 *
800 * \since This function is available since SDL 3.2.0.
801 *
802 * \sa SDL_ResumeAudioDevice
803 * \sa SDL_AudioDevicePaused
804 */
805extern SDL_DECLSPEC bool SDLCALL SDL_PauseAudioDevice(SDL_AudioDeviceID devid);
806
807/**
808 * Use this function to unpause audio playback on a specified device.
809 *
810 * This function unpauses audio processing for a given device that has
811 * previously been paused with SDL_PauseAudioDevice(). Once unpaused, any
812 * bound audio streams will begin to progress again, and audio can be
813 * generated.
814 *
815 * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app
816 * has to bind a stream before any audio will flow. Unpausing an unpaused
817 * device is a legal no-op.
818 *
819 * Physical devices can not be paused or unpaused, only logical devices
820 * created through SDL_OpenAudioDevice() can be.
821 *
822 * \param devid a device opened by SDL_OpenAudioDevice().
823 * \returns true on success or false on failure; call SDL_GetError() for more
824 * information.
825 *
826 * \threadsafety It is safe to call this function from any thread.
827 *
828 * \since This function is available since SDL 3.2.0.
829 *
830 * \sa SDL_AudioDevicePaused
831 * \sa SDL_PauseAudioDevice
832 */
833extern SDL_DECLSPEC bool SDLCALL SDL_ResumeAudioDevice(SDL_AudioDeviceID devid);
834
835/**
836 * Use this function to query if an audio device is paused.
837 *
838 * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app
839 * has to bind a stream before any audio will flow.
840 *
841 * Physical devices can not be paused or unpaused, only logical devices
842 * created through SDL_OpenAudioDevice() can be. Physical and invalid device
843 * IDs will report themselves as unpaused here.
844 *
845 * \param devid a device opened by SDL_OpenAudioDevice().
846 * \returns true if device is valid and paused, false otherwise.
847 *
848 * \threadsafety It is safe to call this function from any thread.
849 *
850 * \since This function is available since SDL 3.2.0.
851 *
852 * \sa SDL_PauseAudioDevice
853 * \sa SDL_ResumeAudioDevice
854 */
855extern SDL_DECLSPEC bool SDLCALL SDL_AudioDevicePaused(SDL_AudioDeviceID devid);
856
857/**
858 * Get the gain of an audio device.
859 *
860 * The gain of a device is its volume; a larger gain means a louder output,
861 * with a gain of zero being silence.
862 *
863 * Audio devices default to a gain of 1.0f (no change in output).
864 *
865 * Physical devices may not have their gain changed, only logical devices, and
866 * this function will always return -1.0f when used on physical devices.
867 *
868 * \param devid the audio device to query.
869 * \returns the gain of the device or -1.0f on failure; call SDL_GetError()
870 * for more information.
871 *
872 * \threadsafety It is safe to call this function from any thread.
873 *
874 * \since This function is available since SDL 3.2.0.
875 *
876 * \sa SDL_SetAudioDeviceGain
877 */
878extern SDL_DECLSPEC float SDLCALL SDL_GetAudioDeviceGain(SDL_AudioDeviceID devid);
879
880/**
881 * Change the gain of an audio device.
882 *
883 * The gain of a device is its volume; a larger gain means a louder output,
884 * with a gain of zero being silence.
885 *
886 * Audio devices default to a gain of 1.0f (no change in output).
887 *
888 * Physical devices may not have their gain changed, only logical devices, and
889 * this function will always return false when used on physical devices. While
890 * it might seem attractive to adjust several logical devices at once in this
891 * way, it would allow an app or library to interfere with another portion of
892 * the program's otherwise-isolated devices.
893 *
894 * This is applied, along with any per-audiostream gain, during playback to
895 * the hardware, and can be continuously changed to create various effects. On
896 * recording devices, this will adjust the gain before passing the data into
897 * an audiostream; that recording audiostream can then adjust its gain further
898 * when outputting the data elsewhere, if it likes, but that second gain is
899 * not applied until the data leaves the audiostream again.
900 *
901 * \param devid the audio device on which to change gain.
902 * \param gain the gain. 1.0f is no change, 0.0f is silence.
903 * \returns true on success or false on failure; call SDL_GetError() for more
904 * information.
905 *
906 * \threadsafety It is safe to call this function from any thread, as it holds
907 * a stream-specific mutex while running.
908 *
909 * \since This function is available since SDL 3.2.0.
910 *
911 * \sa SDL_GetAudioDeviceGain
912 */
913extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioDeviceGain(SDL_AudioDeviceID devid, float gain);
914
915/**
916 * Close a previously-opened audio device.
917 *
918 * The application should close open audio devices once they are no longer
919 * needed.
920 *
921 * This function may block briefly while pending audio data is played by the
922 * hardware, so that applications don't drop the last buffer of data they
923 * supplied if terminating immediately afterwards.
924 *
925 * \param devid an audio device id previously returned by
926 * SDL_OpenAudioDevice().
927 *
928 * \threadsafety It is safe to call this function from any thread.
929 *
930 * \since This function is available since SDL 3.2.0.
931 *
932 * \sa SDL_OpenAudioDevice
933 */
934extern SDL_DECLSPEC void SDLCALL SDL_CloseAudioDevice(SDL_AudioDeviceID devid);
935
936/**
937 * Bind a list of audio streams to an audio device.
938 *
939 * Audio data will flow through any bound streams. For a playback device, data
940 * for all bound streams will be mixed together and fed to the device. For a
941 * recording device, a copy of recorded data will be provided to each bound
942 * stream.
943 *
944 * Audio streams can only be bound to an open device. This operation is
945 * atomic--all streams bound in the same call will start processing at the
946 * same time, so they can stay in sync. Also: either all streams will be bound
947 * or none of them will be.
948 *
949 * It is an error to bind an already-bound stream; it must be explicitly
950 * unbound first.
951 *
952 * Binding a stream to a device will set its output format for playback
953 * devices, and its input format for recording devices, so they match the
954 * device's settings. The caller is welcome to change the other end of the
955 * stream's format at any time with SDL_SetAudioStreamFormat(). If the other
956 * end of the stream's format has never been set (the audio stream was created
957 * with a NULL audio spec), this function will set it to match the device
958 * end's format.
959 *
960 * \param devid an audio device to bind a stream to.
961 * \param streams an array of audio streams to bind.
962 * \param num_streams number streams listed in the `streams` array.
963 * \returns true on success or false on failure; call SDL_GetError() for more
964 * information.
965 *
966 * \threadsafety It is safe to call this function from any thread.
967 *
968 * \since This function is available since SDL 3.2.0.
969 *
970 * \sa SDL_BindAudioStreams
971 * \sa SDL_UnbindAudioStream
972 * \sa SDL_GetAudioStreamDevice
973 */
974extern SDL_DECLSPEC bool SDLCALL SDL_BindAudioStreams(SDL_AudioDeviceID devid, SDL_AudioStream * const *streams, int num_streams);
975
976/**
977 * Bind a single audio stream to an audio device.
978 *
979 * This is a convenience function, equivalent to calling
980 * `SDL_BindAudioStreams(devid, &stream, 1)`.
981 *
982 * \param devid an audio device to bind a stream to.
983 * \param stream an audio stream to bind to a device.
984 * \returns true on success or false on failure; call SDL_GetError() for more
985 * information.
986 *
987 * \threadsafety It is safe to call this function from any thread.
988 *
989 * \since This function is available since SDL 3.2.0.
990 *
991 * \sa SDL_BindAudioStreams
992 * \sa SDL_UnbindAudioStream
993 * \sa SDL_GetAudioStreamDevice
994 */
995extern SDL_DECLSPEC bool SDLCALL SDL_BindAudioStream(SDL_AudioDeviceID devid, SDL_AudioStream *stream);
996
997/**
998 * Unbind a list of audio streams from their audio devices.
999 *
1000 * The streams being unbound do not all have to be on the same device. All
1001 * streams on the same device will be unbound atomically (data will stop
1002 * flowing through all unbound streams on the same device at the same time).
1003 *
1004 * Unbinding a stream that isn't bound to a device is a legal no-op.
1005 *
1006 * \param streams an array of audio streams to unbind. Can be NULL or contain
1007 * NULL.
1008 * \param num_streams number streams listed in the `streams` array.
1009 *
1010 * \threadsafety It is safe to call this function from any thread.
1011 *
1012 * \since This function is available since SDL 3.2.0.
1013 *
1014 * \sa SDL_BindAudioStreams
1015 */
1016extern SDL_DECLSPEC void SDLCALL SDL_UnbindAudioStreams(SDL_AudioStream * const *streams, int num_streams);
1017
1018/**
1019 * Unbind a single audio stream from its audio device.
1020 *
1021 * This is a convenience function, equivalent to calling
1022 * `SDL_UnbindAudioStreams(&stream, 1)`.
1023 *
1024 * \param stream an audio stream to unbind from a device. Can be NULL.
1025 *
1026 * \threadsafety It is safe to call this function from any thread.
1027 *
1028 * \since This function is available since SDL 3.2.0.
1029 *
1030 * \sa SDL_BindAudioStream
1031 */
1032extern SDL_DECLSPEC void SDLCALL SDL_UnbindAudioStream(SDL_AudioStream *stream);
1033
1034/**
1035 * Query an audio stream for its currently-bound device.
1036 *
1037 * This reports the logical audio device that an audio stream is currently
1038 * bound to.
1039 *
1040 * If not bound, or invalid, this returns zero, which is not a valid device
1041 * ID.
1042 *
1043 * \param stream the audio stream to query.
1044 * \returns the bound audio device, or 0 if not bound or invalid.
1045 *
1046 * \threadsafety It is safe to call this function from any thread.
1047 *
1048 * \since This function is available since SDL 3.2.0.
1049 *
1050 * \sa SDL_BindAudioStream
1051 * \sa SDL_BindAudioStreams
1052 */
1054
1055/**
1056 * Create a new audio stream.
1057 *
1058 * Note that `src_spec` or `dst_spec` may be NULL, but any attempts to
1059 * put or get data from an audio stream will fail until it has valid
1060 * specs assigned to both ends of the stream. Specs can be assigned later
1061 * through SDL_SetAudioStreamFormat(), or binding the stream to an audio
1062 * device (which will set the format of only the input or output,
1063 * depending on what kind of device the stream was bound to).
1064 *
1065 * \param src_spec the format details of the input audio. May be NULL.
1066 * \param dst_spec the format details of the output audio. May be NULL.
1067 * \returns a new audio stream on success or NULL on failure; call
1068 * SDL_GetError() for more information.
1069 *
1070 * \threadsafety It is safe to call this function from any thread.
1071 *
1072 * \since This function is available since SDL 3.2.0.
1073 *
1074 * \sa SDL_PutAudioStreamData
1075 * \sa SDL_GetAudioStreamData
1076 * \sa SDL_GetAudioStreamAvailable
1077 * \sa SDL_FlushAudioStream
1078 * \sa SDL_ClearAudioStream
1079 * \sa SDL_SetAudioStreamFormat
1080 * \sa SDL_DestroyAudioStream
1081 */
1082extern SDL_DECLSPEC SDL_AudioStream * SDLCALL SDL_CreateAudioStream(const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec);
1083
1084/**
1085 * Get the properties associated with an audio stream.
1086 *
1087 * The application can hang any data it wants here, but the following
1088 * properties are understood by SDL:
1089 *
1090 * - `SDL_PROP_AUDIOSTREAM_AUTO_CLEANUP_BOOLEAN`: if true (the default), the
1091 * stream be automatically cleaned up when the audio subsystem quits. If set
1092 * to false, the streams will persist beyond that. This property is ignored
1093 * for streams created through SDL_OpenAudioDeviceStream(), and will always
1094 * be cleaned up. Streams that are not cleaned up will still be unbound from
1095 * devices when the audio subsystem quits. This property was added in SDL
1096 * 3.4.0.
1097 *
1098 * \param stream the SDL_AudioStream to query.
1099 * \returns a valid property ID on success or 0 on failure; call
1100 * SDL_GetError() for more information.
1101 *
1102 * \threadsafety It is safe to call this function from any thread.
1103 *
1104 * \since This function is available since SDL 3.2.0.
1105 */
1107
1108#define SDL_PROP_AUDIOSTREAM_AUTO_CLEANUP_BOOLEAN "SDL.audiostream.auto_cleanup"
1109
1110
1111/**
1112 * Query the current format of an audio stream.
1113 *
1114 * \param stream the SDL_AudioStream to query.
1115 * \param src_spec where to store the input audio format; ignored if NULL.
1116 * \param dst_spec where to store the output audio format; ignored if NULL.
1117 * \returns true on success or false on failure; call SDL_GetError() for more
1118 * information.
1119 *
1120 * \threadsafety It is safe to call this function from any thread, as it holds
1121 * a stream-specific mutex while running.
1122 *
1123 * \since This function is available since SDL 3.2.0.
1124 *
1125 * \sa SDL_SetAudioStreamFormat
1126 */
1127extern SDL_DECLSPEC bool SDLCALL SDL_GetAudioStreamFormat(SDL_AudioStream *stream, SDL_AudioSpec *src_spec, SDL_AudioSpec *dst_spec);
1128
1129/**
1130 * Change the input and output formats of an audio stream.
1131 *
1132 * Future calls to and SDL_GetAudioStreamAvailable and SDL_GetAudioStreamData
1133 * will reflect the new format, and future calls to SDL_PutAudioStreamData
1134 * must provide data in the new input formats.
1135 *
1136 * Data that was previously queued in the stream will still be operated on in
1137 * the format that was current when it was added, which is to say you can put
1138 * the end of a sound file in one format to a stream, change formats for the
1139 * next sound file, and start putting that new data while the previous sound
1140 * file is still queued, and everything will still play back correctly.
1141 *
1142 * If a stream is bound to a device, then the format of the side of the stream
1143 * bound to a device cannot be changed (src_spec for recording devices,
1144 * dst_spec for playback devices). Attempts to make a change to this side will
1145 * be ignored, but this will not report an error. The other side's format can
1146 * be changed.
1147 *
1148 * `src_spec` and `dst_spec` may each be NULL; a NULL spec signals not to
1149 * change the current format for that side of the stream.
1150 *
1151 * \param stream the stream the format is being changed.
1152 * \param src_spec the new format of the audio input; if NULL, it is not
1153 * changed.
1154 * \param dst_spec the new format of the audio output; if NULL, it is not
1155 * changed.
1156 * \returns true on success or false on failure; call SDL_GetError() for more
1157 * information.
1158 *
1159 * \threadsafety It is safe to call this function from any thread, as it holds
1160 * a stream-specific mutex while running.
1161 *
1162 * \since This function is available since SDL 3.2.0.
1163 *
1164 * \sa SDL_GetAudioStreamFormat
1165 * \sa SDL_SetAudioStreamFrequencyRatio
1166 */
1167extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamFormat(SDL_AudioStream *stream, const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec);
1168
1169/**
1170 * Get the frequency ratio of an audio stream.
1171 *
1172 * \param stream the SDL_AudioStream to query.
1173 * \returns the frequency ratio of the stream or 0.0 on failure; call
1174 * SDL_GetError() for more information.
1175 *
1176 * \threadsafety It is safe to call this function from any thread, as it holds
1177 * a stream-specific mutex while running.
1178 *
1179 * \since This function is available since SDL 3.2.0.
1180 *
1181 * \sa SDL_SetAudioStreamFrequencyRatio
1182 */
1183extern SDL_DECLSPEC float SDLCALL SDL_GetAudioStreamFrequencyRatio(SDL_AudioStream *stream);
1184
1185/**
1186 * Change the frequency ratio of an audio stream.
1187 *
1188 * The frequency ratio is used to adjust the rate at which input data is
1189 * consumed. Changing this effectively modifies the speed and pitch of the
1190 * audio. A value greater than 1.0f will play the audio faster, and at a
1191 * higher pitch. A value less than 1.0f will play the audio slower, and at a
1192 * lower pitch. 1.0f means play at normal speed.
1193 *
1194 * This is applied during SDL_GetAudioStreamData, and can be continuously
1195 * changed to create various effects.
1196 *
1197 * \param stream the stream on which the frequency ratio is being changed.
1198 * \param ratio the frequency ratio. 1.0 is normal speed. Must be between 0.01
1199 * and 100.
1200 * \returns true on success or false on failure; call SDL_GetError() for more
1201 * information.
1202 *
1203 * \threadsafety It is safe to call this function from any thread, as it holds
1204 * a stream-specific mutex while running.
1205 *
1206 * \since This function is available since SDL 3.2.0.
1207 *
1208 * \sa SDL_GetAudioStreamFrequencyRatio
1209 * \sa SDL_SetAudioStreamFormat
1210 */
1211extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamFrequencyRatio(SDL_AudioStream *stream, float ratio);
1212
1213/**
1214 * Get the gain of an audio stream.
1215 *
1216 * The gain of a stream is its volume; a larger gain means a louder output,
1217 * with a gain of zero being silence.
1218 *
1219 * Audio streams default to a gain of 1.0f (no change in output).
1220 *
1221 * \param stream the SDL_AudioStream to query.
1222 * \returns the gain of the stream or -1.0f on failure; call SDL_GetError()
1223 * for more information.
1224 *
1225 * \threadsafety It is safe to call this function from any thread, as it holds
1226 * a stream-specific mutex while running.
1227 *
1228 * \since This function is available since SDL 3.2.0.
1229 *
1230 * \sa SDL_SetAudioStreamGain
1231 */
1232extern SDL_DECLSPEC float SDLCALL SDL_GetAudioStreamGain(SDL_AudioStream *stream);
1233
1234/**
1235 * Change the gain of an audio stream.
1236 *
1237 * The gain of a stream is its volume; a larger gain means a louder output,
1238 * with a gain of zero being silence.
1239 *
1240 * Audio streams default to a gain of 1.0f (no change in output).
1241 *
1242 * This is applied during SDL_GetAudioStreamData, and can be continuously
1243 * changed to create various effects.
1244 *
1245 * \param stream the stream on which the gain is being changed.
1246 * \param gain the gain. 1.0f is no change, 0.0f is silence.
1247 * \returns true on success or false on failure; call SDL_GetError() for more
1248 * information.
1249 *
1250 * \threadsafety It is safe to call this function from any thread, as it holds
1251 * a stream-specific mutex while running.
1252 *
1253 * \since This function is available since SDL 3.2.0.
1254 *
1255 * \sa SDL_GetAudioStreamGain
1256 */
1257extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamGain(SDL_AudioStream *stream, float gain);
1258
1259/**
1260 * Get the current input channel map of an audio stream.
1261 *
1262 * Channel maps are optional; most things do not need them, instead passing
1263 * data in the [order that SDL expects](CategoryAudio#channel-layouts).
1264 *
1265 * Audio streams default to no remapping applied. This is represented by
1266 * returning NULL, and does not signify an error.
1267 *
1268 * \param stream the SDL_AudioStream to query.
1269 * \param count On output, set to number of channels in the map. Can be NULL.
1270 * \returns an array of the current channel mapping, with as many elements as
1271 * the current output spec's channels, or NULL if default. This
1272 * should be freed with SDL_free() when it is no longer needed.
1273 *
1274 * \threadsafety It is safe to call this function from any thread, as it holds
1275 * a stream-specific mutex while running.
1276 *
1277 * \since This function is available since SDL 3.2.0.
1278 *
1279 * \sa SDL_SetAudioStreamInputChannelMap
1280 */
1281extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioStreamInputChannelMap(SDL_AudioStream *stream, int *count);
1282
1283/**
1284 * Get the current output channel map of an audio stream.
1285 *
1286 * Channel maps are optional; most things do not need them, instead passing
1287 * data in the [order that SDL expects](CategoryAudio#channel-layouts).
1288 *
1289 * Audio streams default to no remapping applied. This is represented by
1290 * returning NULL, and does not signify an error.
1291 *
1292 * \param stream the SDL_AudioStream to query.
1293 * \param count On output, set to number of channels in the map. Can be NULL.
1294 * \returns an array of the current channel mapping, with as many elements as
1295 * the current output spec's channels, or NULL if default. This
1296 * should be freed with SDL_free() when it is no longer needed.
1297 *
1298 * \threadsafety It is safe to call this function from any thread, as it holds
1299 * a stream-specific mutex while running.
1300 *
1301 * \since This function is available since SDL 3.2.0.
1302 *
1303 * \sa SDL_SetAudioStreamInputChannelMap
1304 */
1305extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioStreamOutputChannelMap(SDL_AudioStream *stream, int *count);
1306
1307/**
1308 * Set the current input channel map of an audio stream.
1309 *
1310 * Channel maps are optional; most things do not need them, instead passing
1311 * data in the [order that SDL expects](CategoryAudio#channel-layouts).
1312 *
1313 * The input channel map reorders data that is added to a stream via
1314 * SDL_PutAudioStreamData. Future calls to SDL_PutAudioStreamData must provide
1315 * data in the new channel order.
1316 *
1317 * Each item in the array represents an input channel, and its value is the
1318 * channel that it should be remapped to. To reverse a stereo signal's left
1319 * and right values, you'd have an array of `{ 1, 0 }`. It is legal to remap
1320 * multiple channels to the same thing, so `{ 1, 1 }` would duplicate the
1321 * right channel to both channels of a stereo signal. An element in the
1322 * channel map set to -1 instead of a valid channel will mute that channel,
1323 * setting it to a silence value.
1324 *
1325 * You cannot change the number of channels through a channel map, just
1326 * reorder/mute them.
1327 *
1328 * Data that was previously queued in the stream will still be operated on in
1329 * the order that was current when it was added, which is to say you can put
1330 * the end of a sound file in one order to a stream, change orders for the
1331 * next sound file, and start putting that new data while the previous sound
1332 * file is still queued, and everything will still play back correctly.
1333 *
1334 * Audio streams default to no remapping applied. Passing a NULL channel map
1335 * is legal, and turns off remapping.
1336 *
1337 * SDL will copy the channel map; the caller does not have to save this array
1338 * after this call.
1339 *
1340 * If `count` is not equal to the current number of channels in the audio
1341 * stream's format, this will fail. This is a safety measure to make sure a
1342 * race condition hasn't changed the format while this call is setting the
1343 * channel map.
1344 *
1345 * Unlike attempting to change the stream's format, the input channel map on a
1346 * stream bound to a recording device is permitted to change at any time; any
1347 * data added to the stream from the device after this call will have the new
1348 * mapping, but previously-added data will still have the prior mapping.
1349 *
1350 * \param stream the SDL_AudioStream to change.
1351 * \param chmap the new channel map, NULL to reset to default.
1352 * \param count The number of channels in the map.
1353 * \returns true on success or false on failure; call SDL_GetError() for more
1354 * information.
1355 *
1356 * \threadsafety It is safe to call this function from any thread, as it holds
1357 * a stream-specific mutex while running. Don't change the
1358 * stream's format to have a different number of channels from a
1359 * different thread at the same time, though!
1360 *
1361 * \since This function is available since SDL 3.2.0.
1362 *
1363 * \sa SDL_SetAudioStreamOutputChannelMap
1364 */
1365extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamInputChannelMap(SDL_AudioStream *stream, const int *chmap, int count);
1366
1367/**
1368 * Set the current output channel map of an audio stream.
1369 *
1370 * Channel maps are optional; most things do not need them, instead passing
1371 * data in the [order that SDL expects](CategoryAudio#channel-layouts).
1372 *
1373 * The output channel map reorders data that is leaving a stream via
1374 * SDL_GetAudioStreamData.
1375 *
1376 * Each item in the array represents an input channel, and its value is the
1377 * channel that it should be remapped to. To reverse a stereo signal's left
1378 * and right values, you'd have an array of `{ 1, 0 }`. It is legal to remap
1379 * multiple channels to the same thing, so `{ 1, 1 }` would duplicate the
1380 * right channel to both channels of a stereo signal. An element in the
1381 * channel map set to -1 instead of a valid channel will mute that channel,
1382 * setting it to a silence value.
1383 *
1384 * You cannot change the number of channels through a channel map, just
1385 * reorder/mute them.
1386 *
1387 * The output channel map can be changed at any time, as output remapping is
1388 * applied during SDL_GetAudioStreamData.
1389 *
1390 * Audio streams default to no remapping applied. Passing a NULL channel map
1391 * is legal, and turns off remapping.
1392 *
1393 * SDL will copy the channel map; the caller does not have to save this array
1394 * after this call.
1395 *
1396 * If `count` is not equal to the current number of channels in the audio
1397 * stream's format, this will fail. This is a safety measure to make sure a
1398 * race condition hasn't changed the format while this call is setting the
1399 * channel map.
1400 *
1401 * Unlike attempting to change the stream's format, the output channel map on
1402 * a stream bound to a recording device is permitted to change at any time;
1403 * any data added to the stream after this call will have the new mapping, but
1404 * previously-added data will still have the prior mapping. When the channel
1405 * map doesn't match the hardware's channel layout, SDL will convert the data
1406 * before feeding it to the device for playback.
1407 *
1408 * \param stream the SDL_AudioStream to change.
1409 * \param chmap the new channel map, NULL to reset to default.
1410 * \param count The number of channels in the map.
1411 * \returns true on success or false on failure; call SDL_GetError() for more
1412 * information.
1413 *
1414 * \threadsafety It is safe to call this function from any thread, as it holds
1415 * a stream-specific mutex while running. Don't change the
1416 * stream's format to have a different number of channels from a
1417 * a different thread at the same time, though!
1418 *
1419 * \since This function is available since SDL 3.2.0.
1420 *
1421 * \sa SDL_SetAudioStreamInputChannelMap
1422 */
1423extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamOutputChannelMap(SDL_AudioStream *stream, const int *chmap, int count);
1424
1425/**
1426 * Add data to the stream.
1427 *
1428 * This data must match the format/channels/samplerate specified in the latest
1429 * call to SDL_SetAudioStreamFormat, or the format specified when creating the
1430 * stream if it hasn't been changed.
1431 *
1432 * Note that this call simply copies the unconverted data for later. This is
1433 * different than SDL2, where data was converted during the Put call and the
1434 * Get call would just dequeue the previously-converted data.
1435 *
1436 * \param stream the stream the audio data is being added to.
1437 * \param buf a pointer to the audio data to add.
1438 * \param len the number of bytes to write to the stream.
1439 * \returns true on success or false on failure; call SDL_GetError() for more
1440 * information.
1441 *
1442 * \threadsafety It is safe to call this function from any thread, but if the
1443 * stream has a callback set, the caller might need to manage
1444 * extra locking.
1445 *
1446 * \since This function is available since SDL 3.2.0.
1447 *
1448 * \sa SDL_ClearAudioStream
1449 * \sa SDL_FlushAudioStream
1450 * \sa SDL_GetAudioStreamData
1451 * \sa SDL_GetAudioStreamQueued
1452 */
1453extern SDL_DECLSPEC bool SDLCALL SDL_PutAudioStreamData(SDL_AudioStream *stream, const void *buf, int len);
1454
1455/**
1456 * A callback that fires for completed SDL_PutAudioStreamDataNoCopy() data.
1457 *
1458 * When using SDL_PutAudioStreamDataNoCopy() to provide data to an
1459 * SDL_AudioStream, it's not safe to dispose of the data until the stream has
1460 * completely consumed it. Often times it's difficult to know exactly when
1461 * this has happened.
1462 *
1463 * This callback fires once when the stream no longer needs the buffer,
1464 * allowing the app to easily free or reuse it.
1465 *
1466 * \param userdata an opaque pointer provided by the app for their personal
1467 * use.
1468 * \param buf the pointer provided to SDL_PutAudioStreamDataNoCopy().
1469 * \param buflen the size of buffer, in bytes, provided to
1470 * SDL_PutAudioStreamDataNoCopy().
1471 *
1472 * \threadsafety This callbacks may run from any thread, so if you need to
1473 * protect shared data, you should use SDL_LockAudioStream to
1474 * serialize access; this lock will be held before your callback
1475 * is called, so your callback does not need to manage the lock
1476 * explicitly.
1477 *
1478 * \since This datatype is available since SDL 3.4.0.
1479 *
1480 * \sa SDL_SetAudioStreamGetCallback
1481 * \sa SDL_SetAudioStreamPutCallback
1482 */
1483typedef void (SDLCALL *SDL_AudioStreamDataCompleteCallback)(void *userdata, const void *buf, int buflen);
1484
1485/**
1486 * Add external data to an audio stream without copying it.
1487 *
1488 * Unlike SDL_PutAudioStreamData(), this function does not make a copy of the
1489 * provided data, instead storing the provided pointer. This means that the
1490 * put operation does not need to allocate and copy the data, but the original
1491 * data must remain available until the stream is done with it, either by
1492 * being read from the stream in its entirety, or a call to
1493 * SDL_ClearAudioStream() or SDL_DestroyAudioStream().
1494 *
1495 * The data must match the format/channels/samplerate specified in the latest
1496 * call to SDL_SetAudioStreamFormat, or the format specified when creating the
1497 * stream if it hasn't been changed.
1498 *
1499 * An optional callback may be provided, which is called when the stream no
1500 * longer needs the data. Once this callback fires, the stream will not access
1501 * the data again. This callback will fire for any reason the data is no
1502 * longer needed, including clearing or destroying the stream.
1503 *
1504 * Note that there is still an allocation to store tracking information, so
1505 * this function is more efficient for larger blocks of data. If you're
1506 * planning to put a few samples at a time, it will be more efficient to use
1507 * SDL_PutAudioStreamData(), which allocates and buffers in blocks.
1508 *
1509 * \param stream the stream the audio data is being added to.
1510 * \param buf a pointer to the audio data to add.
1511 * \param len the number of bytes to add to the stream.
1512 * \param callback the callback function to call when the data is no longer
1513 * needed by the stream. May be NULL.
1514 * \param userdata an opaque pointer provided to the callback for its own
1515 * personal use.
1516 * \returns true on success or false on failure; call SDL_GetError() for more
1517 * information.
1518 *
1519 * \threadsafety It is safe to call this function from any thread, but if the
1520 * stream has a callback set, the caller might need to manage
1521 * extra locking.
1522 *
1523 * \since This function is available since SDL 3.4.0.
1524 *
1525 * \sa SDL_ClearAudioStream
1526 * \sa SDL_FlushAudioStream
1527 * \sa SDL_GetAudioStreamData
1528 * \sa SDL_GetAudioStreamQueued
1529 */
1530extern SDL_DECLSPEC bool SDLCALL SDL_PutAudioStreamDataNoCopy(SDL_AudioStream *stream, const void *buf, int len, SDL_AudioStreamDataCompleteCallback callback, void *userdata);
1531
1532/**
1533 * Add data to the stream with each channel in a separate array.
1534 *
1535 * This data must match the format/channels/samplerate specified in the latest
1536 * call to SDL_SetAudioStreamFormat, or the format specified when creating the
1537 * stream if it hasn't been changed.
1538 *
1539 * The data will be interleaved and queued. Note that SDL_AudioStream only
1540 * operates on interleaved data, so this is simply a convenience function for
1541 * easily queueing data from sources that provide separate arrays. There is no
1542 * equivalent function to retrieve planar data.
1543 *
1544 * The arrays in `channel_buffers` are ordered as they are to be interleaved;
1545 * the first array will be the first sample in the interleaved data. Any
1546 * individual array may be NULL; in this case, silence will be interleaved for
1547 * that channel.
1548 *
1549 * `num_channels` specifies how many arrays are in `channel_buffers`. This can
1550 * be used as a safety to prevent overflow, in case the stream format has
1551 * changed elsewhere. If more channels are specified than the current input
1552 * spec, they are ignored. If less channels are specified, the missing arrays
1553 * are treated as if they are NULL (silence is written to those channels). If
1554 * the count is -1, SDL will assume the array count matches the current input
1555 * spec.
1556 *
1557 * Note that `num_samples` is the number of _samples per array_. This can also
1558 * be thought of as the number of _sample frames_ to be queued. A value of 1
1559 * with stereo arrays will queue two samples to the stream. This is different
1560 * than SDL_PutAudioStreamData, which wants the size of a single array in
1561 * bytes.
1562 *
1563 * \param stream the stream the audio data is being added to.
1564 * \param channel_buffers a pointer to an array of arrays, one array per
1565 * channel.
1566 * \param num_channels the number of arrays in `channel_buffers` or -1.
1567 * \param num_samples the number of _samples_ per array to write to the
1568 * stream.
1569 * \returns true on success or false on failure; call SDL_GetError() for more
1570 * information.
1571 *
1572 * \threadsafety It is safe to call this function from any thread, but if the
1573 * stream has a callback set, the caller might need to manage
1574 * extra locking.
1575 *
1576 * \since This function is available since SDL 3.4.0.
1577 *
1578 * \sa SDL_ClearAudioStream
1579 * \sa SDL_FlushAudioStream
1580 * \sa SDL_GetAudioStreamData
1581 * \sa SDL_GetAudioStreamQueued
1582 */
1583extern SDL_DECLSPEC bool SDLCALL SDL_PutAudioStreamPlanarData(SDL_AudioStream *stream, const void * const *channel_buffers, int num_channels, int num_samples);
1584
1585/**
1586 * Get converted/resampled data from the stream.
1587 *
1588 * The input/output data format/channels/samplerate is specified when creating
1589 * the stream, and can be changed after creation by calling
1590 * SDL_SetAudioStreamFormat.
1591 *
1592 * Note that any conversion and resampling necessary is done during this call,
1593 * and SDL_PutAudioStreamData simply queues unconverted data for later. This
1594 * is different than SDL2, where that work was done while inputting new data
1595 * to the stream and requesting the output just copied the converted data.
1596 *
1597 * \param stream the stream the audio is being requested from.
1598 * \param buf a buffer to fill with audio data.
1599 * \param len the maximum number of bytes to fill.
1600 * \returns the number of bytes read from the stream or -1 on failure; call
1601 * SDL_GetError() for more information.
1602 *
1603 * \threadsafety It is safe to call this function from any thread, but if the
1604 * stream has a callback set, the caller might need to manage
1605 * extra locking.
1606 *
1607 * \since This function is available since SDL 3.2.0.
1608 *
1609 * \sa SDL_ClearAudioStream
1610 * \sa SDL_GetAudioStreamAvailable
1611 * \sa SDL_PutAudioStreamData
1612 */
1613extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamData(SDL_AudioStream *stream, void *buf, int len);
1614
1615/**
1616 * Get the number of converted/resampled bytes available.
1617 *
1618 * The stream may be buffering data behind the scenes until it has enough to
1619 * resample correctly, so this number might be lower than what you expect, or
1620 * even be zero. Add more data or flush the stream if you need the data now.
1621 *
1622 * If the stream has so much data that it would overflow an int, the return
1623 * value is clamped to a maximum value, but no queued data is lost; if there
1624 * are gigabytes of data queued, the app might need to read some of it with
1625 * SDL_GetAudioStreamData before this function's return value is no longer
1626 * clamped.
1627 *
1628 * \param stream the audio stream to query.
1629 * \returns the number of converted/resampled bytes available or -1 on
1630 * failure; call SDL_GetError() for more information.
1631 *
1632 * \threadsafety It is safe to call this function from any thread.
1633 *
1634 * \since This function is available since SDL 3.2.0.
1635 *
1636 * \sa SDL_GetAudioStreamData
1637 * \sa SDL_PutAudioStreamData
1638 */
1639extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamAvailable(SDL_AudioStream *stream);
1640
1641
1642/**
1643 * Get the number of bytes currently queued.
1644 *
1645 * This is the number of bytes put into a stream as input, not the number that
1646 * can be retrieved as output. Because of several details, it's not possible
1647 * to calculate one number directly from the other. If you need to know how
1648 * much usable data can be retrieved right now, you should use
1649 * SDL_GetAudioStreamAvailable() and not this function.
1650 *
1651 * Note that audio streams can change their input format at any time, even if
1652 * there is still data queued in a different format, so the returned byte
1653 * count will not necessarily match the number of _sample frames_ available.
1654 * Users of this API should be aware of format changes they make when feeding
1655 * a stream and plan accordingly.
1656 *
1657 * Queued data is not converted until it is consumed by
1658 * SDL_GetAudioStreamData, so this value should be representative of the exact
1659 * data that was put into the stream.
1660 *
1661 * If the stream has so much data that it would overflow an int, the return
1662 * value is clamped to a maximum value, but no queued data is lost; if there
1663 * are gigabytes of data queued, the app might need to read some of it with
1664 * SDL_GetAudioStreamData before this function's return value is no longer
1665 * clamped.
1666 *
1667 * \param stream the audio stream to query.
1668 * \returns the number of bytes queued or -1 on failure; call SDL_GetError()
1669 * for more information.
1670 *
1671 * \threadsafety It is safe to call this function from any thread.
1672 *
1673 * \since This function is available since SDL 3.2.0.
1674 *
1675 * \sa SDL_PutAudioStreamData
1676 * \sa SDL_ClearAudioStream
1677 */
1678extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamQueued(SDL_AudioStream *stream);
1679
1680
1681/**
1682 * Tell the stream that you're done sending data, and anything being buffered
1683 * should be converted/resampled and made available immediately.
1684 *
1685 * It is legal to add more data to a stream after flushing, but there may be
1686 * audio gaps in the output. Generally this is intended to signal the end of
1687 * input, so the complete output becomes available.
1688 *
1689 * \param stream the audio stream to flush.
1690 * \returns true on success or false on failure; call SDL_GetError() for more
1691 * information.
1692 *
1693 * \threadsafety It is safe to call this function from any thread.
1694 *
1695 * \since This function is available since SDL 3.2.0.
1696 *
1697 * \sa SDL_PutAudioStreamData
1698 */
1699extern SDL_DECLSPEC bool SDLCALL SDL_FlushAudioStream(SDL_AudioStream *stream);
1700
1701/**
1702 * Clear any pending data in the stream.
1703 *
1704 * This drops any queued data, so there will be nothing to read from the
1705 * stream until more is added.
1706 *
1707 * \param stream the audio stream to clear.
1708 * \returns true on success or false on failure; call SDL_GetError() for more
1709 * information.
1710 *
1711 * \threadsafety It is safe to call this function from any thread.
1712 *
1713 * \since This function is available since SDL 3.2.0.
1714 *
1715 * \sa SDL_GetAudioStreamAvailable
1716 * \sa SDL_GetAudioStreamData
1717 * \sa SDL_GetAudioStreamQueued
1718 * \sa SDL_PutAudioStreamData
1719 */
1720extern SDL_DECLSPEC bool SDLCALL SDL_ClearAudioStream(SDL_AudioStream *stream);
1721
1722/**
1723 * Use this function to pause audio playback on the audio device associated
1724 * with an audio stream.
1725 *
1726 * This function pauses audio processing for a given device. Any bound audio
1727 * streams will not progress, and no audio will be generated. Pausing one
1728 * device does not prevent other unpaused devices from running.
1729 *
1730 * Pausing a device can be useful to halt all audio without unbinding all the
1731 * audio streams. This might be useful while a game is paused, or a level is
1732 * loading, etc.
1733 *
1734 * \param stream the audio stream associated with the audio device to pause.
1735 * \returns true on success or false on failure; call SDL_GetError() for more
1736 * information.
1737 *
1738 * \threadsafety It is safe to call this function from any thread.
1739 *
1740 * \since This function is available since SDL 3.2.0.
1741 *
1742 * \sa SDL_ResumeAudioStreamDevice
1743 */
1744extern SDL_DECLSPEC bool SDLCALL SDL_PauseAudioStreamDevice(SDL_AudioStream *stream);
1745
1746/**
1747 * Use this function to unpause audio playback on the audio device associated
1748 * with an audio stream.
1749 *
1750 * This function unpauses audio processing for a given device that has
1751 * previously been paused. Once unpaused, any bound audio streams will begin
1752 * to progress again, and audio can be generated.
1753 *
1754 * SDL_OpenAudioDeviceStream opens audio devices in a paused state, so this
1755 * function call is required for audio playback to begin on such devices.
1756 *
1757 * \param stream the audio stream associated with the audio device to resume.
1758 * \returns true on success or false on failure; call SDL_GetError() for more
1759 * information.
1760 *
1761 * \threadsafety It is safe to call this function from any thread.
1762 *
1763 * \since This function is available since SDL 3.2.0.
1764 *
1765 * \sa SDL_PauseAudioStreamDevice
1766 */
1767extern SDL_DECLSPEC bool SDLCALL SDL_ResumeAudioStreamDevice(SDL_AudioStream *stream);
1768
1769/**
1770 * Use this function to query if an audio device associated with a stream is
1771 * paused.
1772 *
1773 * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app
1774 * has to bind a stream before any audio will flow.
1775 *
1776 * \param stream the audio stream associated with the audio device to query.
1777 * \returns true if device is valid and paused, false otherwise.
1778 *
1779 * \threadsafety It is safe to call this function from any thread.
1780 *
1781 * \since This function is available since SDL 3.2.0.
1782 *
1783 * \sa SDL_PauseAudioStreamDevice
1784 * \sa SDL_ResumeAudioStreamDevice
1785 */
1786extern SDL_DECLSPEC bool SDLCALL SDL_AudioStreamDevicePaused(SDL_AudioStream *stream);
1787
1788
1789/**
1790 * Lock an audio stream for serialized access.
1791 *
1792 * Each SDL_AudioStream has an internal mutex it uses to protect its data
1793 * structures from threading conflicts. This function allows an app to lock
1794 * that mutex, which could be useful if registering callbacks on this stream.
1795 *
1796 * One does not need to lock a stream to use in it most cases, as the stream
1797 * manages this lock internally. However, this lock is held during callbacks,
1798 * which may run from arbitrary threads at any time, so if an app needs to
1799 * protect shared data during those callbacks, locking the stream guarantees
1800 * that the callback is not running while the lock is held.
1801 *
1802 * As this is just a wrapper over SDL_LockMutex for an internal lock; it has
1803 * all the same attributes (recursive locks are allowed, etc).
1804 *
1805 * \param stream the audio stream to lock.
1806 * \returns true on success or false on failure; call SDL_GetError() for more
1807 * information.
1808 *
1809 * \threadsafety It is safe to call this function from any thread.
1810 *
1811 * \since This function is available since SDL 3.2.0.
1812 *
1813 * \sa SDL_UnlockAudioStream
1814 */
1815extern SDL_DECLSPEC bool SDLCALL SDL_LockAudioStream(SDL_AudioStream *stream);
1816
1817
1818/**
1819 * Unlock an audio stream for serialized access.
1820 *
1821 * This unlocks an audio stream after a call to SDL_LockAudioStream.
1822 *
1823 * \param stream the audio stream to unlock.
1824 * \returns true on success or false on failure; call SDL_GetError() for more
1825 * information.
1826 *
1827 * \threadsafety You should only call this from the same thread that
1828 * previously called SDL_LockAudioStream.
1829 *
1830 * \since This function is available since SDL 3.2.0.
1831 *
1832 * \sa SDL_LockAudioStream
1833 */
1834extern SDL_DECLSPEC bool SDLCALL SDL_UnlockAudioStream(SDL_AudioStream *stream);
1835
1836/**
1837 * A callback that fires when data passes through an SDL_AudioStream.
1838 *
1839 * Apps can (optionally) register a callback with an audio stream that is
1840 * called when data is added with SDL_PutAudioStreamData, or requested with
1841 * SDL_GetAudioStreamData.
1842 *
1843 * Two values are offered here: one is the amount of additional data needed to
1844 * satisfy the immediate request (which might be zero if the stream already
1845 * has enough data queued) and the other is the total amount being requested.
1846 * In a Get call triggering a Put callback, these values can be different. In
1847 * a Put call triggering a Get callback, these values are always the same.
1848 *
1849 * Byte counts might be slightly overestimated due to buffering or resampling,
1850 * and may change from call to call.
1851 *
1852 * This callback is not required to do anything. Generally this is useful for
1853 * adding/reading data on demand, and the app will often put/get data as
1854 * appropriate, but the system goes on with the data currently available to it
1855 * if this callback does nothing.
1856 *
1857 * \param stream the SDL audio stream associated with this callback.
1858 * \param additional_amount the amount of data, in bytes, that is needed right
1859 * now.
1860 * \param total_amount the total amount of data requested, in bytes, that is
1861 * requested or available.
1862 * \param userdata an opaque pointer provided by the app for their personal
1863 * use.
1864 *
1865 * \threadsafety This callbacks may run from any thread, so if you need to
1866 * protect shared data, you should use SDL_LockAudioStream to
1867 * serialize access; this lock will be held before your callback
1868 * is called, so your callback does not need to manage the lock
1869 * explicitly.
1870 *
1871 * \since This datatype is available since SDL 3.2.0.
1872 *
1873 * \sa SDL_SetAudioStreamGetCallback
1874 * \sa SDL_SetAudioStreamPutCallback
1875 */
1876typedef void (SDLCALL *SDL_AudioStreamCallback)(void *userdata, SDL_AudioStream *stream, int additional_amount, int total_amount);
1877
1878/**
1879 * Set a callback that runs when data is requested from an audio stream.
1880 *
1881 * This callback is called _before_ data is obtained from the stream, giving
1882 * the callback the chance to add more on-demand.
1883 *
1884 * The callback can (optionally) call SDL_PutAudioStreamData() to add more
1885 * audio to the stream during this call; if needed, the request that triggered
1886 * this callback will obtain the new data immediately.
1887 *
1888 * The callback's `additional_amount` argument is roughly how many bytes of
1889 * _unconverted_ data (in the stream's input format) is needed by the caller,
1890 * although this may overestimate a little for safety. This takes into account
1891 * how much is already in the stream and only asks for any extra necessary to
1892 * resolve the request, which means the callback may be asked for zero bytes,
1893 * and a different amount on each call.
1894 *
1895 * The callback is not required to supply exact amounts; it is allowed to
1896 * supply too much or too little or none at all. The caller will get what's
1897 * available, up to the amount they requested, regardless of this callback's
1898 * outcome.
1899 *
1900 * Clearing or flushing an audio stream does not call this callback.
1901 *
1902 * This function obtains the stream's lock, which means any existing callback
1903 * (get or put) in progress will finish running before setting the new
1904 * callback.
1905 *
1906 * Setting a NULL function turns off the callback.
1907 *
1908 * \param stream the audio stream to set the new callback on.
1909 * \param callback the new callback function to call when data is requested
1910 * from the stream.
1911 * \param userdata an opaque pointer provided to the callback for its own
1912 * personal use.
1913 * \returns true on success or false on failure; call SDL_GetError() for more
1914 * information. This only fails if `stream` is NULL.
1915 *
1916 * \threadsafety It is safe to call this function from any thread.
1917 *
1918 * \since This function is available since SDL 3.2.0.
1919 *
1920 * \sa SDL_SetAudioStreamPutCallback
1921 */
1922extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamGetCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata);
1923
1924/**
1925 * Set a callback that runs when data is added to an audio stream.
1926 *
1927 * This callback is called _after_ the data is added to the stream, giving the
1928 * callback the chance to obtain it immediately.
1929 *
1930 * The callback can (optionally) call SDL_GetAudioStreamData() to obtain audio
1931 * from the stream during this call.
1932 *
1933 * The callback's `additional_amount` argument is how many bytes of
1934 * _converted_ data (in the stream's output format) was provided by the
1935 * caller, although this may underestimate a little for safety. This value
1936 * might be less than what is currently available in the stream, if data was
1937 * already there, and might be less than the caller provided if the stream
1938 * needs to keep a buffer to aid in resampling. Which means the callback may
1939 * be provided with zero bytes, and a different amount on each call.
1940 *
1941 * The callback may call SDL_GetAudioStreamAvailable to see the total amount
1942 * currently available to read from the stream, instead of the total provided
1943 * by the current call.
1944 *
1945 * The callback is not required to obtain all data. It is allowed to read less
1946 * or none at all. Anything not read now simply remains in the stream for
1947 * later access.
1948 *
1949 * Clearing or flushing an audio stream does not call this callback.
1950 *
1951 * This function obtains the stream's lock, which means any existing callback
1952 * (get or put) in progress will finish running before setting the new
1953 * callback.
1954 *
1955 * Setting a NULL function turns off the callback.
1956 *
1957 * \param stream the audio stream to set the new callback on.
1958 * \param callback the new callback function to call when data is added to the
1959 * stream.
1960 * \param userdata an opaque pointer provided to the callback for its own
1961 * personal use.
1962 * \returns true on success or false on failure; call SDL_GetError() for more
1963 * information. This only fails if `stream` is NULL.
1964 *
1965 * \threadsafety It is safe to call this function from any thread.
1966 *
1967 * \since This function is available since SDL 3.2.0.
1968 *
1969 * \sa SDL_SetAudioStreamGetCallback
1970 */
1971extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamPutCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata);
1972
1973
1974/**
1975 * Free an audio stream.
1976 *
1977 * This will release all allocated data, including any audio that is still
1978 * queued. You do not need to manually clear the stream first.
1979 *
1980 * If this stream was bound to an audio device, it is unbound during this
1981 * call. If this stream was created with SDL_OpenAudioDeviceStream, the audio
1982 * device that was opened alongside this stream's creation will be closed,
1983 * too.
1984 *
1985 * \param stream the audio stream to destroy.
1986 *
1987 * \threadsafety It is safe to call this function from any thread.
1988 *
1989 * \since This function is available since SDL 3.2.0.
1990 *
1991 * \sa SDL_CreateAudioStream
1992 */
1993extern SDL_DECLSPEC void SDLCALL SDL_DestroyAudioStream(SDL_AudioStream *stream);
1994
1995
1996/**
1997 * Convenience function for straightforward audio init for the common case.
1998 *
1999 * If all your app intends to do is provide a single source of PCM audio, this
2000 * function allows you to do all your audio setup in a single call.
2001 *
2002 * This is also intended to be a clean means to migrate apps from SDL2.
2003 *
2004 * This function will open an audio device, create a stream and bind it.
2005 * Unlike other methods of setup, the audio device will be closed when this
2006 * stream is destroyed, so the app can treat the returned SDL_AudioStream as
2007 * the only object needed to manage audio playback.
2008 *
2009 * Also unlike other functions, the audio device begins paused. This is to map
2010 * more closely to SDL2-style behavior, since there is no extra step here to
2011 * bind a stream to begin audio flowing. The audio device should be resumed
2012 * with SDL_ResumeAudioStreamDevice().
2013 *
2014 * This function works with both playback and recording devices.
2015 *
2016 * The `spec` parameter represents the app's side of the audio stream. That
2017 * is, for recording audio, this will be the output format, and for playing
2018 * audio, this will be the input format. If spec is NULL, the system will
2019 * choose the format, and the app can use SDL_GetAudioStreamFormat() to obtain
2020 * this information later.
2021 *
2022 * If you don't care about opening a specific audio device, you can (and
2023 * probably _should_), use SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK for playback and
2024 * SDL_AUDIO_DEVICE_DEFAULT_RECORDING for recording.
2025 *
2026 * One can optionally provide a callback function; if NULL, the app is
2027 * expected to queue audio data for playback (or unqueue audio data if
2028 * capturing). Otherwise, the callback will begin to fire once the device is
2029 * unpaused.
2030 *
2031 * Destroying the returned stream with SDL_DestroyAudioStream will also close
2032 * the audio device associated with this stream.
2033 *
2034 * \param devid an audio device to open, or SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK
2035 * or SDL_AUDIO_DEVICE_DEFAULT_RECORDING.
2036 * \param spec the audio stream's data format. Can be NULL.
2037 * \param callback a callback where the app will provide new data for
2038 * playback, or receive new data for recording. Can be NULL,
2039 * in which case the app will need to call
2040 * SDL_PutAudioStreamData or SDL_GetAudioStreamData as
2041 * necessary.
2042 * \param userdata app-controlled pointer passed to callback. Can be NULL.
2043 * Ignored if callback is NULL.
2044 * \returns an audio stream on success, ready to use, or NULL on failure; call
2045 * SDL_GetError() for more information. When done with this stream,
2046 * call SDL_DestroyAudioStream to free resources and close the
2047 * device.
2048 *
2049 * \threadsafety It is safe to call this function from any thread.
2050 *
2051 * \since This function is available since SDL 3.2.0.
2052 *
2053 * \sa SDL_GetAudioStreamDevice
2054 * \sa SDL_ResumeAudioStreamDevice
2055 */
2056extern SDL_DECLSPEC SDL_AudioStream * SDLCALL SDL_OpenAudioDeviceStream(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec, SDL_AudioStreamCallback callback, void *userdata);
2057
2058/**
2059 * A callback that fires when data is about to be fed to an audio device.
2060 *
2061 * This is useful for accessing the final mix, perhaps for writing a
2062 * visualizer or applying a final effect to the audio data before playback.
2063 *
2064 * This callback should run as quickly as possible and not block for any
2065 * significant time, as this callback delays submission of data to the audio
2066 * device, which can cause audio playback problems.
2067 *
2068 * The postmix callback _must_ be able to handle any audio data format
2069 * specified in `spec`, which can change between callbacks if the audio device
2070 * changed. However, this only covers frequency and channel count; data is
2071 * always provided here in SDL_AUDIO_F32 format.
2072 *
2073 * The postmix callback runs _after_ logical device gain and audiostream gain
2074 * have been applied, which is to say you can make the output data louder at
2075 * this point than the gain settings would suggest.
2076 *
2077 * \param userdata a pointer provided by the app through
2078 * SDL_SetAudioPostmixCallback, for its own use.
2079 * \param spec the current format of audio that is to be submitted to the
2080 * audio device.
2081 * \param buffer the buffer of audio samples to be submitted. The callback can
2082 * inspect and/or modify this data.
2083 * \param buflen the size of `buffer` in bytes.
2084 *
2085 * \threadsafety This will run from a background thread owned by SDL. The
2086 * application is responsible for locking resources the callback
2087 * touches that need to be protected.
2088 *
2089 * \since This datatype is available since SDL 3.2.0.
2090 *
2091 * \sa SDL_SetAudioPostmixCallback
2092 */
2093typedef void (SDLCALL *SDL_AudioPostmixCallback)(void *userdata, const SDL_AudioSpec *spec, float *buffer, int buflen);
2094
2095/**
2096 * Set a callback that fires when data is about to be fed to an audio device.
2097 *
2098 * This is useful for accessing the final mix, perhaps for writing a
2099 * visualizer or applying a final effect to the audio data before playback.
2100 *
2101 * The buffer is the final mix of all bound audio streams on an opened device;
2102 * this callback will fire regularly for any device that is both opened and
2103 * unpaused. If there is no new data to mix, either because no streams are
2104 * bound to the device or all the streams are empty, this callback will still
2105 * fire with the entire buffer set to silence.
2106 *
2107 * This callback is allowed to make changes to the data; the contents of the
2108 * buffer after this call is what is ultimately passed along to the hardware.
2109 *
2110 * The callback is always provided the data in float format (values from -1.0f
2111 * to 1.0f), but the number of channels or sample rate may be different than
2112 * the format the app requested when opening the device; SDL might have had to
2113 * manage a conversion behind the scenes, or the playback might have jumped to
2114 * new physical hardware when a system default changed, etc. These details may
2115 * change between calls. Accordingly, the size of the buffer might change
2116 * between calls as well.
2117 *
2118 * This callback can run at any time, and from any thread; if you need to
2119 * serialize access to your app's data, you should provide and use a mutex or
2120 * other synchronization device.
2121 *
2122 * All of this to say: there are specific needs this callback can fulfill, but
2123 * it is not the simplest interface. Apps should generally provide audio in
2124 * their preferred format through an SDL_AudioStream and let SDL handle the
2125 * difference.
2126 *
2127 * This function is extremely time-sensitive; the callback should do the least
2128 * amount of work possible and return as quickly as it can. The longer the
2129 * callback runs, the higher the risk of audio dropouts or other problems.
2130 *
2131 * This function will block until the audio device is in between iterations,
2132 * so any existing callback that might be running will finish before this
2133 * function sets the new callback and returns.
2134 *
2135 * Setting a NULL callback function disables any previously-set callback.
2136 *
2137 * \param devid the ID of an opened audio device.
2138 * \param callback a callback function to be called. Can be NULL.
2139 * \param userdata app-controlled pointer passed to callback. Can be NULL.
2140 * \returns true on success or false on failure; call SDL_GetError() for more
2141 * information.
2142 *
2143 * \threadsafety It is safe to call this function from any thread.
2144 *
2145 * \since This function is available since SDL 3.2.0.
2146 */
2147extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioPostmixCallback(SDL_AudioDeviceID devid, SDL_AudioPostmixCallback callback, void *userdata);
2148
2149
2150/**
2151 * Load the audio data of a WAVE file into memory.
2152 *
2153 * Loading a WAVE file requires `src`, `spec`, `audio_buf` and `audio_len` to
2154 * be valid pointers. The entire data portion of the file is then loaded into
2155 * memory and decoded if necessary.
2156 *
2157 * Supported formats are RIFF WAVE files with the formats PCM (8, 16, 24, and
2158 * 32 bits), IEEE Float (32 bits), Microsoft ADPCM and IMA ADPCM (4 bits), and
2159 * A-law and mu-law (8 bits). Other formats are currently unsupported and
2160 * cause an error.
2161 *
2162 * If this function succeeds, the return value is zero and the pointer to the
2163 * audio data allocated by the function is written to `audio_buf` and its
2164 * length in bytes to `audio_len`. The SDL_AudioSpec members `freq`,
2165 * `channels`, and `format` are set to the values of the audio data in the
2166 * buffer.
2167 *
2168 * It's necessary to use SDL_free() to free the audio data returned in
2169 * `audio_buf` when it is no longer used.
2170 *
2171 * Because of the underspecification of the .WAV format, there are many
2172 * problematic files in the wild that cause issues with strict decoders. To
2173 * provide compatibility with these files, this decoder is lenient in regards
2174 * to the truncation of the file, the fact chunk, and the size of the RIFF
2175 * chunk. The hints `SDL_HINT_WAVE_RIFF_CHUNK_SIZE`,
2176 * `SDL_HINT_WAVE_TRUNCATION`, and `SDL_HINT_WAVE_FACT_CHUNK` can be used to
2177 * tune the behavior of the loading process.
2178 *
2179 * Any file that is invalid (due to truncation, corruption, or wrong values in
2180 * the headers), too big, or unsupported causes an error. Additionally, any
2181 * critical I/O error from the data source will terminate the loading process
2182 * with an error. The function returns NULL on error and in all cases (with
2183 * the exception of `src` being NULL), an appropriate error message will be
2184 * set.
2185 *
2186 * It is required that the data source supports seeking.
2187 *
2188 * Example:
2189 *
2190 * ```c
2191 * SDL_LoadWAV_IO(SDL_IOFromFile("sample.wav", "rb"), true, &spec, &buf, &len);
2192 * ```
2193 *
2194 * Note that the SDL_LoadWAV function does this same thing for you, but in a
2195 * less messy way:
2196 *
2197 * ```c
2198 * SDL_LoadWAV("sample.wav", &spec, &buf, &len);
2199 * ```
2200 *
2201 * \param src the data source for the WAVE data.
2202 * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even
2203 * in the case of an error.
2204 * \param spec a pointer to an SDL_AudioSpec that will be set to the WAVE
2205 * data's format details on successful return.
2206 * \param audio_buf a pointer filled with the audio data, allocated by the
2207 * function.
2208 * \param audio_len a pointer filled with the length of the audio data buffer
2209 * in bytes.
2210 * \returns true on success. `audio_buf` will be filled with a pointer to an
2211 * allocated buffer containing the audio data, and `audio_len` is
2212 * filled with the length of that audio buffer in bytes.
2213 *
2214 * This function returns false if the .WAV file cannot be opened,
2215 * uses an unknown data format, or is corrupt; call SDL_GetError()
2216 * for more information.
2217 *
2218 * When the application is done with the data returned in
2219 * `audio_buf`, it should call SDL_free() to dispose of it.
2220 *
2221 * \threadsafety It is safe to call this function from any thread.
2222 *
2223 * \since This function is available since SDL 3.2.0.
2224 *
2225 * \sa SDL_free
2226 * \sa SDL_LoadWAV
2227 */
2228extern SDL_DECLSPEC bool SDLCALL SDL_LoadWAV_IO(SDL_IOStream *src, bool closeio, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len);
2229
2230/**
2231 * Loads a WAV from a file path.
2232 *
2233 * This is a convenience function that is effectively the same as:
2234 *
2235 * ```c
2236 * SDL_LoadWAV_IO(SDL_IOFromFile(path, "rb"), true, spec, audio_buf, audio_len);
2237 * ```
2238 *
2239 * \param path the file path of the WAV file to open.
2240 * \param spec a pointer to an SDL_AudioSpec that will be set to the WAVE
2241 * data's format details on successful return.
2242 * \param audio_buf a pointer filled with the audio data, allocated by the
2243 * function.
2244 * \param audio_len a pointer filled with the length of the audio data buffer
2245 * in bytes.
2246 * \returns true on success. `audio_buf` will be filled with a pointer to an
2247 * allocated buffer containing the audio data, and `audio_len` is
2248 * filled with the length of that audio buffer in bytes.
2249 *
2250 * This function returns false if the .WAV file cannot be opened,
2251 * uses an unknown data format, or is corrupt; call SDL_GetError()
2252 * for more information.
2253 *
2254 * When the application is done with the data returned in
2255 * `audio_buf`, it should call SDL_free() to dispose of it.
2256 *
2257 * \threadsafety It is safe to call this function from any thread.
2258 *
2259 * \since This function is available since SDL 3.2.0.
2260 *
2261 * \sa SDL_free
2262 * \sa SDL_LoadWAV_IO
2263 */
2264extern SDL_DECLSPEC bool SDLCALL SDL_LoadWAV(const char *path, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len);
2265
2266/**
2267 * Mix audio data in a specified format.
2268 *
2269 * This takes an audio buffer `src` of `len` bytes of `format` data and mixes
2270 * it into `dst`, performing addition, volume adjustment, and overflow
2271 * clipping. The buffer pointed to by `dst` must also be `len` bytes of
2272 * `format` data.
2273 *
2274 * This is provided for convenience -- you can mix your own audio data.
2275 *
2276 * Do not use this function for mixing together more than two streams of
2277 * sample data. The output from repeated application of this function may be
2278 * distorted by clipping, because there is no accumulator with greater range
2279 * than the input (not to mention this being an inefficient way of doing it).
2280 *
2281 * It is a common misconception that this function is required to write audio
2282 * data to an output stream in an audio callback. While you can do that,
2283 * SDL_MixAudio() is really only needed when you're mixing a single audio
2284 * stream with a volume adjustment.
2285 *
2286 * \param dst the destination for the mixed audio.
2287 * \param src the source audio buffer to be mixed.
2288 * \param format the SDL_AudioFormat structure representing the desired audio
2289 * format.
2290 * \param len the length of the audio buffer in bytes.
2291 * \param volume ranges from 0.0 - 1.0, and should be set to 1.0 for full
2292 * audio volume.
2293 * \returns true on success or false on failure; call SDL_GetError() for more
2294 * information.
2295 *
2296 * \threadsafety It is safe to call this function from any thread.
2297 *
2298 * \since This function is available since SDL 3.2.0.
2299 */
2300extern SDL_DECLSPEC bool SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, SDL_AudioFormat format, Uint32 len, float volume);
2301
2302/**
2303 * Convert some audio data of one format to another format.
2304 *
2305 * Please note that this function is for convenience, but should not be used
2306 * to resample audio in blocks, as it will introduce audio artifacts on the
2307 * boundaries. You should only use this function if you are converting audio
2308 * data in its entirety in one call. If you want to convert audio in smaller
2309 * chunks, use an SDL_AudioStream, which is designed for this situation.
2310 *
2311 * Internally, this function creates and destroys an SDL_AudioStream on each
2312 * use, so it's also less efficient than using one directly, if you need to
2313 * convert multiple times.
2314 *
2315 * \param src_spec the format details of the input audio.
2316 * \param src_data the audio data to be converted.
2317 * \param src_len the len of src_data.
2318 * \param dst_spec the format details of the output audio.
2319 * \param dst_data will be filled with a pointer to converted audio data,
2320 * which should be freed with SDL_free(). On error, it will be
2321 * NULL.
2322 * \param dst_len will be filled with the len of dst_data.
2323 * \returns true on success or false on failure; call SDL_GetError() for more
2324 * information.
2325 *
2326 * \threadsafety It is safe to call this function from any thread.
2327 *
2328 * \since This function is available since SDL 3.2.0.
2329 */
2330extern SDL_DECLSPEC bool SDLCALL SDL_ConvertAudioSamples(const SDL_AudioSpec *src_spec, const Uint8 *src_data, int src_len, const SDL_AudioSpec *dst_spec, Uint8 **dst_data, int *dst_len);
2331
2332/**
2333 * Get the human readable name of an audio format.
2334 *
2335 * \param format the audio format to query.
2336 * \returns the human readable name of the specified audio format or
2337 * "SDL_AUDIO_UNKNOWN" if the format isn't recognized.
2338 *
2339 * \threadsafety It is safe to call this function from any thread.
2340 *
2341 * \since This function is available since SDL 3.2.0.
2342 */
2343extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioFormatName(SDL_AudioFormat format);
2344
2345/**
2346 * Get the appropriate memset value for silencing an audio format.
2347 *
2348 * The value returned by this function can be used as the second argument to
2349 * memset (or SDL_memset) to set an audio buffer in a specific format to
2350 * silence.
2351 *
2352 * \param format the audio data format to query.
2353 * \returns a byte value that can be passed to memset.
2354 *
2355 * \threadsafety It is safe to call this function from any thread.
2356 *
2357 * \since This function is available since SDL 3.2.0.
2358 */
2359extern SDL_DECLSPEC int SDLCALL SDL_GetSilenceValueForFormat(SDL_AudioFormat format);
2360
2361
2362/* Ends C function definitions when using C++ */
2363#ifdef __cplusplus
2364}
2365#endif
2366#include <SDL3/SDL_close_code.h>
2367
2368#endif /* SDL_audio_h_ */
bool SDL_MixAudio(Uint8 *dst, const Uint8 *src, SDL_AudioFormat format, Uint32 len, float volume)
bool SDL_PutAudioStreamPlanarData(SDL_AudioStream *stream, const void *const *channel_buffers, int num_channels, int num_samples)
const char * SDL_GetAudioDeviceName(SDL_AudioDeviceID devid)
bool SDL_SetAudioStreamFormat(SDL_AudioStream *stream, const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec)
SDL_AudioDeviceID * SDL_GetAudioRecordingDevices(int *count)
bool SDL_UnlockAudioStream(SDL_AudioStream *stream)
int * SDL_GetAudioStreamInputChannelMap(SDL_AudioStream *stream, int *count)
const char * SDL_GetAudioDriver(int index)
SDL_AudioStream * SDL_CreateAudioStream(const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec)
void SDL_UnbindAudioStream(SDL_AudioStream *stream)
bool SDL_IsAudioDevicePhysical(SDL_AudioDeviceID devid)
void SDL_UnbindAudioStreams(SDL_AudioStream *const *streams, int num_streams)
float SDL_GetAudioDeviceGain(SDL_AudioDeviceID devid)
bool SDL_SetAudioStreamGain(SDL_AudioStream *stream, float gain)
struct SDL_AudioStream SDL_AudioStream
Definition SDL_audio.h:452
bool SDL_SetAudioStreamPutCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata)
bool SDL_IsAudioDevicePlayback(SDL_AudioDeviceID devid)
SDL_AudioDeviceID * SDL_GetAudioPlaybackDevices(int *count)
bool SDL_SetAudioPostmixCallback(SDL_AudioDeviceID devid, SDL_AudioPostmixCallback callback, void *userdata)
void(* SDL_AudioStreamCallback)(void *userdata, SDL_AudioStream *stream, int additional_amount, int total_amount)
Definition SDL_audio.h:1876
bool SDL_SetAudioStreamInputChannelMap(SDL_AudioStream *stream, const int *chmap, int count)
bool SDL_AudioDevicePaused(SDL_AudioDeviceID devid)
bool SDL_SetAudioStreamFrequencyRatio(SDL_AudioStream *stream, float ratio)
int SDL_GetNumAudioDrivers(void)
bool SDL_LockAudioStream(SDL_AudioStream *stream)
float SDL_GetAudioStreamGain(SDL_AudioStream *stream)
Uint32 SDL_AudioDeviceID
Definition SDL_audio.h:374
int SDL_GetAudioStreamQueued(SDL_AudioStream *stream)
bool SDL_SetAudioDeviceGain(SDL_AudioDeviceID devid, float gain)
int SDL_GetSilenceValueForFormat(SDL_AudioFormat format)
const char * SDL_GetCurrentAudioDriver(void)
SDL_PropertiesID SDL_GetAudioStreamProperties(SDL_AudioStream *stream)
SDL_AudioStream * SDL_OpenAudioDeviceStream(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec, SDL_AudioStreamCallback callback, void *userdata)
bool SDL_ResumeAudioStreamDevice(SDL_AudioStream *stream)
void(* SDL_AudioPostmixCallback)(void *userdata, const SDL_AudioSpec *spec, float *buffer, int buflen)
Definition SDL_audio.h:2093
bool SDL_GetAudioDeviceFormat(SDL_AudioDeviceID devid, SDL_AudioSpec *spec, int *sample_frames)
bool SDL_SetAudioStreamOutputChannelMap(SDL_AudioStream *stream, const int *chmap, int count)
bool SDL_PauseAudioStreamDevice(SDL_AudioStream *stream)
float SDL_GetAudioStreamFrequencyRatio(SDL_AudioStream *stream)
int SDL_GetAudioStreamAvailable(SDL_AudioStream *stream)
SDL_AudioFormat
Definition SDL_audio.h:222
@ SDL_AUDIO_S32LE
Definition SDL_audio.h:232
@ SDL_AUDIO_F32
Definition SDL_audio.h:245
@ SDL_AUDIO_S16LE
Definition SDL_audio.h:228
@ SDL_AUDIO_S16
Definition SDL_audio.h:243
@ SDL_AUDIO_U8
Definition SDL_audio.h:224
@ SDL_AUDIO_S8
Definition SDL_audio.h:226
@ SDL_AUDIO_S32
Definition SDL_audio.h:244
@ SDL_AUDIO_F32LE
Definition SDL_audio.h:236
@ SDL_AUDIO_S32BE
Definition SDL_audio.h:234
@ SDL_AUDIO_UNKNOWN
Definition SDL_audio.h:223
@ SDL_AUDIO_S16BE
Definition SDL_audio.h:230
@ SDL_AUDIO_F32BE
Definition SDL_audio.h:238
bool SDL_LoadWAV(const char *path, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len)
bool SDL_ConvertAudioSamples(const SDL_AudioSpec *src_spec, const Uint8 *src_data, int src_len, const SDL_AudioSpec *dst_spec, Uint8 **dst_data, int *dst_len)
bool SDL_BindAudioStreams(SDL_AudioDeviceID devid, SDL_AudioStream *const *streams, int num_streams)
int * SDL_GetAudioStreamOutputChannelMap(SDL_AudioStream *stream, int *count)
bool SDL_ClearAudioStream(SDL_AudioStream *stream)
void SDL_DestroyAudioStream(SDL_AudioStream *stream)
void(* SDL_AudioStreamDataCompleteCallback)(void *userdata, const void *buf, int buflen)
Definition SDL_audio.h:1483
void SDL_CloseAudioDevice(SDL_AudioDeviceID devid)
int SDL_GetAudioStreamData(SDL_AudioStream *stream, void *buf, int len)
bool SDL_AudioStreamDevicePaused(SDL_AudioStream *stream)
const char * SDL_GetAudioFormatName(SDL_AudioFormat format)
bool SDL_GetAudioStreamFormat(SDL_AudioStream *stream, SDL_AudioSpec *src_spec, SDL_AudioSpec *dst_spec)
SDL_AudioDeviceID SDL_OpenAudioDevice(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec)
bool SDL_BindAudioStream(SDL_AudioDeviceID devid, SDL_AudioStream *stream)
bool SDL_SetAudioStreamGetCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata)
bool SDL_FlushAudioStream(SDL_AudioStream *stream)
int * SDL_GetAudioDeviceChannelMap(SDL_AudioDeviceID devid, int *count)
bool SDL_ResumeAudioDevice(SDL_AudioDeviceID devid)
bool SDL_PutAudioStreamData(SDL_AudioStream *stream, const void *buf, int len)
bool SDL_PutAudioStreamDataNoCopy(SDL_AudioStream *stream, const void *buf, int len, SDL_AudioStreamDataCompleteCallback callback, void *userdata)
SDL_AudioDeviceID SDL_GetAudioStreamDevice(SDL_AudioStream *stream)
bool SDL_PauseAudioDevice(SDL_AudioDeviceID devid)
bool SDL_LoadWAV_IO(SDL_IOStream *src, bool closeio, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len)
struct SDL_IOStream SDL_IOStream
Uint32 SDL_PropertiesID
uint8_t Uint8
Definition SDL_stdinc.h:446
uint32_t Uint32
Definition SDL_stdinc.h:482
SDL_AudioFormat format
Definition SDL_audio.h:407