12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355 |
- /*
- Simple DirectMedia Layer
- Copyright (C) 1997-2025 Sam Lantinga <[email protected]>
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any damages
- arising from the use of this software.
- Permission is granted to anyone to use this software for any purpose,
- including commercial applications, and to alter it and redistribute it
- freely, subject to the following restrictions:
- 1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
- 2. Altered source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
- 3. This notice may not be removed or altered from any source distribution.
- */
- #include "SDL_internal.h"
- #ifdef SDL_AUDIO_DRIVER_PIPEWIRE
- #include "SDL_pipewire.h"
- #include <pipewire/extensions/metadata.h>
- #include <spa/param/audio/format-utils.h>
- #include <spa/utils/json.h>
- /*
- * This seems to be a sane lower limit as Pipewire
- * uses it in several of it's own modules.
- */
- #define PW_MIN_SAMPLES 32 // About 0.67ms at 48kHz
- #define PW_BASE_CLOCK_RATE 48000
- #define PW_POD_BUFFER_LENGTH 1024
- #define PW_THREAD_NAME_BUFFER_LENGTH 128
- #define PW_MAX_IDENTIFIER_LENGTH 256
- enum PW_READY_FLAGS
- {
- PW_READY_FLAG_BUFFER_ADDED = 0x1,
- PW_READY_FLAG_STREAM_READY = 0x2,
- PW_READY_FLAG_ALL_PREOPEN_BITS = 0x3,
- PW_READY_FLAG_OPEN_COMPLETE = 0x4,
- PW_READY_FLAG_ALL_BITS = 0x7
- };
- #define PW_ID_TO_HANDLE(x) (void *)((uintptr_t)x)
- #define PW_HANDLE_TO_ID(x) (uint32_t)((uintptr_t)x)
- static bool pipewire_initialized = false;
- // Pipewire entry points
- static const char *(*PIPEWIRE_pw_get_library_version)(void);
- static void (*PIPEWIRE_pw_init)(int *, char ***);
- static void (*PIPEWIRE_pw_deinit)(void);
- static struct pw_main_loop *(*PIPEWIRE_pw_main_loop_new)(const struct spa_dict *loop);
- static struct pw_loop *(*PIPEWIRE_pw_main_loop_get_loop)(struct pw_main_loop *loop);
- static int (*PIPEWIRE_pw_main_loop_run)(struct pw_main_loop *loop);
- static int (*PIPEWIRE_pw_main_loop_quit)(struct pw_main_loop *loop);
- static void(*PIPEWIRE_pw_main_loop_destroy)(struct pw_main_loop *loop);
- static struct pw_thread_loop *(*PIPEWIRE_pw_thread_loop_new)(const char *, const struct spa_dict *);
- static void (*PIPEWIRE_pw_thread_loop_destroy)(struct pw_thread_loop *);
- static void (*PIPEWIRE_pw_thread_loop_stop)(struct pw_thread_loop *);
- static struct pw_loop *(*PIPEWIRE_pw_thread_loop_get_loop)(struct pw_thread_loop *);
- static void (*PIPEWIRE_pw_thread_loop_lock)(struct pw_thread_loop *);
- static void (*PIPEWIRE_pw_thread_loop_unlock)(struct pw_thread_loop *);
- static void (*PIPEWIRE_pw_thread_loop_signal)(struct pw_thread_loop *, bool);
- static void (*PIPEWIRE_pw_thread_loop_wait)(struct pw_thread_loop *);
- static int (*PIPEWIRE_pw_thread_loop_start)(struct pw_thread_loop *);
- static struct pw_context *(*PIPEWIRE_pw_context_new)(struct pw_loop *, struct pw_properties *, size_t);
- static void (*PIPEWIRE_pw_context_destroy)(struct pw_context *);
- static struct pw_core *(*PIPEWIRE_pw_context_connect)(struct pw_context *, struct pw_properties *, size_t);
- static void (*PIPEWIRE_pw_proxy_add_object_listener)(struct pw_proxy *, struct spa_hook *, const void *, void *);
- static void *(*PIPEWIRE_pw_proxy_get_user_data)(struct pw_proxy *);
- static void (*PIPEWIRE_pw_proxy_destroy)(struct pw_proxy *);
- static int (*PIPEWIRE_pw_core_disconnect)(struct pw_core *);
- static struct pw_stream *(*PIPEWIRE_pw_stream_new_simple)(struct pw_loop *, const char *, struct pw_properties *,
- const struct pw_stream_events *, void *);
- static void (*PIPEWIRE_pw_stream_destroy)(struct pw_stream *);
- static int (*PIPEWIRE_pw_stream_connect)(struct pw_stream *, enum pw_direction, uint32_t, enum pw_stream_flags,
- const struct spa_pod **, uint32_t);
- static enum pw_stream_state (*PIPEWIRE_pw_stream_get_state)(struct pw_stream *stream, const char **error);
- static struct pw_buffer *(*PIPEWIRE_pw_stream_dequeue_buffer)(struct pw_stream *);
- static int (*PIPEWIRE_pw_stream_queue_buffer)(struct pw_stream *, struct pw_buffer *);
- static struct pw_properties *(*PIPEWIRE_pw_properties_new)(const char *, ...)SPA_SENTINEL;
- static int (*PIPEWIRE_pw_properties_set)(struct pw_properties *, const char *, const char *);
- static int (*PIPEWIRE_pw_properties_setf)(struct pw_properties *, const char *, const char *, ...) SPA_PRINTF_FUNC(3, 4);
- #ifdef SDL_AUDIO_DRIVER_PIPEWIRE_DYNAMIC
- static const char *pipewire_library = SDL_AUDIO_DRIVER_PIPEWIRE_DYNAMIC;
- static SDL_SharedObject *pipewire_handle = NULL;
- static bool pipewire_dlsym(const char *fn, void **addr)
- {
- *addr = SDL_LoadFunction(pipewire_handle, fn);
- if (!*addr) {
- // Don't call SDL_SetError(): SDL_LoadFunction already did.
- return false;
- }
- return true;
- }
- #define SDL_PIPEWIRE_SYM(x) \
- if (!pipewire_dlsym(#x, (void **)(char *)&PIPEWIRE_##x)) \
- return false
- static bool load_pipewire_library(void)
- {
- pipewire_handle = SDL_LoadObject(pipewire_library);
- return pipewire_handle ? true : false;
- }
- static void unload_pipewire_library(void)
- {
- if (pipewire_handle) {
- SDL_UnloadObject(pipewire_handle);
- pipewire_handle = NULL;
- }
- }
- #else
- #define SDL_PIPEWIRE_SYM(x) PIPEWIRE_##x = x
- static bool load_pipewire_library(void)
- {
- return true;
- }
- static void unload_pipewire_library(void)
- {
- // Nothing to do
- }
- #endif // SDL_AUDIO_DRIVER_PIPEWIRE_DYNAMIC
- static bool load_pipewire_syms(void)
- {
- SDL_PIPEWIRE_SYM(pw_get_library_version);
- SDL_PIPEWIRE_SYM(pw_init);
- SDL_PIPEWIRE_SYM(pw_deinit);
- SDL_PIPEWIRE_SYM(pw_main_loop_new);
- SDL_PIPEWIRE_SYM(pw_main_loop_get_loop);
- SDL_PIPEWIRE_SYM(pw_main_loop_run);
- SDL_PIPEWIRE_SYM(pw_main_loop_quit);
- SDL_PIPEWIRE_SYM(pw_main_loop_destroy);
- SDL_PIPEWIRE_SYM(pw_thread_loop_new);
- SDL_PIPEWIRE_SYM(pw_thread_loop_destroy);
- SDL_PIPEWIRE_SYM(pw_thread_loop_stop);
- SDL_PIPEWIRE_SYM(pw_thread_loop_get_loop);
- SDL_PIPEWIRE_SYM(pw_thread_loop_lock);
- SDL_PIPEWIRE_SYM(pw_thread_loop_unlock);
- SDL_PIPEWIRE_SYM(pw_thread_loop_signal);
- SDL_PIPEWIRE_SYM(pw_thread_loop_wait);
- SDL_PIPEWIRE_SYM(pw_thread_loop_start);
- SDL_PIPEWIRE_SYM(pw_context_new);
- SDL_PIPEWIRE_SYM(pw_context_destroy);
- SDL_PIPEWIRE_SYM(pw_context_connect);
- SDL_PIPEWIRE_SYM(pw_proxy_add_object_listener);
- SDL_PIPEWIRE_SYM(pw_proxy_get_user_data);
- SDL_PIPEWIRE_SYM(pw_proxy_destroy);
- SDL_PIPEWIRE_SYM(pw_core_disconnect);
- SDL_PIPEWIRE_SYM(pw_stream_new_simple);
- SDL_PIPEWIRE_SYM(pw_stream_destroy);
- SDL_PIPEWIRE_SYM(pw_stream_connect);
- SDL_PIPEWIRE_SYM(pw_stream_get_state);
- SDL_PIPEWIRE_SYM(pw_stream_dequeue_buffer);
- SDL_PIPEWIRE_SYM(pw_stream_queue_buffer);
- SDL_PIPEWIRE_SYM(pw_properties_new);
- SDL_PIPEWIRE_SYM(pw_properties_set);
- SDL_PIPEWIRE_SYM(pw_properties_setf);
- return true;
- }
- static bool init_pipewire_library(void)
- {
- if (load_pipewire_library()) {
- if (load_pipewire_syms()) {
- PIPEWIRE_pw_init(NULL, NULL);
- return true;
- }
- }
- return false;
- }
- static void deinit_pipewire_library(void)
- {
- PIPEWIRE_pw_deinit();
- unload_pipewire_library();
- }
- // A generic Pipewire node object used for enumeration.
- struct node_object
- {
- struct spa_list link;
- Uint32 id;
- int seq;
- bool persist;
- /*
- * NOTE: If used, this is *must* be allocated with SDL_malloc() or similar
- * as SDL_free() will be called on it when the node_object is destroyed.
- *
- * If ownership of the referenced memory is transferred, this must be set
- * to NULL or the memory will be freed when the node_object is destroyed.
- */
- void *userdata;
- struct pw_proxy *proxy;
- struct spa_hook node_listener;
- struct spa_hook core_listener;
- };
- // A sink/source node used for stream I/O.
- struct io_node
- {
- struct spa_list link;
- Uint32 id;
- bool recording;
- SDL_AudioSpec spec;
- const char *name; // Friendly name
- const char *path; // OS identifier (i.e. ALSA endpoint)
- char buf[]; // Buffer to hold the name and path strings.
- };
- // The global hotplug thread and associated objects.
- static struct pw_thread_loop *hotplug_loop;
- static struct pw_core *hotplug_core;
- static struct pw_context *hotplug_context;
- static struct pw_registry *hotplug_registry;
- static struct spa_hook hotplug_registry_listener;
- static struct spa_hook hotplug_core_listener;
- static struct spa_list hotplug_pending_list;
- static struct spa_list hotplug_io_list;
- static int hotplug_init_seq_val;
- static bool hotplug_init_complete;
- static bool hotplug_events_enabled;
- static int pipewire_version_major;
- static int pipewire_version_minor;
- static int pipewire_version_patch;
- static char *pipewire_default_sink_id = NULL;
- static char *pipewire_default_source_id = NULL;
- static bool pipewire_core_version_at_least(int major, int minor, int patch)
- {
- return (pipewire_version_major >= major) &&
- (pipewire_version_major > major || pipewire_version_minor >= minor) &&
- (pipewire_version_major > major || pipewire_version_minor > minor || pipewire_version_patch >= patch);
- }
- // The active node list
- static bool io_list_check_add(struct io_node *node)
- {
- struct io_node *n;
- // See if the node is already in the list
- spa_list_for_each (n, &hotplug_io_list, link) {
- if (n->id == node->id) {
- return false;
- }
- }
- // Add to the list if the node doesn't already exist
- spa_list_append(&hotplug_io_list, &node->link);
- if (hotplug_events_enabled) {
- SDL_AddAudioDevice(node->recording, node->name, &node->spec, PW_ID_TO_HANDLE(node->id));
- }
- return true;
- }
- static void io_list_remove(Uint32 id)
- {
- struct io_node *n, *temp;
- // Find and remove the node from the list
- spa_list_for_each_safe (n, temp, &hotplug_io_list, link) {
- if (n->id == id) {
- spa_list_remove(&n->link);
- if (hotplug_events_enabled) {
- SDL_AudioDeviceDisconnected(SDL_FindPhysicalAudioDeviceByHandle(PW_ID_TO_HANDLE(id)));
- }
- SDL_free(n);
- break;
- }
- }
- }
- static void io_list_clear(void)
- {
- struct io_node *n, *temp;
- spa_list_for_each_safe (n, temp, &hotplug_io_list, link) {
- spa_list_remove(&n->link);
- SDL_free(n);
- }
- }
- static struct io_node *io_list_get_by_id(Uint32 id)
- {
- struct io_node *n, *temp;
- spa_list_for_each_safe (n, temp, &hotplug_io_list, link) {
- if (n->id == id) {
- return n;
- }
- }
- return NULL;
- }
- static void node_object_destroy(struct node_object *node)
- {
- SDL_assert(node != NULL);
- spa_list_remove(&node->link);
- spa_hook_remove(&node->node_listener);
- spa_hook_remove(&node->core_listener);
- SDL_free(node->userdata);
- PIPEWIRE_pw_proxy_destroy(node->proxy);
- }
- // The pending node list
- static void pending_list_add(struct node_object *node)
- {
- SDL_assert(node != NULL);
- spa_list_append(&hotplug_pending_list, &node->link);
- }
- static void pending_list_remove(Uint32 id)
- {
- struct node_object *node, *temp;
- spa_list_for_each_safe (node, temp, &hotplug_pending_list, link) {
- if (node->id == id) {
- node_object_destroy(node);
- }
- }
- }
- static void pending_list_clear(void)
- {
- struct node_object *node, *temp;
- spa_list_for_each_safe (node, temp, &hotplug_pending_list, link) {
- node_object_destroy(node);
- }
- }
- static void *node_object_new(Uint32 id, const char *type, Uint32 version, const void *funcs, const struct pw_core_events *core_events)
- {
- struct pw_proxy *proxy;
- struct node_object *node;
- // Create the proxy object
- proxy = pw_registry_bind(hotplug_registry, id, type, version, sizeof(struct node_object));
- if (!proxy) {
- SDL_SetError("Pipewire: Failed to create proxy object (%i)", errno);
- return NULL;
- }
- node = PIPEWIRE_pw_proxy_get_user_data(proxy);
- SDL_zerop(node);
- node->id = id;
- node->proxy = proxy;
- // Add the callbacks
- pw_core_add_listener(hotplug_core, &node->core_listener, core_events, node);
- PIPEWIRE_pw_proxy_add_object_listener(node->proxy, &node->node_listener, funcs, node);
- // Add the node to the active list
- pending_list_add(node);
- return node;
- }
- // Core sync points
- static void core_events_hotplug_init_callback(void *object, uint32_t id, int seq)
- {
- if (id == PW_ID_CORE && seq == hotplug_init_seq_val) {
- // This core listener is no longer needed.
- spa_hook_remove(&hotplug_core_listener);
- // Signal that the initial I/O list is populated
- hotplug_init_complete = true;
- PIPEWIRE_pw_thread_loop_signal(hotplug_loop, false);
- }
- }
- static void core_events_hotplug_info_callback(void *data, const struct pw_core_info *info)
- {
- if (SDL_sscanf(info->version, "%d.%d.%d", &pipewire_version_major, &pipewire_version_minor, &pipewire_version_patch) < 3) {
- pipewire_version_major = 0;
- pipewire_version_minor = 0;
- pipewire_version_patch = 0;
- }
- }
- static void core_events_interface_callback(void *object, uint32_t id, int seq)
- {
- struct node_object *node = object;
- struct io_node *io = node->userdata;
- if (id == PW_ID_CORE && seq == node->seq) {
- /*
- * Move the I/O node to the connected list.
- * On success, the list owns the I/O node object.
- */
- if (io_list_check_add(io)) {
- node->userdata = NULL;
- }
- node_object_destroy(node);
- }
- }
- static void core_events_metadata_callback(void *object, uint32_t id, int seq)
- {
- struct node_object *node = object;
- if (id == PW_ID_CORE && seq == node->seq && !node->persist) {
- node_object_destroy(node);
- }
- }
- static const struct pw_core_events hotplug_init_core_events = { PW_VERSION_CORE_EVENTS, .info = core_events_hotplug_info_callback, .done = core_events_hotplug_init_callback };
- static const struct pw_core_events interface_core_events = { PW_VERSION_CORE_EVENTS, .done = core_events_interface_callback };
- static const struct pw_core_events metadata_core_events = { PW_VERSION_CORE_EVENTS, .done = core_events_metadata_callback };
- static void hotplug_core_sync(struct node_object *node)
- {
- /*
- * Node sync events *must* come before the hotplug init sync events or the initial
- * I/O list will be incomplete when the main hotplug sync point is hit.
- */
- if (node) {
- node->seq = pw_core_sync(hotplug_core, PW_ID_CORE, node->seq);
- }
- if (!hotplug_init_complete) {
- hotplug_init_seq_val = pw_core_sync(hotplug_core, PW_ID_CORE, hotplug_init_seq_val);
- }
- }
- // Helpers for retrieving values from params
- static bool get_range_param(const struct spa_pod *param, Uint32 key, int *def, int *min, int *max)
- {
- const struct spa_pod_prop *prop;
- struct spa_pod *value;
- Uint32 n_values, choice;
- prop = spa_pod_find_prop(param, NULL, key);
- if (prop && prop->value.type == SPA_TYPE_Choice) {
- value = spa_pod_get_values(&prop->value, &n_values, &choice);
- if (n_values == 3 && choice == SPA_CHOICE_Range) {
- Uint32 *v = SPA_POD_BODY(value);
- if (v) {
- if (def) {
- *def = (int)v[0];
- }
- if (min) {
- *min = (int)v[1];
- }
- if (max) {
- *max = (int)v[2];
- }
- return true;
- }
- }
- }
- return false;
- }
- static bool get_int_param(const struct spa_pod *param, Uint32 key, int *val)
- {
- const struct spa_pod_prop *prop;
- Sint32 v;
- prop = spa_pod_find_prop(param, NULL, key);
- if (prop && spa_pod_get_int(&prop->value, &v) == 0) {
- if (val) {
- *val = (int)v;
- }
- return true;
- }
- return false;
- }
- static SDL_AudioFormat SPAFormatToSDL(enum spa_audio_format spafmt)
- {
- switch (spafmt) {
- #define CHECKFMT(spa,sdl) case SPA_AUDIO_FORMAT_##spa: return SDL_AUDIO_##sdl
- CHECKFMT(U8, U8);
- CHECKFMT(S8, S8);
- CHECKFMT(S16_LE, S16LE);
- CHECKFMT(S16_BE, S16BE);
- CHECKFMT(S32_LE, S32LE);
- CHECKFMT(S32_BE, S32BE);
- CHECKFMT(F32_LE, F32LE);
- CHECKFMT(F32_BE, F32BE);
- #undef CHECKFMT
- default: break;
- }
- return SDL_AUDIO_UNKNOWN;
- }
- // Interface node callbacks
- static void node_event_info(void *object, const struct pw_node_info *info)
- {
- struct node_object *node = object;
- struct io_node *io = node->userdata;
- const char *prop_val;
- Uint32 i;
- if (info) {
- prop_val = spa_dict_lookup(info->props, PW_KEY_AUDIO_CHANNELS);
- if (prop_val) {
- io->spec.channels = (Uint8)SDL_atoi(prop_val);
- }
- // Need to parse the parameters to get the sample rate
- for (i = 0; i < info->n_params; ++i) {
- pw_node_enum_params((struct pw_node*)node->proxy, 0, info->params[i].id, 0, 0, NULL);
- }
- hotplug_core_sync(node);
- }
- }
- static void node_event_param(void *object, int seq, uint32_t id, uint32_t index, uint32_t next, const struct spa_pod *param)
- {
- struct node_object *node = object;
- struct io_node *io = node->userdata;
- if ((id == SPA_PARAM_Format) && (io->spec.format == SDL_AUDIO_UNKNOWN)) {
- struct spa_audio_info_raw info;
- SDL_zero(info);
- if (spa_format_audio_raw_parse(param, &info) == 0) {
- //SDL_Log("Sink Format: %d, Rate: %d Hz, Channels: %d", info.format, info.rate, info.channels);
- io->spec.format = SPAFormatToSDL(info.format);
- }
- }
- // Get the default frequency
- if (io->spec.freq == 0) {
- get_range_param(param, SPA_FORMAT_AUDIO_rate, &io->spec.freq, NULL, NULL);
- }
- /*
- * The channel count should have come from the node properties,
- * but it is stored here as well. If one failed, try the other.
- */
- if (io->spec.channels == 0) {
- int channels;
- if (get_int_param(param, SPA_FORMAT_AUDIO_channels, &channels)) {
- io->spec.channels = (Uint8)channels;
- }
- }
- }
- static const struct pw_node_events interface_node_events = { PW_VERSION_NODE_EVENTS, .info = node_event_info,
- .param = node_event_param };
- static char *get_name_from_json(const char *json)
- {
- struct spa_json parser[2];
- char key[7]; // "name"
- char value[PW_MAX_IDENTIFIER_LENGTH];
- spa_json_init(&parser[0], json, SDL_strlen(json));
- if (spa_json_enter_object(&parser[0], &parser[1]) <= 0) {
- // Not actually JSON
- return NULL;
- }
- if (spa_json_get_string(&parser[1], key, sizeof(key)) <= 0) {
- // Not actually a key/value pair
- return NULL;
- }
- if (spa_json_get_string(&parser[1], value, sizeof(value)) <= 0) {
- // Somehow had a key with no value?
- return NULL;
- }
- return SDL_strdup(value);
- }
- static void change_default_device(const char *path)
- {
- if (hotplug_events_enabled) {
- struct io_node *n, *temp;
- spa_list_for_each_safe (n, temp, &hotplug_io_list, link) {
- if (SDL_strcmp(n->path, path) == 0) {
- SDL_DefaultAudioDeviceChanged(SDL_FindPhysicalAudioDeviceByHandle(PW_ID_TO_HANDLE(n->id)));
- return; // found it, we're done.
- }
- }
- }
- }
- // Metadata node callback
- static int metadata_property(void *object, Uint32 subject, const char *key, const char *type, const char *value)
- {
- struct node_object *node = object;
- if (subject == PW_ID_CORE && key && value) {
- if (!SDL_strcmp(key, "default.audio.sink")) {
- if (pipewire_default_sink_id) {
- SDL_free(pipewire_default_sink_id);
- }
- pipewire_default_sink_id = get_name_from_json(value);
- node->persist = true;
- change_default_device(pipewire_default_sink_id);
- } else if (!SDL_strcmp(key, "default.audio.source")) {
- if (pipewire_default_source_id) {
- SDL_free(pipewire_default_source_id);
- }
- pipewire_default_source_id = get_name_from_json(value);
- node->persist = true;
- change_default_device(pipewire_default_source_id);
- }
- }
- return 0;
- }
- static const struct pw_metadata_events metadata_node_events = { PW_VERSION_METADATA_EVENTS, .property = metadata_property };
- // Global registry callbacks
- static void registry_event_global_callback(void *object, uint32_t id, uint32_t permissions, const char *type, uint32_t version,
- const struct spa_dict *props)
- {
- struct node_object *node;
- // We're only interested in interface and metadata nodes.
- if (!SDL_strcmp(type, PW_TYPE_INTERFACE_Node)) {
- const char *media_class = spa_dict_lookup(props, PW_KEY_MEDIA_CLASS);
- if (media_class) {
- const char *node_desc;
- const char *node_path;
- struct io_node *io;
- bool recording;
- int desc_buffer_len;
- int path_buffer_len;
- // Just want sink and source
- if (!SDL_strcasecmp(media_class, "Audio/Sink")) {
- recording = false;
- } else if (!SDL_strcasecmp(media_class, "Audio/Source")) {
- recording = true;
- } else {
- return;
- }
- node_desc = spa_dict_lookup(props, PW_KEY_NODE_DESCRIPTION);
- node_path = spa_dict_lookup(props, PW_KEY_NODE_NAME);
- if (node_desc && node_path) {
- node = node_object_new(id, type, version, &interface_node_events, &interface_core_events);
- if (!node) {
- SDL_SetError("Pipewire: Failed to allocate interface node");
- return;
- }
- // Allocate and initialize the I/O node information struct
- desc_buffer_len = SDL_strlen(node_desc) + 1;
- path_buffer_len = SDL_strlen(node_path) + 1;
- node->userdata = io = SDL_calloc(1, sizeof(struct io_node) + desc_buffer_len + path_buffer_len);
- if (!io) {
- node_object_destroy(node);
- return;
- }
- // Begin setting the node properties
- io->id = id;
- io->recording = recording;
- if (io->spec.format == SDL_AUDIO_UNKNOWN) {
- io->spec.format = SDL_AUDIO_S16; // we'll go conservative here if for some reason the format isn't known.
- }
- io->name = io->buf;
- io->path = io->buf + desc_buffer_len;
- SDL_strlcpy(io->buf, node_desc, desc_buffer_len);
- SDL_strlcpy(io->buf + desc_buffer_len, node_path, path_buffer_len);
- // Update sync points
- hotplug_core_sync(node);
- }
- }
- } else if (!SDL_strcmp(type, PW_TYPE_INTERFACE_Metadata)) {
- node = node_object_new(id, type, version, &metadata_node_events, &metadata_core_events);
- if (!node) {
- SDL_SetError("Pipewire: Failed to allocate metadata node");
- return;
- }
- // Update sync points
- hotplug_core_sync(node);
- }
- }
- static void registry_event_remove_callback(void *object, uint32_t id)
- {
- io_list_remove(id);
- pending_list_remove(id);
- }
- static const struct pw_registry_events registry_events = { PW_VERSION_REGISTRY_EVENTS, .global = registry_event_global_callback,
- .global_remove = registry_event_remove_callback };
- // The hotplug thread
- static bool hotplug_loop_init(void)
- {
- int res;
- spa_list_init(&hotplug_pending_list);
- spa_list_init(&hotplug_io_list);
- hotplug_loop = PIPEWIRE_pw_thread_loop_new("SDLPwAudioPlug", NULL);
- if (!hotplug_loop) {
- return SDL_SetError("Pipewire: Failed to create hotplug detection loop (%i)", errno);
- }
- hotplug_context = PIPEWIRE_pw_context_new(PIPEWIRE_pw_thread_loop_get_loop(hotplug_loop), NULL, 0);
- if (!hotplug_context) {
- return SDL_SetError("Pipewire: Failed to create hotplug detection context (%i)", errno);
- }
- hotplug_core = PIPEWIRE_pw_context_connect(hotplug_context, NULL, 0);
- if (!hotplug_core) {
- return SDL_SetError("Pipewire: Failed to connect hotplug detection context (%i)", errno);
- }
- hotplug_registry = pw_core_get_registry(hotplug_core, PW_VERSION_REGISTRY, 0);
- if (!hotplug_registry) {
- return SDL_SetError("Pipewire: Failed to acquire hotplug detection registry (%i)", errno);
- }
- spa_zero(hotplug_registry_listener);
- pw_registry_add_listener(hotplug_registry, &hotplug_registry_listener, ®istry_events, NULL);
- spa_zero(hotplug_core_listener);
- pw_core_add_listener(hotplug_core, &hotplug_core_listener, &hotplug_init_core_events, NULL);
- hotplug_init_seq_val = pw_core_sync(hotplug_core, PW_ID_CORE, 0);
- res = PIPEWIRE_pw_thread_loop_start(hotplug_loop);
- if (res != 0) {
- return SDL_SetError("Pipewire: Failed to start hotplug detection loop");
- }
- return true;
- }
- static void hotplug_loop_destroy(void)
- {
- if (hotplug_loop) {
- PIPEWIRE_pw_thread_loop_stop(hotplug_loop);
- }
- pending_list_clear();
- io_list_clear();
- hotplug_init_complete = false;
- hotplug_events_enabled = false;
- if (pipewire_default_sink_id) {
- SDL_free(pipewire_default_sink_id);
- pipewire_default_sink_id = NULL;
- }
- if (pipewire_default_source_id) {
- SDL_free(pipewire_default_source_id);
- pipewire_default_source_id = NULL;
- }
- if (hotplug_registry) {
- PIPEWIRE_pw_proxy_destroy((struct pw_proxy *)hotplug_registry);
- hotplug_registry = NULL;
- }
- if (hotplug_core) {
- PIPEWIRE_pw_core_disconnect(hotplug_core);
- hotplug_core = NULL;
- }
- if (hotplug_context) {
- PIPEWIRE_pw_context_destroy(hotplug_context);
- hotplug_context = NULL;
- }
- if (hotplug_loop) {
- PIPEWIRE_pw_thread_loop_destroy(hotplug_loop);
- hotplug_loop = NULL;
- }
- }
- static void PIPEWIRE_DetectDevices(SDL_AudioDevice **default_playback, SDL_AudioDevice **default_recording)
- {
- struct io_node *io;
- PIPEWIRE_pw_thread_loop_lock(hotplug_loop);
- // Wait until the initial registry enumeration is complete
- if (!hotplug_init_complete) {
- PIPEWIRE_pw_thread_loop_wait(hotplug_loop);
- }
- spa_list_for_each (io, &hotplug_io_list, link) {
- SDL_AudioDevice *device = SDL_AddAudioDevice(io->recording, io->name, &io->spec, PW_ID_TO_HANDLE(io->id));
- if (pipewire_default_sink_id && SDL_strcmp(io->path, pipewire_default_sink_id) == 0) {
- if (!io->recording) {
- *default_playback = device;
- }
- } else if (pipewire_default_source_id && SDL_strcmp(io->path, pipewire_default_source_id) == 0) {
- if (io->recording) {
- *default_recording = device;
- }
- }
- }
- hotplug_events_enabled = true;
- PIPEWIRE_pw_thread_loop_unlock(hotplug_loop);
- }
- // Channel maps that match the order in SDL_Audio.h
- static const enum spa_audio_channel PIPEWIRE_channel_map_1[] = { SPA_AUDIO_CHANNEL_MONO };
- static const enum spa_audio_channel PIPEWIRE_channel_map_2[] = { SPA_AUDIO_CHANNEL_FL, SPA_AUDIO_CHANNEL_FR };
- static const enum spa_audio_channel PIPEWIRE_channel_map_3[] = { SPA_AUDIO_CHANNEL_FL, SPA_AUDIO_CHANNEL_FR, SPA_AUDIO_CHANNEL_LFE };
- static const enum spa_audio_channel PIPEWIRE_channel_map_4[] = { SPA_AUDIO_CHANNEL_FL, SPA_AUDIO_CHANNEL_FR, SPA_AUDIO_CHANNEL_RL,
- SPA_AUDIO_CHANNEL_RR };
- static const enum spa_audio_channel PIPEWIRE_channel_map_5[] = { SPA_AUDIO_CHANNEL_FL, SPA_AUDIO_CHANNEL_FR, SPA_AUDIO_CHANNEL_FC,
- SPA_AUDIO_CHANNEL_RL, SPA_AUDIO_CHANNEL_RR };
- static const enum spa_audio_channel PIPEWIRE_channel_map_6[] = { SPA_AUDIO_CHANNEL_FL, SPA_AUDIO_CHANNEL_FR, SPA_AUDIO_CHANNEL_FC,
- SPA_AUDIO_CHANNEL_LFE, SPA_AUDIO_CHANNEL_RL, SPA_AUDIO_CHANNEL_RR };
- static const enum spa_audio_channel PIPEWIRE_channel_map_7[] = { SPA_AUDIO_CHANNEL_FL, SPA_AUDIO_CHANNEL_FR, SPA_AUDIO_CHANNEL_FC,
- SPA_AUDIO_CHANNEL_LFE, SPA_AUDIO_CHANNEL_RC, SPA_AUDIO_CHANNEL_RL,
- SPA_AUDIO_CHANNEL_RR };
- static const enum spa_audio_channel PIPEWIRE_channel_map_8[] = { SPA_AUDIO_CHANNEL_FL, SPA_AUDIO_CHANNEL_FR, SPA_AUDIO_CHANNEL_FC,
- SPA_AUDIO_CHANNEL_LFE, SPA_AUDIO_CHANNEL_RL, SPA_AUDIO_CHANNEL_RR,
- SPA_AUDIO_CHANNEL_SL, SPA_AUDIO_CHANNEL_SR };
- #define COPY_CHANNEL_MAP(c) SDL_memcpy(info->position, PIPEWIRE_channel_map_##c, sizeof(PIPEWIRE_channel_map_##c))
- static void initialize_spa_info(const SDL_AudioSpec *spec, struct spa_audio_info_raw *info)
- {
- info->channels = spec->channels;
- info->rate = spec->freq;
- switch (spec->channels) {
- case 1:
- COPY_CHANNEL_MAP(1);
- break;
- case 2:
- COPY_CHANNEL_MAP(2);
- break;
- case 3:
- COPY_CHANNEL_MAP(3);
- break;
- case 4:
- COPY_CHANNEL_MAP(4);
- break;
- case 5:
- COPY_CHANNEL_MAP(5);
- break;
- case 6:
- COPY_CHANNEL_MAP(6);
- break;
- case 7:
- COPY_CHANNEL_MAP(7);
- break;
- case 8:
- COPY_CHANNEL_MAP(8);
- break;
- }
- // Pipewire natively supports all of SDL's sample formats
- switch (spec->format) {
- case SDL_AUDIO_U8:
- info->format = SPA_AUDIO_FORMAT_U8;
- break;
- case SDL_AUDIO_S8:
- info->format = SPA_AUDIO_FORMAT_S8;
- break;
- case SDL_AUDIO_S16LE:
- info->format = SPA_AUDIO_FORMAT_S16_LE;
- break;
- case SDL_AUDIO_S16BE:
- info->format = SPA_AUDIO_FORMAT_S16_BE;
- break;
- case SDL_AUDIO_S32LE:
- info->format = SPA_AUDIO_FORMAT_S32_LE;
- break;
- case SDL_AUDIO_S32BE:
- info->format = SPA_AUDIO_FORMAT_S32_BE;
- break;
- case SDL_AUDIO_F32LE:
- info->format = SPA_AUDIO_FORMAT_F32_LE;
- break;
- case SDL_AUDIO_F32BE:
- info->format = SPA_AUDIO_FORMAT_F32_BE;
- break;
- default:
- info->format = SPA_AUDIO_FORMAT_UNKNOWN;
- break;
- }
- }
- static Uint8 *PIPEWIRE_GetDeviceBuf(SDL_AudioDevice *device, int *buffer_size)
- {
- // See if a buffer is available. If this returns NULL, SDL_PlaybackAudioThreadIterate will return false, but since we own the thread, it won't kill playback.
- // !!! FIXME: It's not clear to me if this ever returns NULL or if this was just defensive coding.
- struct pw_stream *stream = device->hidden->stream;
- struct pw_buffer *pw_buf = PIPEWIRE_pw_stream_dequeue_buffer(stream);
- if (pw_buf == NULL) {
- return NULL;
- }
- struct spa_buffer *spa_buf = pw_buf->buffer;
- if (spa_buf->datas[0].data == NULL) {
- PIPEWIRE_pw_stream_queue_buffer(stream, pw_buf);
- return NULL;
- }
- device->hidden->pw_buf = pw_buf;
- return (Uint8 *) spa_buf->datas[0].data;
- }
- static bool PIPEWIRE_PlayDevice(SDL_AudioDevice *device, const Uint8 *buffer, int buffer_size)
- {
- struct pw_stream *stream = device->hidden->stream;
- struct pw_buffer *pw_buf = device->hidden->pw_buf;
- struct spa_buffer *spa_buf = pw_buf->buffer;
- spa_buf->datas[0].chunk->offset = 0;
- spa_buf->datas[0].chunk->stride = device->hidden->stride;
- spa_buf->datas[0].chunk->size = buffer_size;
- PIPEWIRE_pw_stream_queue_buffer(stream, pw_buf);
- device->hidden->pw_buf = NULL;
- return true;
- }
- static void output_callback(void *data)
- {
- SDL_AudioDevice *device = (SDL_AudioDevice *) data;
- // this callback can fire in a background thread during OpenDevice, while we're still blocking
- // _with the device lock_ until the stream is ready, causing a deadlock. Write silence in this case.
- if (device->hidden->stream_init_status != PW_READY_FLAG_ALL_BITS) {
- int bufsize = 0;
- Uint8 *buf = PIPEWIRE_GetDeviceBuf(device, &bufsize);
- if (buf && bufsize) {
- SDL_memset(buf, device->silence_value, bufsize);
- }
- PIPEWIRE_PlayDevice(device, buf, bufsize);
- return;
- }
- SDL_PlaybackAudioThreadIterate(device);
- }
- static void PIPEWIRE_FlushRecording(SDL_AudioDevice *device)
- {
- struct pw_stream *stream = device->hidden->stream;
- struct pw_buffer *pw_buf = PIPEWIRE_pw_stream_dequeue_buffer(stream);
- if (pw_buf) { // just requeue it without any further thought.
- PIPEWIRE_pw_stream_queue_buffer(stream, pw_buf);
- }
- }
- static int PIPEWIRE_RecordDevice(SDL_AudioDevice *device, void *buffer, int buflen)
- {
- struct pw_stream *stream = device->hidden->stream;
- struct pw_buffer *pw_buf = PIPEWIRE_pw_stream_dequeue_buffer(stream);
- if (!pw_buf) {
- return 0;
- }
- struct spa_buffer *spa_buf = pw_buf->buffer;
- if (!spa_buf) {
- PIPEWIRE_pw_stream_queue_buffer(stream, pw_buf);
- return 0;
- }
- const Uint8 *src = (const Uint8 *)spa_buf->datas[0].data;
- const Uint32 offset = SPA_MIN(spa_buf->datas[0].chunk->offset, spa_buf->datas[0].maxsize);
- const Uint32 size = SPA_MIN(spa_buf->datas[0].chunk->size, spa_buf->datas[0].maxsize - offset);
- const int cpy = SDL_min(buflen, (int) size);
- SDL_assert(size <= buflen); // We'll have to reengineer some stuff if this turns out to not be true.
- SDL_memcpy(buffer, src + offset, cpy);
- PIPEWIRE_pw_stream_queue_buffer(stream, pw_buf);
- return cpy;
- }
- static void input_callback(void *data)
- {
- SDL_AudioDevice *device = (SDL_AudioDevice *) data;
- // this callback can fire in a background thread during OpenDevice, while we're still blocking
- // _with the device lock_ until the stream is ready, causing a deadlock. Drop data in this case.
- if (device->hidden->stream_init_status != PW_READY_FLAG_ALL_BITS) {
- PIPEWIRE_FlushRecording(device);
- return;
- }
- SDL_RecordingAudioThreadIterate(device);
- }
- static void stream_add_buffer_callback(void *data, struct pw_buffer *buffer)
- {
- SDL_AudioDevice *device = (SDL_AudioDevice *) data;
- if (device->recording == false) {
- /* Clamp the output spec samples and size to the max size of the Pipewire buffer.
- If they exceed the maximum size of the Pipewire buffer, double buffering will be used. */
- if (device->buffer_size > buffer->buffer->datas[0].maxsize) {
- SDL_LockMutex(device->lock);
- device->sample_frames = buffer->buffer->datas[0].maxsize / device->hidden->stride;
- device->buffer_size = buffer->buffer->datas[0].maxsize;
- SDL_UnlockMutex(device->lock);
- }
- }
- device->hidden->stream_init_status |= PW_READY_FLAG_BUFFER_ADDED;
- PIPEWIRE_pw_thread_loop_signal(device->hidden->loop, false);
- }
- static void stream_state_changed_callback(void *data, enum pw_stream_state old, enum pw_stream_state state, const char *error)
- {
- SDL_AudioDevice *device = (SDL_AudioDevice *) data;
- if (state == PW_STREAM_STATE_STREAMING) {
- device->hidden->stream_init_status |= PW_READY_FLAG_STREAM_READY;
- }
- if (state == PW_STREAM_STATE_STREAMING || state == PW_STREAM_STATE_ERROR) {
- PIPEWIRE_pw_thread_loop_signal(device->hidden->loop, false);
- }
- }
- static const struct pw_stream_events stream_output_events = { PW_VERSION_STREAM_EVENTS,
- .state_changed = stream_state_changed_callback,
- .add_buffer = stream_add_buffer_callback,
- .process = output_callback };
- static const struct pw_stream_events stream_input_events = { PW_VERSION_STREAM_EVENTS,
- .state_changed = stream_state_changed_callback,
- .add_buffer = stream_add_buffer_callback,
- .process = input_callback };
- static bool PIPEWIRE_OpenDevice(SDL_AudioDevice *device)
- {
- /*
- * NOTE: The PW_STREAM_FLAG_RT_PROCESS flag can be set to call the stream
- * processing callback from the realtime thread. However, it comes with some
- * caveats: no file IO, allocations, locking or other blocking operations
- * must occur in the mixer callback. As this cannot be guaranteed when the
- * callback is in the calling application, this flag is omitted.
- */
- static const enum pw_stream_flags STREAM_FLAGS = PW_STREAM_FLAG_AUTOCONNECT | PW_STREAM_FLAG_MAP_BUFFERS;
- char thread_name[PW_THREAD_NAME_BUFFER_LENGTH];
- Uint8 pod_buffer[PW_POD_BUFFER_LENGTH];
- struct spa_pod_builder b = SPA_POD_BUILDER_INIT(pod_buffer, sizeof(pod_buffer));
- struct spa_audio_info_raw spa_info = { 0 };
- const struct spa_pod *params = NULL;
- struct SDL_PrivateAudioData *priv;
- struct pw_properties *props;
- const char *app_name, *icon_name, *app_id, *stream_name, *stream_role, *error;
- Uint32 node_id = !device->handle ? PW_ID_ANY : PW_HANDLE_TO_ID(device->handle);
- const bool recording = device->recording;
- int res;
- // Clamp the period size to sane values
- const int min_period = PW_MIN_SAMPLES * SPA_MAX(device->spec.freq / PW_BASE_CLOCK_RATE, 1);
- // Get the hints for the application name, icon name, stream name and role
- app_name = SDL_GetAppMetadataProperty(SDL_PROP_APP_METADATA_NAME_STRING);
- icon_name = SDL_GetHint(SDL_HINT_AUDIO_DEVICE_APP_ICON_NAME);
- if (!icon_name || *icon_name == '\0') {
- icon_name = "applications-games";
- }
- // App ID. Default to NULL if not available.
- app_id = SDL_GetAppMetadataProperty(SDL_PROP_APP_METADATA_IDENTIFIER_STRING);
- stream_name = SDL_GetHint(SDL_HINT_AUDIO_DEVICE_STREAM_NAME);
- if (!stream_name || *stream_name == '\0') {
- if (app_name) {
- stream_name = app_name;
- } else if (app_id) {
- stream_name = app_id;
- } else {
- stream_name = "SDL Audio Stream";
- }
- }
- /*
- * 'Music' is the default used internally by Pipewire and it's modules,
- * but 'Game' seems more appropriate for the majority of SDL applications.
- */
- stream_role = SDL_GetHint(SDL_HINT_AUDIO_DEVICE_STREAM_ROLE);
- if (!stream_role || *stream_role == '\0') {
- stream_role = "Game";
- }
- // Initialize the Pipewire stream info from the SDL audio spec
- initialize_spa_info(&device->spec, &spa_info);
- params = spa_format_audio_raw_build(&b, SPA_PARAM_EnumFormat, &spa_info);
- if (!params) {
- return SDL_SetError("Pipewire: Failed to set audio format parameters");
- }
- priv = SDL_calloc(1, sizeof(struct SDL_PrivateAudioData));
- device->hidden = priv;
- if (!priv) {
- return false;
- }
- // Size of a single audio frame in bytes
- priv->stride = SDL_AUDIO_FRAMESIZE(device->spec);
- if (device->sample_frames < min_period) {
- device->sample_frames = min_period;
- }
- SDL_UpdatedAudioDeviceFormat(device);
- SDL_GetAudioThreadName(device, thread_name, sizeof(thread_name));
- priv->loop = PIPEWIRE_pw_thread_loop_new(thread_name, NULL);
- if (!priv->loop) {
- return SDL_SetError("Pipewire: Failed to create stream loop (%i)", errno);
- }
- // Load the realtime module so Pipewire can set the loop thread to the appropriate priority.
- props = PIPEWIRE_pw_properties_new(PW_KEY_CONFIG_NAME, "client-rt.conf", NULL);
- if (!props) {
- return SDL_SetError("Pipewire: Failed to create stream context properties (%i)", errno);
- }
- priv->context = PIPEWIRE_pw_context_new(PIPEWIRE_pw_thread_loop_get_loop(priv->loop), props, 0);
- if (!priv->context) {
- return SDL_SetError("Pipewire: Failed to create stream context (%i)", errno);
- }
- props = PIPEWIRE_pw_properties_new(NULL, NULL);
- if (!props) {
- return SDL_SetError("Pipewire: Failed to create stream properties (%i)", errno);
- }
- PIPEWIRE_pw_properties_set(props, PW_KEY_MEDIA_TYPE, "Audio");
- PIPEWIRE_pw_properties_set(props, PW_KEY_MEDIA_CATEGORY, recording ? "Capture" : "Playback");
- PIPEWIRE_pw_properties_set(props, PW_KEY_MEDIA_ROLE, stream_role);
- PIPEWIRE_pw_properties_set(props, PW_KEY_APP_NAME, app_name);
- PIPEWIRE_pw_properties_set(props, PW_KEY_APP_ICON_NAME, icon_name);
- if (app_id) {
- PIPEWIRE_pw_properties_set(props, PW_KEY_APP_ID, app_id);
- }
- PIPEWIRE_pw_properties_set(props, PW_KEY_NODE_NAME, stream_name);
- PIPEWIRE_pw_properties_set(props, PW_KEY_NODE_DESCRIPTION, stream_name);
- PIPEWIRE_pw_properties_setf(props, PW_KEY_NODE_LATENCY, "%u/%i", device->sample_frames, device->spec.freq);
- PIPEWIRE_pw_properties_setf(props, PW_KEY_NODE_RATE, "1/%u", device->spec.freq);
- PIPEWIRE_pw_properties_set(props, PW_KEY_NODE_ALWAYS_PROCESS, "true");
- // UPDATE: This prevents users from moving the audio to a new sink (device) using standard tools. This is slightly in conflict
- // with how SDL wants to manage audio devices, but if people want to do it, we should let them, so this is commented out
- // for now. We might revisit later.
- //PIPEWIRE_pw_properties_set(props, PW_KEY_NODE_DONT_RECONNECT, "true"); // Requesting a specific device, don't migrate to new default hardware.
- if (node_id != PW_ID_ANY) {
- PIPEWIRE_pw_thread_loop_lock(hotplug_loop);
- const struct io_node *node = io_list_get_by_id(node_id);
- if (node) {
- PIPEWIRE_pw_properties_set(props, PW_KEY_TARGET_OBJECT, node->path);
- }
- PIPEWIRE_pw_thread_loop_unlock(hotplug_loop);
- }
- // Create the new stream
- priv->stream = PIPEWIRE_pw_stream_new_simple(PIPEWIRE_pw_thread_loop_get_loop(priv->loop), stream_name, props,
- recording ? &stream_input_events : &stream_output_events, device);
- if (!priv->stream) {
- return SDL_SetError("Pipewire: Failed to create stream (%i)", errno);
- }
- // The target node is passed via PW_KEY_TARGET_OBJECT; target_id is a legacy parameter and must be PW_ID_ANY.
- res = PIPEWIRE_pw_stream_connect(priv->stream, recording ? PW_DIRECTION_INPUT : PW_DIRECTION_OUTPUT, PW_ID_ANY, STREAM_FLAGS,
- ¶ms, 1);
- if (res != 0) {
- return SDL_SetError("Pipewire: Failed to connect stream");
- }
- res = PIPEWIRE_pw_thread_loop_start(priv->loop);
- if (res != 0) {
- return SDL_SetError("Pipewire: Failed to start stream loop");
- }
- // Wait until all pre-open init flags are set or the stream has failed.
- PIPEWIRE_pw_thread_loop_lock(priv->loop);
- while (priv->stream_init_status != PW_READY_FLAG_ALL_PREOPEN_BITS &&
- PIPEWIRE_pw_stream_get_state(priv->stream, NULL) != PW_STREAM_STATE_ERROR) {
- PIPEWIRE_pw_thread_loop_wait(priv->loop);
- }
- priv->stream_init_status |= PW_READY_FLAG_OPEN_COMPLETE;
- PIPEWIRE_pw_thread_loop_unlock(priv->loop);
- if (PIPEWIRE_pw_stream_get_state(priv->stream, &error) == PW_STREAM_STATE_ERROR) {
- return SDL_SetError("Pipewire: Stream error: %s", error);
- }
- return true;
- }
- static void PIPEWIRE_CloseDevice(SDL_AudioDevice *device)
- {
- if (!device->hidden) {
- return;
- }
- if (device->hidden->loop) {
- PIPEWIRE_pw_thread_loop_stop(device->hidden->loop);
- }
- if (device->hidden->stream) {
- PIPEWIRE_pw_stream_destroy(device->hidden->stream);
- }
- if (device->hidden->context) {
- PIPEWIRE_pw_context_destroy(device->hidden->context);
- }
- if (device->hidden->loop) {
- PIPEWIRE_pw_thread_loop_destroy(device->hidden->loop);
- }
- SDL_free(device->hidden);
- device->hidden = NULL;
- SDL_AudioThreadFinalize(device);
- }
- static void PIPEWIRE_DeinitializeStart(void)
- {
- if (pipewire_initialized) {
- hotplug_loop_destroy();
- }
- }
- static void PIPEWIRE_Deinitialize(void)
- {
- if (pipewire_initialized) {
- hotplug_loop_destroy();
- deinit_pipewire_library();
- pipewire_initialized = false;
- }
- }
- static bool PipewireInitialize(SDL_AudioDriverImpl *impl)
- {
- if (!pipewire_initialized) {
- if (!init_pipewire_library()) {
- return false;
- }
- pipewire_initialized = true;
- if (!hotplug_loop_init()) {
- PIPEWIRE_Deinitialize();
- return false;
- }
- }
- impl->DetectDevices = PIPEWIRE_DetectDevices;
- impl->OpenDevice = PIPEWIRE_OpenDevice;
- impl->DeinitializeStart = PIPEWIRE_DeinitializeStart;
- impl->Deinitialize = PIPEWIRE_Deinitialize;
- impl->PlayDevice = PIPEWIRE_PlayDevice;
- impl->GetDeviceBuf = PIPEWIRE_GetDeviceBuf;
- impl->RecordDevice = PIPEWIRE_RecordDevice;
- impl->FlushRecording = PIPEWIRE_FlushRecording;
- impl->CloseDevice = PIPEWIRE_CloseDevice;
- impl->HasRecordingSupport = true;
- impl->ProvidesOwnCallbackThread = true;
- return true;
- }
- static bool PIPEWIRE_PREFERRED_Init(SDL_AudioDriverImpl *impl)
- {
- if (!PipewireInitialize(impl)) {
- return false;
- }
- // run device detection but don't add any devices to SDL; we're just waiting to see if PipeWire sees any devices. If not, fall back to the next backend.
- PIPEWIRE_pw_thread_loop_lock(hotplug_loop);
- // Wait until the initial registry enumeration is complete
- if (!hotplug_init_complete) {
- PIPEWIRE_pw_thread_loop_wait(hotplug_loop);
- }
- const bool no_devices = spa_list_is_empty(&hotplug_io_list);
- PIPEWIRE_pw_thread_loop_unlock(hotplug_loop);
- if (no_devices || !pipewire_core_version_at_least(1, 0, 0)) {
- PIPEWIRE_Deinitialize();
- return false;
- }
- return true; // this will move on to PIPEWIRE_DetectDevices and reuse hotplug_io_list.
- }
- static bool PIPEWIRE_Init(SDL_AudioDriverImpl *impl)
- {
- return PipewireInitialize(impl);
- }
- AudioBootStrap PIPEWIRE_PREFERRED_bootstrap = {
- "pipewire", "Pipewire", PIPEWIRE_PREFERRED_Init, false, true
- };
- AudioBootStrap PIPEWIRE_bootstrap = {
- "pipewire", "Pipewire", PIPEWIRE_Init, false, false
- };
- #endif // SDL_AUDIO_DRIVER_PIPEWIRE
|