| 
									
										
										
										
											2023-02-08 18:12:00 +01:00
										 |  |  | /* PCM - PipeWire plugin */ | 
					
						
							|  |  |  | /* SPDX-FileCopyrightText: Copyright © 2017 Wim Taymans */ | 
					
						
							|  |  |  | /* SPDX-License-Identifier: MIT */ | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define __USE_GNU
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-22 17:39:15 +02:00
										 |  |  | #include <limits.h>
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | #include <sys/shm.h>
 | 
					
						
							|  |  |  | #include <sys/types.h>
 | 
					
						
							|  |  |  | #include <sys/socket.h>
 | 
					
						
							|  |  |  | #include <sys/mman.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <alsa/asoundlib.h>
 | 
					
						
							|  |  |  | #include <alsa/pcm_external.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-10 13:39:59 +01:00
										 |  |  | #include <spa/param/audio/format-utils.h>
 | 
					
						
							| 
									
										
										
										
											2020-09-04 12:23:11 +02:00
										 |  |  | #include <spa/debug/types.h>
 | 
					
						
							| 
									
										
										
										
											2017-11-10 13:39:59 +01:00
										 |  |  | #include <spa/param/props.h>
 | 
					
						
							| 
									
										
										
										
											2023-07-13 12:25:22 +02:00
										 |  |  | #include <spa/utils/atomic.h>
 | 
					
						
							| 
									
										
										
										
											2024-06-25 16:32:13 -07:00
										 |  |  | #include <spa/utils/endian.h>
 | 
					
						
							| 
									
										
										
										
											2019-10-25 14:54:00 +02:00
										 |  |  | #include <spa/utils/result.h>
 | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | #include <spa/utils/string.h>
 | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | #include <spa/utils/json.h>
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <pipewire/pipewire.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-03 08:16:55 +02:00
										 |  |  | PW_LOG_TOPIC_STATIC(alsa_log_topic, "alsa.pcm"); | 
					
						
							|  |  |  | #define PW_LOG_TOPIC_DEFAULT alsa_log_topic
 | 
					
						
							| 
									
										
										
										
											2019-12-05 13:17:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-04 12:23:11 +02:00
										 |  |  | #define MIN_BUFFERS	2u
 | 
					
						
							| 
									
										
										
										
											2019-01-07 15:05:48 +01:00
										 |  |  | #define MAX_BUFFERS	64u
 | 
					
						
							| 
									
										
										
										
											2018-07-03 22:05:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-01 11:41:46 +02:00
										 |  |  | #define MAX_CHANNELS	64
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | #define MAX_RATE	(48000*8)
 | 
					
						
							| 
									
										
										
										
											2018-03-14 12:00:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-16 10:02:10 +02:00
										 |  |  | #define MIN_PERIOD	64
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-20 16:13:59 +02:00
										 |  |  | #define MIN_PERIOD_BYTES	(128)
 | 
					
						
							|  |  |  | #define MAX_PERIOD_BYTES	(2*1024*1024)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MIN_BUFFER_BYTES	(2*MIN_PERIOD_BYTES)
 | 
					
						
							|  |  |  | #define MAX_BUFFER_BYTES	(2*MAX_PERIOD_BYTES)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  | 	snd_pcm_ioplug_t io; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-12 13:29:39 +02:00
										 |  |  | 	snd_output_t *output; | 
					
						
							|  |  |  | 	FILE *log_file; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	int fd; | 
					
						
							| 
									
										
										
										
											2020-04-07 17:38:39 +02:00
										 |  |  | 	int error; | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 	unsigned int activated:1;	/* PipeWire is activated? */ | 
					
						
							|  |  |  | 	unsigned int drained:1; | 
					
						
							|  |  |  | 	unsigned int draining:1; | 
					
						
							| 
									
										
										
										
											2020-05-13 12:09:28 +02:00
										 |  |  | 	unsigned int xrun_detected:1; | 
					
						
							| 
									
										
										
										
											2021-11-02 14:46:10 +01:00
										 |  |  | 	unsigned int hw_params_changed:1; | 
					
						
							| 
									
										
										
										
											2023-04-25 15:04:43 +02:00
										 |  |  | 	unsigned int negotiated:1; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 	snd_pcm_uframes_t hw_ptr; | 
					
						
							|  |  |  | 	snd_pcm_uframes_t boundary; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	snd_pcm_uframes_t min_avail; | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 	unsigned int sample_bits; | 
					
						
							| 
									
										
										
										
											2020-09-04 13:49:51 +02:00
										 |  |  | 	uint32_t blocks; | 
					
						
							|  |  |  | 	uint32_t stride; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-13 11:34:25 +01:00
										 |  |  | 	struct spa_system *system; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	struct pw_thread_loop *main_loop; | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	struct pw_properties *props; | 
					
						
							| 
									
										
										
										
											2019-12-10 18:19:56 +01:00
										 |  |  | 	struct pw_context *context; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 07:46:59 +01:00
										 |  |  | 	struct pw_core *core; | 
					
						
							| 
									
										
										
										
											2019-12-06 11:48:40 +01:00
										 |  |  | 	struct spa_hook core_listener; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	struct pw_stream *stream; | 
					
						
							|  |  |  | 	struct spa_hook stream_listener; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 	int64_t delay; | 
					
						
							| 
									
										
										
										
											2024-05-20 10:45:04 -03:00
										 |  |  | 	uint64_t transferred; | 
					
						
							| 
									
										
										
										
											2022-10-25 16:27:46 +02:00
										 |  |  | 	uint64_t buffered; | 
					
						
							|  |  |  | 	int64_t now; | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 	uintptr_t seq; | 
					
						
							| 
									
										
										
										
											2021-01-08 16:55:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	struct spa_audio_info requested; | 
					
						
							|  |  |  | 	struct spa_audio_info format; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | } snd_pcm_pipewire_t; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int snd_pcm_pipewire_stop(snd_pcm_ioplug_t *io); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-15 15:40:02 +01:00
										 |  |  | static int update_active(snd_pcm_ioplug_t *io) | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-03-02 15:03:27 +01:00
										 |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	snd_pcm_sframes_t avail; | 
					
						
							| 
									
										
										
										
											2024-05-07 10:07:30 +02:00
										 |  |  | 	bool active; | 
					
						
							|  |  |  | 	uint64_t val; | 
					
						
							| 
									
										
										
										
											2021-03-02 15:03:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	avail = snd_pcm_ioplug_avail(io, pw->hw_ptr, io->appl_ptr); | 
					
						
							| 
									
										
										
										
											2022-09-09 16:33:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-15 15:40:02 +01:00
										 |  |  | 	if (pw->error > 0) { | 
					
						
							|  |  |  | 		active = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (io->state == SND_PCM_STATE_DRAINING) { | 
					
						
							| 
									
										
										
										
											2022-09-13 17:20:02 +02:00
										 |  |  | 		active = pw->drained; | 
					
						
							| 
									
										
										
										
											2021-03-02 15:03:27 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-09-13 17:20:02 +02:00
										 |  |  | 	else if (avail >= 0 && avail < (snd_pcm_sframes_t)pw->min_avail) { | 
					
						
							|  |  |  | 		active = false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (avail >= (snd_pcm_sframes_t)pw->min_avail) { | 
					
						
							|  |  |  | 		active = true; | 
					
						
							| 
									
										
										
										
											2023-11-15 15:40:02 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2022-09-13 17:20:02 +02:00
										 |  |  | 		active = false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-11-15 15:40:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-07 10:07:30 +02:00
										 |  |  | 	pw_log_trace("%p: avail:%lu min-avail:%lu state:%s hw:%lu appl:%lu active:%d state:%s", | 
					
						
							|  |  |  | 		pw, avail, pw->min_avail, snd_pcm_state_name(io->state), | 
					
						
							|  |  |  | 		pw->hw_ptr, io->appl_ptr, active, | 
					
						
							|  |  |  | 		snd_pcm_state_name(io->state)); | 
					
						
							| 
									
										
										
										
											2023-11-15 15:40:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-07 10:07:30 +02:00
										 |  |  | 	if (active) | 
					
						
							|  |  |  | 		spa_system_eventfd_write(pw->system, io->poll_fd, 1); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		spa_system_eventfd_read(pw->system, io->poll_fd, &val); | 
					
						
							| 
									
										
										
										
											2024-04-16 09:30:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-13 17:20:02 +02:00
										 |  |  | 	return active; | 
					
						
							| 
									
										
										
										
											2021-03-02 15:03:27 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | static void snd_pcm_pipewire_free(snd_pcm_pipewire_t *pw) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 	if (pw == NULL) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 10:09:00 +02:00
										 |  |  | 	pw_log_debug("%p: free", pw); | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 	if (pw->main_loop) | 
					
						
							|  |  |  | 		pw_thread_loop_stop(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2021-09-15 15:49:57 +02:00
										 |  |  | 	if (pw->stream) | 
					
						
							|  |  |  | 		pw_stream_destroy(pw->stream); | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 	if (pw->context) | 
					
						
							|  |  |  | 		pw_context_destroy(pw->context); | 
					
						
							|  |  |  | 	if (pw->fd >= 0) | 
					
						
							|  |  |  | 		spa_system_close(pw->system, pw->fd); | 
					
						
							|  |  |  | 	if (pw->main_loop) | 
					
						
							|  |  |  | 		pw_thread_loop_destroy(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	pw_properties_free(pw->props); | 
					
						
							| 
									
										
										
										
											2022-09-12 13:29:39 +02:00
										 |  |  | 	snd_output_close(pw->output); | 
					
						
							|  |  |  | 	fclose(pw->log_file); | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 	free(pw); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int snd_pcm_pipewire_close(snd_pcm_ioplug_t *io) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							| 
									
										
										
										
											2022-09-09 10:09:00 +02:00
										 |  |  | 	pw_log_debug("%p: close", pw); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	snd_pcm_pipewire_free(pw); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int snd_pcm_pipewire_poll_revents(snd_pcm_ioplug_t *io, | 
					
						
							|  |  |  | 				     struct pollfd *pfds, unsigned int nfds, | 
					
						
							|  |  |  | 				     unsigned short *revents) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-10 13:39:59 +01:00
										 |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	assert(pfds && nfds == 1 && revents); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 17:38:39 +02:00
										 |  |  | 	if (pw->error < 0) | 
					
						
							|  |  |  | 		return pw->error; | 
					
						
							| 
									
										
										
										
											2017-11-10 13:39:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	*revents = pfds[0].revents & ~(POLLIN | POLLOUT); | 
					
						
							| 
									
										
										
										
											2023-11-15 16:35:17 +01:00
										 |  |  | 	if (pfds[0].revents & POLLIN && update_active(io)) | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 		*revents |= (io->stream == SND_PCM_STREAM_PLAYBACK) ? POLLOUT : POLLIN; | 
					
						
							| 
									
										
										
										
											2023-11-15 15:40:02 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	pw_log_trace_fp("poll %d", *revents); | 
					
						
							| 
									
										
										
										
											2017-11-10 13:39:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static snd_pcm_sframes_t snd_pcm_pipewire_pointer(snd_pcm_ioplug_t *io) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							| 
									
										
										
										
											2020-05-13 12:09:28 +02:00
										 |  |  | 	if (pw->xrun_detected) | 
					
						
							|  |  |  | 		return -EPIPE; | 
					
						
							| 
									
										
										
										
											2020-04-07 17:38:39 +02:00
										 |  |  | 	if (pw->error < 0) | 
					
						
							|  |  |  | 		return pw->error; | 
					
						
							| 
									
										
										
										
											2020-09-07 14:57:47 +02:00
										 |  |  | 	if (io->buffer_size == 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2020-05-13 12:09:28 +02:00
										 |  |  | #ifdef SND_PCM_IOPLUG_FLAG_BOUNDARY_WA
 | 
					
						
							| 
									
										
										
										
											2020-04-07 17:48:28 +02:00
										 |  |  | 	return pw->hw_ptr; | 
					
						
							| 
									
										
										
										
											2020-05-13 12:09:28 +02:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 	return pw->hw_ptr % io->buffer_size; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-09 10:50:39 +01:00
										 |  |  | static int snd_pcm_pipewire_delay(snd_pcm_ioplug_t *io, snd_pcm_sframes_t *delayp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 	uintptr_t seq1, seq2; | 
					
						
							| 
									
										
										
										
											2022-09-09 18:11:23 +02:00
										 |  |  | 	int64_t elapsed = 0, delay, now, avail; | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 	int64_t diff; | 
					
						
							| 
									
										
										
										
											2022-09-09 16:36:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 	do { | 
					
						
							| 
									
										
										
										
											2023-07-13 12:25:22 +02:00
										 |  |  | 		seq1 = SPA_SEQ_READ(pw->seq); | 
					
						
							| 
									
										
										
										
											2022-09-09 16:36:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-20 10:45:04 -03:00
										 |  |  | 		delay = pw->delay + pw->transferred; | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 		now = pw->now; | 
					
						
							|  |  |  | 		if (io->stream == SND_PCM_STREAM_PLAYBACK) | 
					
						
							|  |  |  | 			avail = snd_pcm_ioplug_hw_avail(io, pw->hw_ptr, io->appl_ptr); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			avail = snd_pcm_ioplug_avail(io, pw->hw_ptr, io->appl_ptr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-13 12:25:22 +02:00
										 |  |  | 		seq2 = SPA_SEQ_READ(pw->seq); | 
					
						
							|  |  |  | 	} while (!SPA_SEQ_READ_SUCCESS(seq1, seq2)); | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 18:13:02 +02:00
										 |  |  | 	if (now != 0 && (io->state == SND_PCM_STATE_RUNNING || | 
					
						
							|  |  |  | 	    io->state == SND_PCM_STATE_DRAINING)) { | 
					
						
							| 
									
										
										
										
											2024-03-04 12:59:26 +01:00
										 |  |  | 		diff = pw_stream_get_nsec(pw->stream) - now; | 
					
						
							| 
									
										
										
										
											2022-09-09 18:11:23 +02:00
										 |  |  | 		elapsed = (io->rate * diff) / SPA_NSEC_PER_SEC; | 
					
						
							| 
									
										
										
										
											2021-01-09 10:50:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 18:11:23 +02:00
										 |  |  | 		if (io->stream == SND_PCM_STREAM_PLAYBACK) | 
					
						
							|  |  |  | 			delay -= SPA_MIN(elapsed, delay); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			delay += SPA_MIN(elapsed, (int64_t)io->buffer_size); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-09-09 16:36:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 	*delayp = delay + avail; | 
					
						
							| 
									
										
										
										
											2021-01-09 10:50:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 10:09:00 +02:00
										 |  |  | 	pw_log_trace("avail:%"PRIi64" filled %"PRIi64" elapsed:%"PRIi64" delay:%ld hw:%lu appl:%lu", | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 			avail, delay, elapsed, *delayp, pw->hw_ptr, io->appl_ptr); | 
					
						
							| 
									
										
										
										
											2021-11-24 12:10:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-09 10:50:39 +01:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-02 13:56:29 +01:00
										 |  |  | static snd_pcm_uframes_t | 
					
						
							| 
									
										
										
										
											2021-01-15 18:34:38 +01:00
										 |  |  | snd_pcm_pipewire_process(snd_pcm_pipewire_t *pw, struct pw_buffer *b, | 
					
						
							|  |  |  | 		snd_pcm_uframes_t *hw_avail,snd_pcm_uframes_t want) | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_ioplug_t *io = &pw->io; | 
					
						
							|  |  |  | 	snd_pcm_channel_area_t *pwareas; | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 	snd_pcm_uframes_t xfer = 0; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	snd_pcm_uframes_t nframes; | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 	unsigned int channel; | 
					
						
							| 
									
										
										
										
											2017-11-24 12:43:10 +01:00
										 |  |  | 	struct spa_data *d; | 
					
						
							|  |  |  | 	void *ptr; | 
					
						
							| 
									
										
										
										
											2021-11-25 12:32:24 +01:00
										 |  |  | 	uint32_t bl, offset, size; | 
					
						
							| 
									
										
										
										
											2017-11-24 12:43:10 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	d = b->buffer->datas; | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 	pwareas = alloca(io->channels * sizeof(snd_pcm_channel_area_t)); | 
					
						
							| 
									
										
										
										
											2017-11-24 12:43:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-25 12:32:24 +01:00
										 |  |  | 	for (bl = 0; bl < pw->blocks; bl++) { | 
					
						
							|  |  |  | 		if (io->stream == SND_PCM_STREAM_PLAYBACK) { | 
					
						
							|  |  |  | 			size = SPA_MIN(d[bl].maxsize, pw->min_avail * pw->stride); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			offset = SPA_MIN(d[bl].chunk->offset, d[bl].maxsize); | 
					
						
							|  |  |  | 			size = SPA_MIN(d[bl].chunk->size, d[bl].maxsize - offset); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		want = SPA_MIN(want, size / pw->stride); | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-01-17 17:20:59 +01:00
										 |  |  | 	nframes = SPA_MIN(want, *hw_avail); | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (pw->blocks == 1) { | 
					
						
							| 
									
										
										
										
											2020-12-18 15:32:27 +01:00
										 |  |  | 		if (io->stream == SND_PCM_STREAM_PLAYBACK) { | 
					
						
							| 
									
										
										
										
											2021-01-18 10:03:19 +01:00
										 |  |  | 			d[0].chunk->size = want * pw->stride; | 
					
						
							| 
									
										
										
										
											2021-11-25 12:32:24 +01:00
										 |  |  | 			d[0].chunk->offset = offset = 0; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			offset = SPA_MIN(d[0].chunk->offset, d[0].maxsize); | 
					
						
							| 
									
										
										
										
											2020-12-18 15:32:27 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-11-25 12:32:24 +01:00
										 |  |  | 		ptr = SPA_PTROFF(d[0].data, offset, void); | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 		for (channel = 0; channel < io->channels; channel++) { | 
					
						
							|  |  |  | 			pwareas[channel].addr = ptr; | 
					
						
							|  |  |  | 			pwareas[channel].first = channel * pw->sample_bits; | 
					
						
							|  |  |  | 			pwareas[channel].step = io->channels * pw->sample_bits; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 		for (channel = 0; channel < io->channels; channel++) { | 
					
						
							| 
									
										
										
										
											2020-12-18 15:32:27 +01:00
										 |  |  | 			if (io->stream == SND_PCM_STREAM_PLAYBACK) { | 
					
						
							| 
									
										
										
										
											2021-01-18 10:03:19 +01:00
										 |  |  | 				d[channel].chunk->size = want * pw->stride; | 
					
						
							| 
									
										
										
										
											2021-11-25 12:32:24 +01:00
										 |  |  | 				d[channel].chunk->offset = offset = 0; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				offset = SPA_MIN(d[channel].chunk->offset, d[channel].maxsize); | 
					
						
							| 
									
										
										
										
											2020-12-18 15:32:27 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-11-25 12:32:24 +01:00
										 |  |  | 			ptr = SPA_PTROFF(d[channel].data, offset, void); | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 			pwareas[channel].addr = ptr; | 
					
						
							|  |  |  | 			pwareas[channel].first = 0; | 
					
						
							|  |  |  | 			pwareas[channel].step = pw->sample_bits; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 	if (io->state == SND_PCM_STATE_RUNNING || | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 		io->state == SND_PCM_STATE_DRAINING) { | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 		snd_pcm_uframes_t hw_ptr = pw->hw_ptr; | 
					
						
							| 
									
										
										
										
											2021-01-08 16:55:24 +01:00
										 |  |  | 		xfer = nframes; | 
					
						
							| 
									
										
										
										
											2020-11-01 18:44:14 +01:00
										 |  |  | 		if (xfer > 0) { | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 			const snd_pcm_channel_area_t *areas = snd_pcm_ioplug_mmap_areas(io); | 
					
						
							| 
									
										
										
										
											2023-10-22 17:26:25 +02:00
										 |  |  | 			if (areas != NULL) { | 
					
						
							|  |  |  | 				const snd_pcm_uframes_t offset = hw_ptr % io->buffer_size; | 
					
						
							|  |  |  | 				if (io->stream == SND_PCM_STREAM_PLAYBACK) | 
					
						
							|  |  |  | 					snd_pcm_areas_copy_wrap(pwareas, 0, nframes, | 
					
						
							|  |  |  | 							areas, offset, | 
					
						
							|  |  |  | 							io->buffer_size, | 
					
						
							|  |  |  | 							io->channels, xfer, | 
					
						
							|  |  |  | 							io->format); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					snd_pcm_areas_copy_wrap(areas, offset, | 
					
						
							|  |  |  | 							io->buffer_size, | 
					
						
							|  |  |  | 							pwareas, 0, nframes, | 
					
						
							|  |  |  | 							io->channels, xfer, | 
					
						
							|  |  |  | 							io->format); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 			hw_ptr += xfer; | 
					
						
							| 
									
										
										
										
											2021-12-22 20:03:13 +01:00
										 |  |  | 			if (hw_ptr >= pw->boundary) | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 				hw_ptr -= pw->boundary; | 
					
						
							|  |  |  | 			pw->hw_ptr = hw_ptr; | 
					
						
							| 
									
										
										
										
											2020-11-01 18:44:14 +01:00
										 |  |  | 			*hw_avail -= xfer; | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* check if requested frames were copied */ | 
					
						
							| 
									
										
										
										
											2021-01-15 18:34:38 +01:00
										 |  |  | 	if (xfer < want) { | 
					
						
							| 
									
										
										
										
											2021-01-09 10:50:39 +01:00
										 |  |  | 		/* always fill the not yet written PipeWire buffer with silence */ | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 		if (io->stream == SND_PCM_STREAM_PLAYBACK) { | 
					
						
							| 
									
										
										
										
											2021-01-15 18:34:38 +01:00
										 |  |  | 			const snd_pcm_uframes_t frames = want - xfer; | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			snd_pcm_areas_silence(pwareas, xfer, io->channels, | 
					
						
							| 
									
										
										
										
											2021-01-15 18:34:38 +01:00
										 |  |  | 							  frames, io->format); | 
					
						
							| 
									
										
										
										
											2021-11-02 13:56:29 +01:00
										 |  |  | 			xfer += frames; | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 		if (io->state == SND_PCM_STATE_RUNNING || | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 			io->state == SND_PCM_STATE_DRAINING) { | 
					
						
							| 
									
										
										
										
											2020-09-04 15:21:37 +02:00
										 |  |  | 			/* report Xrun to user application */ | 
					
						
							|  |  |  | 			pw->xrun_detected = true; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-11-02 13:56:29 +01:00
										 |  |  | 	return xfer; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-21 16:14:50 +01:00
										 |  |  | static void on_stream_param_changed(void *data, uint32_t id, const struct spa_pod *param) | 
					
						
							| 
									
										
										
										
											2018-06-22 17:39:15 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = data; | 
					
						
							|  |  |  | 	snd_pcm_ioplug_t *io = &pw->io; | 
					
						
							|  |  |  | 	const struct spa_pod *params[4]; | 
					
						
							|  |  |  | 	uint32_t n_params = 0; | 
					
						
							| 
									
										
										
										
											2020-09-04 12:23:11 +02:00
										 |  |  | 	uint8_t buffer[4096]; | 
					
						
							|  |  |  | 	struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buffer, sizeof(buffer)); | 
					
						
							| 
									
										
										
										
											2020-09-04 13:49:51 +02:00
										 |  |  | 	uint32_t buffers, size; | 
					
						
							| 
									
										
										
										
											2018-10-16 10:02:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-21 16:14:50 +01:00
										 |  |  | 	if (param == NULL || id != SPA_PARAM_Format) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	if (spa_format_audio_parse(param, &pw->format) < 0) { | 
					
						
							|  |  |  | 		pw->error = -EINVAL; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		switch (pw->format.media_subtype) { | 
					
						
							|  |  |  | 		case SPA_MEDIA_SUBTYPE_raw: | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case SPA_MEDIA_SUBTYPE_dsd: | 
					
						
							|  |  |  | 			if (pw->format.info.dsd.interleave != pw->requested.info.dsd.interleave || | 
					
						
							|  |  |  | 			    pw->format.info.dsd.bitorder != pw->requested.info.dsd.bitorder) { | 
					
						
							|  |  |  | 				pw->error = -EINVAL; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (pw->error < 0) { | 
					
						
							|  |  |  | 		pw_thread_loop_signal(pw->main_loop, false); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-16 10:02:10 +02:00
										 |  |  | 	io->period_size = pw->min_avail; | 
					
						
							| 
									
										
										
										
											2020-09-04 12:23:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-16 10:02:10 +02:00
										 |  |  | 	buffers = SPA_CLAMP(io->buffer_size / io->period_size, MIN_BUFFERS, MAX_BUFFERS); | 
					
						
							| 
									
										
										
										
											2020-09-04 13:49:51 +02:00
										 |  |  | 	size = io->period_size * pw->stride; | 
					
						
							| 
									
										
										
										
											2018-07-03 22:05:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-03 08:16:55 +02:00
										 |  |  | 	pw_log_info("%p: buffer_size:%lu period_size:%lu buffers:%u size:%u min_avail:%lu", | 
					
						
							| 
									
										
										
										
											2020-09-04 13:49:51 +02:00
										 |  |  | 			pw, io->buffer_size, io->period_size, buffers, size, pw->min_avail); | 
					
						
							| 
									
										
										
										
											2018-06-22 17:39:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 11:02:22 +01:00
										 |  |  | 	params[n_params++] = spa_pod_builder_add_object(&b, | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 			SPA_TYPE_OBJECT_ParamBuffers, SPA_PARAM_Buffers, | 
					
						
							| 
									
										
										
										
											2019-01-16 11:02:22 +01:00
										 |  |  | 			SPA_PARAM_BUFFERS_buffers, SPA_POD_CHOICE_RANGE_Int(buffers, MIN_BUFFERS, MAX_BUFFERS), | 
					
						
							| 
									
										
										
										
											2020-09-04 13:49:51 +02:00
										 |  |  | 			SPA_PARAM_BUFFERS_blocks,  SPA_POD_Int(pw->blocks), | 
					
						
							| 
									
										
										
										
											2019-01-16 11:02:22 +01:00
										 |  |  | 			SPA_PARAM_BUFFERS_size,    SPA_POD_CHOICE_RANGE_Int(size, size, INT_MAX), | 
					
						
							| 
									
										
										
										
											2022-01-03 12:32:26 +01:00
										 |  |  | 			SPA_PARAM_BUFFERS_stride,  SPA_POD_Int(pw->stride)); | 
					
						
							| 
									
										
										
										
											2018-06-22 17:39:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-21 16:14:50 +01:00
										 |  |  | 	pw_stream_update_params(pw->stream, params, n_params); | 
					
						
							| 
									
										
										
										
											2023-04-25 15:04:43 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	pw->negotiated = true; | 
					
						
							|  |  |  | 	pw_thread_loop_signal(pw->main_loop, false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void on_stream_state_changed(void *data, enum pw_stream_state old, enum pw_stream_state state, const char *error) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (state == PW_STREAM_STATE_ERROR) { | 
					
						
							|  |  |  | 		pw_log_warn("%s", error); | 
					
						
							| 
									
										
										
										
											2025-03-04 12:50:38 +01:00
										 |  |  | 		pw->error = -errno; | 
					
						
							| 
									
										
										
										
											2023-04-25 15:04:43 +02:00
										 |  |  | 		update_active(&pw->io); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-22 17:39:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-03 12:06:10 +01:00
										 |  |  | static void on_stream_drained(void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = data; | 
					
						
							|  |  |  | 	pw->drained = true; | 
					
						
							|  |  |  | 	pw->draining = false; | 
					
						
							| 
									
										
										
										
											2021-10-03 08:16:55 +02:00
										 |  |  | 	pw_log_debug("%p: drained", pw); | 
					
						
							| 
									
										
										
										
											2021-03-03 12:06:10 +01:00
										 |  |  | 	pw_thread_loop_signal(pw->main_loop, false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | static void on_stream_process(void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = data; | 
					
						
							|  |  |  | 	snd_pcm_ioplug_t *io = &pw->io; | 
					
						
							|  |  |  | 	struct pw_buffer *b; | 
					
						
							| 
									
										
										
										
											2021-11-24 12:10:14 +01:00
										 |  |  | 	snd_pcm_uframes_t hw_avail, before, want, xfer; | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 	struct pw_time pwt; | 
					
						
							|  |  |  | 	int64_t delay; | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 	pw_stream_get_time_n(pw->stream, &pwt, sizeof(pwt)); | 
					
						
							| 
									
										
										
										
											2021-01-09 10:50:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 	delay = pwt.delay; | 
					
						
							| 
									
										
										
										
											2022-10-25 16:27:46 +02:00
										 |  |  | 	if (pwt.rate.num != 0) | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 		delay = delay * io->rate * pwt.rate.num / pwt.rate.denom; | 
					
						
							| 
									
										
										
										
											2021-11-02 13:56:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-24 12:10:14 +01:00
										 |  |  | 	before = hw_avail = snd_pcm_ioplug_hw_avail(io, pw->hw_ptr, io->appl_ptr); | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-13 17:20:02 +02:00
										 |  |  | 	if (pw->drained) | 
					
						
							|  |  |  | 		goto done; | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	b = pw_stream_dequeue_buffer(pw->stream); | 
					
						
							|  |  |  | 	if (b == NULL) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-29 09:18:18 +02:00
										 |  |  | 	want = b->requested ? b->requested : hw_avail; | 
					
						
							| 
									
										
										
										
											2021-01-08 16:55:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-13 12:25:22 +02:00
										 |  |  | 	SPA_SEQ_WRITE(pw->seq); | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-18 14:50:51 +02:00
										 |  |  | 	if (pw->now != pwt.now) { | 
					
						
							| 
									
										
										
										
											2024-05-20 10:45:04 -03:00
										 |  |  | 		pw->transferred = pw->buffered; | 
					
						
							| 
									
										
										
										
											2022-10-18 14:50:51 +02:00
										 |  |  | 		pw->buffered = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-02 13:56:29 +01:00
										 |  |  | 	xfer = snd_pcm_pipewire_process(pw, b, &hw_avail, want); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 	pw->delay = delay; | 
					
						
							|  |  |  | 	/* the buffer is now queued in the stream and consumed */ | 
					
						
							|  |  |  | 	if (io->stream == SND_PCM_STREAM_PLAYBACK) | 
					
						
							| 
									
										
										
										
											2024-05-20 10:45:04 -03:00
										 |  |  | 		pw->transferred += xfer; | 
					
						
							| 
									
										
										
										
											2022-10-18 14:50:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-20 10:45:04 -03:00
										 |  |  | 	/* more then requested data transferred, use them in next iteration */ | 
					
						
							|  |  |  | 	pw->buffered = (want == 0 || pw->transferred < want) ?  0 : (pw->transferred % want); | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	pw->now = pwt.now; | 
					
						
							| 
									
										
										
										
											2023-07-13 12:25:22 +02:00
										 |  |  | 	SPA_SEQ_WRITE(pw->seq); | 
					
						
							| 
									
										
										
										
											2022-09-09 16:40:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 16:33:01 +02:00
										 |  |  | 	pw_log_trace("%p: avail-before:%lu avail:%lu want:%lu xfer:%lu hw:%lu appl:%lu", | 
					
						
							|  |  |  | 			pw, before, hw_avail, want, xfer, pw->hw_ptr, io->appl_ptr); | 
					
						
							| 
									
										
										
										
											2021-11-24 12:10:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	pw_stream_queue_buffer(pw->stream, b); | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (io->state == SND_PCM_STATE_DRAINING && !pw->draining && hw_avail == 0) { | 
					
						
							| 
									
										
										
										
											2021-03-03 12:06:10 +01:00
										 |  |  | 		if (io->stream == SND_PCM_STREAM_CAPTURE) { | 
					
						
							|  |  |  | 			on_stream_drained (pw); /* since pw_stream does not call drained() for capture */ | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			pw_stream_flush(pw->stream, true); | 
					
						
							|  |  |  | 			pw->draining = true; | 
					
						
							|  |  |  | 			pw->drained = false; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-09-13 17:20:02 +02:00
										 |  |  | done: | 
					
						
							|  |  |  | 	update_active(io); | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | static const struct pw_stream_events stream_events = { | 
					
						
							|  |  |  | 	PW_VERSION_STREAM_EVENTS, | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 	.param_changed = on_stream_param_changed, | 
					
						
							| 
									
										
										
										
											2023-04-25 15:04:43 +02:00
										 |  |  | 	.state_changed = on_stream_state_changed, | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 	.process = on_stream_process, | 
					
						
							|  |  |  | 	.drained = on_stream_drained, | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-25 12:09:47 +01:00
										 |  |  | static int pipewire_start(snd_pcm_pipewire_t *pw) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!pw->activated && pw->stream != NULL) { | 
					
						
							|  |  |  | 		pw_stream_set_active(pw->stream, true); | 
					
						
							|  |  |  | 		pw->activated = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 17:48:28 +02:00
										 |  |  | static int snd_pcm_pipewire_drain(snd_pcm_ioplug_t *io) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int res; | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pw_thread_loop_lock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2021-10-03 08:16:55 +02:00
										 |  |  | 	pw_log_debug("%p: drain", pw); | 
					
						
							| 
									
										
										
										
											2020-04-07 17:48:28 +02:00
										 |  |  | 	pw->drained = false; | 
					
						
							|  |  |  | 	pw->draining = false; | 
					
						
							| 
									
										
										
										
											2021-02-25 12:09:47 +01:00
										 |  |  | 	pipewire_start(pw); | 
					
						
							| 
									
										
										
										
											2020-04-07 17:48:28 +02:00
										 |  |  | 	while (!pw->drained && pw->error >= 0 && pw->activated) { | 
					
						
							|  |  |  | 		pw_thread_loop_wait(pw->main_loop); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	res = pw->error; | 
					
						
							|  |  |  | 	pw_thread_loop_unlock(pw->main_loop); | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | static int snd_pcm_pipewire_prepare(snd_pcm_ioplug_t *io) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							|  |  |  | 	snd_pcm_sw_params_t *swparams; | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	const struct spa_pod *params[1]; | 
					
						
							|  |  |  | 	uint8_t buffer[1024]; | 
					
						
							|  |  |  | 	struct spa_pod_builder b = SPA_POD_BUILDER_INIT(buffer, sizeof(buffer)); | 
					
						
							| 
									
										
										
										
											2018-10-16 10:02:10 +02:00
										 |  |  | 	uint32_t min_period; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	pw_thread_loop_lock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-16 10:02:10 +02:00
										 |  |  | 	snd_pcm_sw_params_alloca(&swparams); | 
					
						
							| 
									
										
										
										
											2021-05-10 11:19:24 +10:00
										 |  |  | 	if (snd_pcm_sw_params_current(io->pcm, swparams) == 0) { | 
					
						
							| 
									
										
										
										
											2023-11-30 12:05:41 +01:00
										 |  |  | 		int event; | 
					
						
							|  |  |  | 		snd_pcm_sw_params_get_period_event(swparams, &event); | 
					
						
							|  |  |  | 		if (event) | 
					
						
							|  |  |  | 			pw->min_avail = io->period_size; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			snd_pcm_sw_params_get_avail_min(swparams, &pw->min_avail); | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 		snd_pcm_sw_params_get_boundary(swparams, &pw->boundary); | 
					
						
							| 
									
										
										
										
											2022-09-12 13:29:39 +02:00
										 |  |  | 		snd_pcm_sw_params_dump(swparams, pw->output); | 
					
						
							|  |  |  | 		fflush(pw->log_file); | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-10-16 10:02:10 +02:00
										 |  |  | 		pw->min_avail = io->period_size; | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 		pw->boundary = io->buffer_size; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-10-16 10:02:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	min_period = (MIN_PERIOD * io->rate / 48000); | 
					
						
							|  |  |  | 	pw->min_avail = SPA_MAX(pw->min_avail, min_period); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 10:09:00 +02:00
										 |  |  | 	pw_log_debug("%p: prepare error:%d stream:%p buffer-size:%lu " | 
					
						
							|  |  |  | 			"period-size:%lu min-avail:%ld", pw, pw->error, | 
					
						
							|  |  |  | 			pw->stream, io->buffer_size, io->period_size, pw->min_avail); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-02 14:46:10 +01:00
										 |  |  | 	if (pw->error >= 0 && pw->stream != NULL && !pw->hw_params_changed) | 
					
						
							| 
									
										
										
										
											2018-05-11 10:05:03 +02:00
										 |  |  | 		goto done; | 
					
						
							| 
									
										
										
										
											2021-11-02 14:46:10 +01:00
										 |  |  | 	pw->hw_params_changed = false; | 
					
						
							| 
									
										
										
										
											2018-05-11 10:05:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	pw_properties_setf(pw->props, PW_KEY_NODE_LATENCY, "%lu/%u", pw->min_avail, io->rate); | 
					
						
							|  |  |  | 	pw_properties_setf(pw->props, PW_KEY_NODE_RATE, "1/%u", io->rate); | 
					
						
							| 
									
										
										
										
											2018-05-11 10:05:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	params[0] = spa_format_audio_build(&b, SPA_PARAM_EnumFormat, &pw->format); | 
					
						
							| 
									
										
										
										
											2022-10-06 08:25:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (pw->stream != NULL) { | 
					
						
							| 
									
										
										
										
											2024-02-19 15:11:30 +01:00
										 |  |  | 		pw_stream_set_active(pw->stream, false); | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 		pw_stream_update_properties(pw->stream, &pw->props->dict); | 
					
						
							| 
									
										
										
										
											2022-10-06 08:25:05 +00:00
										 |  |  | 		pw_stream_update_params(pw->stream, params, 1); | 
					
						
							| 
									
										
										
										
											2024-02-19 15:11:30 +01:00
										 |  |  | 		pw_stream_set_active(pw->stream, true); | 
					
						
							| 
									
										
										
										
											2022-10-06 08:25:05 +00:00
										 |  |  | 		goto done; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	pw->stream = pw_stream_new(pw->core, NULL, pw_properties_copy(pw->props)); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	if (pw->stream == NULL) | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pw_stream_add_listener(pw->stream, &pw->stream_listener, &stream_events, pw); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 17:38:39 +02:00
										 |  |  | 	pw->error = 0; | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-25 15:04:43 +02:00
										 |  |  | 	pw->negotiated = false; | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	pw_stream_connect(pw->stream, | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 				io->stream == SND_PCM_STREAM_PLAYBACK ? | 
					
						
							|  |  |  | 				PW_DIRECTION_OUTPUT : | 
					
						
							|  |  |  | 				PW_DIRECTION_INPUT, | 
					
						
							|  |  |  | 				PW_ID_ANY, | 
					
						
							|  |  |  | 				PW_STREAM_FLAG_AUTOCONNECT | | 
					
						
							|  |  |  | 				PW_STREAM_FLAG_MAP_BUFFERS | | 
					
						
							|  |  |  | 				PW_STREAM_FLAG_RT_PROCESS, | 
					
						
							|  |  |  | 				params, 1); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-11 10:05:03 +02:00
										 |  |  | done: | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	pw->hw_ptr = 0; | 
					
						
							| 
									
										
										
										
											2022-09-09 18:11:23 +02:00
										 |  |  | 	pw->now = 0; | 
					
						
							| 
									
										
										
										
											2020-05-13 12:09:28 +02:00
										 |  |  | 	pw->xrun_detected = false; | 
					
						
							| 
									
										
										
										
											2021-11-02 10:17:31 +01:00
										 |  |  | 	pw->drained = false; | 
					
						
							|  |  |  | 	pw->draining = false; | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-25 15:04:43 +02:00
										 |  |  | 	while (!pw->negotiated && pw->error >= 0) | 
					
						
							|  |  |  | 		pw_thread_loop_wait(pw->main_loop); | 
					
						
							|  |  |  | 	if (pw->error < 0) | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	pw_thread_loop_unlock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | error: | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	pw_thread_loop_unlock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2023-04-25 15:04:43 +02:00
										 |  |  | 	return pw->error < 0 ? pw->error : -ENOMEM; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int snd_pcm_pipewire_start(snd_pcm_ioplug_t *io) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	pw_thread_loop_lock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2022-09-09 10:09:00 +02:00
										 |  |  | 	pw_log_debug("%p: start", pw); | 
					
						
							| 
									
										
										
										
											2021-02-25 12:09:47 +01:00
										 |  |  | 	pipewire_start(pw); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	pw_thread_loop_unlock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int snd_pcm_pipewire_stop(snd_pcm_ioplug_t *io) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-09 10:09:00 +02:00
										 |  |  | 	pw_log_debug("%p: stop", pw); | 
					
						
							| 
									
										
										
										
											2022-09-13 17:20:02 +02:00
										 |  |  | 	update_active(io); | 
					
						
							| 
									
										
										
										
											2020-04-06 17:50:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	pw_thread_loop_lock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2018-05-11 10:05:03 +02:00
										 |  |  | 	if (pw->activated && pw->stream != NULL) { | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		pw_stream_set_active(pw->stream, false); | 
					
						
							|  |  |  | 		pw->activated = false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pw_thread_loop_unlock(pw->main_loop); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-01 18:32:22 +01:00
										 |  |  | static int snd_pcm_pipewire_pause(snd_pcm_ioplug_t * io, int enable) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-09-09 10:09:00 +02:00
										 |  |  | 	pw_log_debug("%p: pause", io); | 
					
						
							| 
									
										
										
										
											2020-11-01 18:32:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (enable) | 
					
						
							|  |  |  | 		snd_pcm_pipewire_stop(io); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		snd_pcm_pipewire_start(io); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | #if __BYTE_ORDER == __BIG_ENDIAN
 | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | #define _FORMAT_LE(p, fmt)  p ? SPA_AUDIO_FORMAT_UNKNOWN : SPA_AUDIO_FORMAT_ ## fmt ## _OE
 | 
					
						
							|  |  |  | #define _FORMAT_BE(p, fmt)  p ? SPA_AUDIO_FORMAT_ ## fmt ## P : SPA_AUDIO_FORMAT_ ## fmt
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | #elif __BYTE_ORDER == __LITTLE_ENDIAN
 | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | #define _FORMAT_LE(p, fmt)  p ? SPA_AUDIO_FORMAT_ ## fmt ## P : SPA_AUDIO_FORMAT_ ## fmt
 | 
					
						
							|  |  |  | #define _FORMAT_BE(p, fmt)  p ? SPA_AUDIO_FORMAT_UNKNOWN : SPA_AUDIO_FORMAT_ ## fmt ## _OE
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | static int set_default_channels(uint32_t channels, uint32_t position[SPA_AUDIO_MAX_CHANNELS]) | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	switch (channels) { | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 	case 8: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		position[6] = SPA_AUDIO_CHANNEL_SL; | 
					
						
							|  |  |  | 		position[7] = SPA_AUDIO_CHANNEL_SR; | 
					
						
							| 
									
										
										
										
											2020-10-13 09:58:43 +02:00
										 |  |  | 		SPA_FALLTHROUGH | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 	case 6: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		position[5] = SPA_AUDIO_CHANNEL_LFE; | 
					
						
							| 
									
										
										
										
											2020-10-13 09:58:43 +02:00
										 |  |  | 		SPA_FALLTHROUGH | 
					
						
							| 
									
										
										
										
											2021-02-25 17:42:32 +01:00
										 |  |  | 	case 5: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		position[4] = SPA_AUDIO_CHANNEL_FC; | 
					
						
							| 
									
										
										
										
											2020-10-13 09:58:43 +02:00
										 |  |  | 		SPA_FALLTHROUGH | 
					
						
							| 
									
										
										
										
											2021-02-25 17:42:32 +01:00
										 |  |  | 	case 4: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		position[2] = SPA_AUDIO_CHANNEL_RL; | 
					
						
							|  |  |  | 		position[3] = SPA_AUDIO_CHANNEL_RR; | 
					
						
							| 
									
										
										
										
											2020-10-13 09:58:43 +02:00
										 |  |  | 		SPA_FALLTHROUGH | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 	case 2: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		position[0] = SPA_AUDIO_CHANNEL_FL; | 
					
						
							|  |  |  | 		position[1] = SPA_AUDIO_CHANNEL_FR; | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											2018-10-10 15:32:08 +02:00
										 |  |  | 	case 1: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		position[0] = SPA_AUDIO_CHANNEL_MONO; | 
					
						
							| 
									
										
										
										
											2018-10-10 15:32:08 +02:00
										 |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | static int snd_pcm_pipewire_hw_params(snd_pcm_ioplug_t * io, | 
					
						
							|  |  |  | 				snd_pcm_hw_params_t * params) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 	bool planar; | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	const char *fmt_str = NULL; | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-12 13:29:39 +02:00
										 |  |  | 	snd_pcm_hw_params_dump(params, pw->output); | 
					
						
							|  |  |  | 	fflush(pw->log_file); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-03 08:16:55 +02:00
										 |  |  | 	pw_log_debug("%p: hw_params buffer_size:%lu period_size:%lu", pw, io->buffer_size, io->period_size); | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch(io->access) { | 
					
						
							|  |  |  | 	case SND_PCM_ACCESS_MMAP_INTERLEAVED: | 
					
						
							|  |  |  | 	case SND_PCM_ACCESS_RW_INTERLEAVED: | 
					
						
							|  |  |  | 		planar = false; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_ACCESS_MMAP_NONINTERLEAVED: | 
					
						
							|  |  |  | 	case SND_PCM_ACCESS_RW_NONINTERLEAVED: | 
					
						
							|  |  |  | 		planar = true; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		SNDERR("PipeWire: invalid access: %d\n", io->access); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	pw->requested.media_type = SPA_MEDIA_TYPE_audio; | 
					
						
							| 
									
										
										
										
											2018-05-11 10:05:03 +02:00
										 |  |  | 	switch(io->format) { | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	case SND_PCM_FORMAT_U8: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = planar ? SPA_AUDIO_FORMAT_U8P : SPA_AUDIO_FORMAT_U8; | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 	case SND_PCM_FORMAT_S16_LE: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = _FORMAT_LE(planar, S16); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_S16_BE: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = _FORMAT_BE(planar, S16); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_S24_LE: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = _FORMAT_LE(planar, S24_32); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_S24_BE: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = _FORMAT_BE(planar, S24_32); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_S32_LE: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = _FORMAT_LE(planar, S32); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_S32_BE: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = _FORMAT_BE(planar, S32); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2018-04-10 15:57:07 +02:00
										 |  |  | 	case SND_PCM_FORMAT_S24_3LE: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = _FORMAT_LE(planar, S24); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2018-04-10 15:57:07 +02:00
										 |  |  | 	case SND_PCM_FORMAT_S24_3BE: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = _FORMAT_BE(planar, S24); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_FLOAT_LE: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = _FORMAT_LE(planar, F32); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_FLOAT_BE: | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_raw; | 
					
						
							|  |  |  | 		pw->requested.info.raw.format = _FORMAT_BE(planar, F32); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_DSD_U32_BE: | 
					
						
							|  |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_dsd; | 
					
						
							|  |  |  | 		pw->requested.info.dsd.interleave = 4; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_DSD_U32_LE: | 
					
						
							|  |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_dsd; | 
					
						
							|  |  |  | 		pw->requested.info.dsd.interleave = -4; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_DSD_U16_BE: | 
					
						
							|  |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_dsd; | 
					
						
							|  |  |  | 		pw->requested.info.dsd.interleave = 2; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_DSD_U16_LE: | 
					
						
							|  |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_dsd; | 
					
						
							|  |  |  | 		pw->requested.info.dsd.interleave = -2; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case SND_PCM_FORMAT_DSD_U8: | 
					
						
							|  |  |  | 		pw->requested.media_subtype = SPA_MEDIA_SUBTYPE_dsd; | 
					
						
							|  |  |  | 		pw->requested.info.dsd.interleave = 1; | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2018-04-10 15:57:07 +02:00
										 |  |  | 		SNDERR("PipeWire: invalid format: %d\n", io->format); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	switch (pw->requested.media_subtype) { | 
					
						
							|  |  |  | 	case SPA_MEDIA_SUBTYPE_raw: | 
					
						
							|  |  |  | 		pw->requested.info.raw.channels = io->channels; | 
					
						
							|  |  |  | 		pw->requested.info.raw.rate = io->rate; | 
					
						
							|  |  |  | 		set_default_channels(io->channels, pw->requested.info.raw.position); | 
					
						
							| 
									
										
										
										
											2024-09-18 09:54:34 +02:00
										 |  |  | 		fmt_str = spa_type_audio_format_to_short_name(pw->requested.info.raw.format); | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		pw->format = pw->requested; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case SPA_MEDIA_SUBTYPE_dsd: | 
					
						
							|  |  |  | 		pw->requested.info.dsd.bitorder = SPA_PARAM_BITORDER_msb; | 
					
						
							|  |  |  | 		pw->requested.info.dsd.channels = io->channels; | 
					
						
							|  |  |  | 		pw->requested.info.dsd.rate = io->rate * SPA_ABS(pw->requested.info.dsd.interleave); | 
					
						
							|  |  |  | 		set_default_channels(io->channels, pw->requested.info.dsd.position); | 
					
						
							|  |  |  | 		pw->format = pw->requested; | 
					
						
							|  |  |  | 		/* we need to let the server decide these values */ | 
					
						
							|  |  |  | 		pw->format.info.dsd.bitorder = 0; | 
					
						
							|  |  |  | 		pw->format.info.dsd.interleave = 0; | 
					
						
							|  |  |  | 		fmt_str = "DSD"; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	pw->sample_bits = snd_pcm_format_physical_width(io->format); | 
					
						
							| 
									
										
										
										
											2020-09-04 13:49:51 +02:00
										 |  |  | 	if (planar) { | 
					
						
							|  |  |  | 		pw->blocks = io->channels; | 
					
						
							|  |  |  | 		pw->stride = pw->sample_bits / 8; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		pw->blocks = 1; | 
					
						
							|  |  |  | 		pw->stride = (io->channels * pw->sample_bits) / 8; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-11-02 14:46:10 +01:00
										 |  |  | 	pw->hw_params_changed = true; | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	pw_log_info("%p: format:%s channels:%d rate:%d stride:%d blocks:%d", pw, fmt_str, | 
					
						
							| 
									
										
										
										
											2020-09-04 13:49:51 +02:00
										 |  |  | 			io->channels, io->rate, pw->stride, pw->blocks); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 16:26:33 +02:00
										 |  |  | static int snd_pcm_pipewire_sw_params(snd_pcm_ioplug_t * io, | 
					
						
							|  |  |  | 				snd_pcm_sw_params_t * sw_params) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-06 13:46:54 +02:00
										 |  |  | 	pw_thread_loop_lock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2022-05-13 16:26:33 +02:00
										 |  |  | 	if (pw->stream) { | 
					
						
							|  |  |  | 		snd_pcm_uframes_t min_avail; | 
					
						
							|  |  |  | 		snd_pcm_sw_params_get_avail_min( sw_params, &min_avail); | 
					
						
							|  |  |  | 		snd_pcm_sw_params_get_boundary(sw_params, &pw->boundary); | 
					
						
							|  |  |  | 		if (min_avail != pw->min_avail) { | 
					
						
							| 
									
										
										
										
											2022-05-16 09:36:14 +02:00
										 |  |  | 			char latency[64]; | 
					
						
							| 
									
										
										
										
											2022-05-13 16:26:33 +02:00
										 |  |  | 			struct spa_dict_item item[1]; | 
					
						
							|  |  |  | 			uint32_t min_period = (MIN_PERIOD * io->rate / 48000); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			pw->min_avail = SPA_MAX(min_avail, min_period); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-16 09:36:14 +02:00
										 |  |  | 			spa_scnprintf(latency, sizeof(latency), "%lu/%u", pw->min_avail, io->rate); | 
					
						
							| 
									
										
										
										
											2022-05-13 16:26:33 +02:00
										 |  |  | 			item[0] = SPA_DICT_ITEM_INIT(PW_KEY_NODE_LATENCY, latency); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			pw_log_debug("%p: sw_params update props %p %ld", pw, pw->stream, pw->min_avail); | 
					
						
							|  |  |  | 			pw_stream_update_properties(pw->stream, &SPA_DICT_INIT(item, 1)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		pw_log_debug("%p: sw_params pre-prepare noop", pw); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-07-06 13:46:54 +02:00
										 |  |  | 	pw_thread_loop_unlock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2022-05-13 16:26:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | struct chmap_info { | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 	enum snd_pcm_chmap_position pos; | 
					
						
							|  |  |  | 	enum spa_audio_channel channel; | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct chmap_info chmap_info[] = { | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 	[SND_CHMAP_UNKNOWN] = { SND_CHMAP_UNKNOWN, SPA_AUDIO_CHANNEL_UNKNOWN }, | 
					
						
							|  |  |  | 	[SND_CHMAP_NA] = { SND_CHMAP_NA, SPA_AUDIO_CHANNEL_NA }, | 
					
						
							|  |  |  | 	[SND_CHMAP_MONO] = { SND_CHMAP_MONO, SPA_AUDIO_CHANNEL_MONO }, | 
					
						
							|  |  |  | 	[SND_CHMAP_FL] = { SND_CHMAP_FL, SPA_AUDIO_CHANNEL_FL }, | 
					
						
							|  |  |  | 	[SND_CHMAP_FR] = { SND_CHMAP_FR, SPA_AUDIO_CHANNEL_FR }, | 
					
						
							|  |  |  | 	[SND_CHMAP_RL] = { SND_CHMAP_RL, SPA_AUDIO_CHANNEL_RL }, | 
					
						
							|  |  |  | 	[SND_CHMAP_RR] = { SND_CHMAP_RR, SPA_AUDIO_CHANNEL_RR }, | 
					
						
							|  |  |  | 	[SND_CHMAP_FC] = { SND_CHMAP_FC, SPA_AUDIO_CHANNEL_FC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_LFE] = { SND_CHMAP_LFE, SPA_AUDIO_CHANNEL_LFE }, | 
					
						
							|  |  |  | 	[SND_CHMAP_SL] = { SND_CHMAP_SL, SPA_AUDIO_CHANNEL_SL }, | 
					
						
							|  |  |  | 	[SND_CHMAP_SR] = { SND_CHMAP_SR, SPA_AUDIO_CHANNEL_SR }, | 
					
						
							|  |  |  | 	[SND_CHMAP_RC] = { SND_CHMAP_RC, SPA_AUDIO_CHANNEL_RC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_FLC] = { SND_CHMAP_FLC, SPA_AUDIO_CHANNEL_FLC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_FRC] = { SND_CHMAP_FRC, SPA_AUDIO_CHANNEL_FRC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_RLC] = { SND_CHMAP_RLC, SPA_AUDIO_CHANNEL_RLC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_RRC] = { SND_CHMAP_RRC, SPA_AUDIO_CHANNEL_RRC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_FLW] = { SND_CHMAP_FLW, SPA_AUDIO_CHANNEL_FLW }, | 
					
						
							|  |  |  | 	[SND_CHMAP_FRW] = { SND_CHMAP_FRW, SPA_AUDIO_CHANNEL_FRW }, | 
					
						
							|  |  |  | 	[SND_CHMAP_FLH] = { SND_CHMAP_FLH, SPA_AUDIO_CHANNEL_FLH }, | 
					
						
							|  |  |  | 	[SND_CHMAP_FCH] = { SND_CHMAP_FCH, SPA_AUDIO_CHANNEL_FCH }, | 
					
						
							|  |  |  | 	[SND_CHMAP_FRH] = { SND_CHMAP_FRH, SPA_AUDIO_CHANNEL_FRH }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TC] = { SND_CHMAP_TC, SPA_AUDIO_CHANNEL_TC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TFL] = { SND_CHMAP_TFL, SPA_AUDIO_CHANNEL_TFL }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TFR] = { SND_CHMAP_TFR, SPA_AUDIO_CHANNEL_TFR }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TFC] = { SND_CHMAP_TFC, SPA_AUDIO_CHANNEL_TFC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TRL] = { SND_CHMAP_TRL, SPA_AUDIO_CHANNEL_TRL }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TRR] = { SND_CHMAP_TRR, SPA_AUDIO_CHANNEL_TRR }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TRC] = { SND_CHMAP_TRC, SPA_AUDIO_CHANNEL_TRC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TFLC] = { SND_CHMAP_TFLC, SPA_AUDIO_CHANNEL_TFLC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TFRC] = { SND_CHMAP_TFRC, SPA_AUDIO_CHANNEL_TFRC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TSL] = { SND_CHMAP_TSL, SPA_AUDIO_CHANNEL_TSL }, | 
					
						
							|  |  |  | 	[SND_CHMAP_TSR] = { SND_CHMAP_TSR, SPA_AUDIO_CHANNEL_TSR }, | 
					
						
							|  |  |  | 	[SND_CHMAP_LLFE] = { SND_CHMAP_LLFE, SPA_AUDIO_CHANNEL_LLFE }, | 
					
						
							|  |  |  | 	[SND_CHMAP_RLFE] = { SND_CHMAP_RLFE, SPA_AUDIO_CHANNEL_RLFE }, | 
					
						
							|  |  |  | 	[SND_CHMAP_BC] = { SND_CHMAP_BC, SPA_AUDIO_CHANNEL_BC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_BLC] = { SND_CHMAP_BLC, SPA_AUDIO_CHANNEL_BLC }, | 
					
						
							|  |  |  | 	[SND_CHMAP_BRC] = { SND_CHMAP_BRC, SPA_AUDIO_CHANNEL_BRC }, | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static enum snd_pcm_chmap_position channel_to_chmap(enum spa_audio_channel channel) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-09-30 16:21:28 +02:00
										 |  |  | 	SPA_FOR_EACH_ELEMENT_VAR(chmap_info, info) | 
					
						
							|  |  |  | 		if (info->channel == channel) | 
					
						
							|  |  |  | 			return info->pos; | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 	return SND_CHMAP_UNKNOWN; | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-25 17:42:32 +01:00
										 |  |  | static enum spa_audio_channel chmap_to_channel(enum snd_pcm_chmap_position pos) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-23 14:27:18 +01:00
										 |  |  | 	if (pos >= SPA_N_ELEMENTS(chmap_info)) | 
					
						
							| 
									
										
										
										
											2021-02-25 17:42:32 +01:00
										 |  |  | 		return SPA_AUDIO_CHANNEL_UNKNOWN; | 
					
						
							|  |  |  | 	return chmap_info[pos].channel; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | static int snd_pcm_pipewire_set_chmap(snd_pcm_ioplug_t * io, | 
					
						
							|  |  |  | 				const snd_pcm_chmap_t * map) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-25 17:42:32 +01:00
										 |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							|  |  |  | 	unsigned int i; | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	uint32_t *position; | 
					
						
							| 
									
										
										
										
											2021-02-25 17:42:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	switch (pw->requested.media_subtype) { | 
					
						
							|  |  |  | 	case SPA_MEDIA_SUBTYPE_raw: | 
					
						
							|  |  |  | 		pw->requested.info.raw.channels = map->channels; | 
					
						
							|  |  |  | 		position = pw->requested.info.raw.position; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case SPA_MEDIA_SUBTYPE_dsd: | 
					
						
							|  |  |  | 		pw->requested.info.dsd.channels = map->channels; | 
					
						
							|  |  |  | 		position = pw->requested.info.dsd.position; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-02-25 17:42:32 +01:00
										 |  |  | 	for (i = 0; i < map->channels; i++) { | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 		position[i] = chmap_to_channel(map->pos[i]); | 
					
						
							| 
									
										
										
										
											2022-09-09 10:09:00 +02:00
										 |  |  | 		pw_log_debug("map %d: %s / %s", i, | 
					
						
							|  |  |  | 				snd_pcm_chmap_name(map->pos[i]), | 
					
						
							|  |  |  | 				spa_debug_type_find_short_name(spa_type_audio_channel, | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 					position[i])); | 
					
						
							| 
									
										
										
										
											2021-02-25 17:42:32 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static snd_pcm_chmap_t * snd_pcm_pipewire_get_chmap(snd_pcm_ioplug_t * io) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = io->private_data; | 
					
						
							|  |  |  | 	snd_pcm_chmap_t *map; | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 	uint32_t i, channels, *position; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (pw->requested.media_subtype) { | 
					
						
							|  |  |  | 	case SPA_MEDIA_SUBTYPE_raw: | 
					
						
							|  |  |  | 		channels = pw->requested.info.raw.channels; | 
					
						
							|  |  |  | 		position = pw->requested.info.raw.position; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case SPA_MEDIA_SUBTYPE_dsd: | 
					
						
							|  |  |  | 		channels = pw->requested.info.dsd.channels; | 
					
						
							|  |  |  | 		position = pw->requested.info.dsd.position; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	map = calloc(1, sizeof(snd_pcm_chmap_t) + | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 				 channels * sizeof(unsigned int)); | 
					
						
							|  |  |  | 	map->channels = channels; | 
					
						
							|  |  |  | 	for (i = 0; i < channels; i++) | 
					
						
							|  |  |  | 		map->pos[i] = channel_to_chmap(position[i]); | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return map; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-04 11:56:28 +01:00
										 |  |  | static void make_map(snd_pcm_chmap_query_t **maps, int index, int channels, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	va_list args; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	maps[index] = malloc(sizeof(snd_pcm_chmap_query_t) + (channels * sizeof(unsigned int))); | 
					
						
							|  |  |  | 	maps[index]->type = SND_CHMAP_TYPE_FIXED; | 
					
						
							|  |  |  | 	maps[index]->map.channels = channels; | 
					
						
							|  |  |  | 	va_start(args, channels); | 
					
						
							|  |  |  | 	for (i = 0; i < channels; i++) | 
					
						
							|  |  |  | 		maps[index]->map.pos[i] = va_arg(args, int); | 
					
						
							|  |  |  | 	va_end(args); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static snd_pcm_chmap_query_t **snd_pcm_pipewire_query_chmaps(snd_pcm_ioplug_t *io) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_chmap_query_t **maps; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	maps = calloc(7, sizeof(*maps)); | 
					
						
							|  |  |  | 	make_map(maps,  0, 1, SND_CHMAP_MONO); | 
					
						
							|  |  |  | 	make_map(maps,  1, 2, SND_CHMAP_FL, SND_CHMAP_FR); | 
					
						
							|  |  |  | 	make_map(maps,  2, 4, SND_CHMAP_FL, SND_CHMAP_FR, SND_CHMAP_RL, SND_CHMAP_RR); | 
					
						
							|  |  |  | 	make_map(maps,  3, 5, SND_CHMAP_FL, SND_CHMAP_FR, SND_CHMAP_RL, SND_CHMAP_RR, | 
					
						
							|  |  |  | 			SND_CHMAP_FC); | 
					
						
							|  |  |  | 	make_map(maps,  4, 6, SND_CHMAP_FL, SND_CHMAP_FR, SND_CHMAP_RL, SND_CHMAP_RR, | 
					
						
							|  |  |  | 			SND_CHMAP_FC, SND_CHMAP_LFE); | 
					
						
							|  |  |  | 	make_map(maps,  5, 8, SND_CHMAP_FL, SND_CHMAP_FR, SND_CHMAP_RL, SND_CHMAP_RR, | 
					
						
							|  |  |  | 			SND_CHMAP_FC, SND_CHMAP_LFE, SND_CHMAP_SL, SND_CHMAP_SR); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return maps; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | static snd_pcm_ioplug_callback_t pipewire_pcm_callback = { | 
					
						
							|  |  |  | 	.close = snd_pcm_pipewire_close, | 
					
						
							|  |  |  | 	.start = snd_pcm_pipewire_start, | 
					
						
							|  |  |  | 	.stop = snd_pcm_pipewire_stop, | 
					
						
							| 
									
										
										
										
											2020-11-01 18:32:22 +01:00
										 |  |  | 	.pause = snd_pcm_pipewire_pause, | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	.pointer = snd_pcm_pipewire_pointer, | 
					
						
							| 
									
										
										
										
											2021-01-09 10:50:39 +01:00
										 |  |  | 	.delay = snd_pcm_pipewire_delay, | 
					
						
							| 
									
										
										
										
											2020-04-07 17:48:28 +02:00
										 |  |  | 	.drain = snd_pcm_pipewire_drain, | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	.prepare = snd_pcm_pipewire_prepare, | 
					
						
							|  |  |  | 	.poll_revents = snd_pcm_pipewire_poll_revents, | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	.hw_params = snd_pcm_pipewire_hw_params, | 
					
						
							| 
									
										
										
										
											2022-05-13 16:26:33 +02:00
										 |  |  | 	.sw_params = snd_pcm_pipewire_sw_params, | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 	.set_chmap = snd_pcm_pipewire_set_chmap, | 
					
						
							|  |  |  | 	.get_chmap = snd_pcm_pipewire_get_chmap, | 
					
						
							| 
									
										
										
										
											2021-03-04 11:56:28 +01:00
										 |  |  | 	.query_chmaps = snd_pcm_pipewire_query_chmaps, | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | #define MAX_VALS	64
 | 
					
						
							|  |  |  | struct param_info { | 
					
						
							|  |  |  | 	const char *prop; | 
					
						
							|  |  |  | 	int key; | 
					
						
							|  |  |  | #define TYPE_LIST	0
 | 
					
						
							|  |  |  | #define TYPE_MIN_MAX	1
 | 
					
						
							|  |  |  | 	int type; | 
					
						
							|  |  |  | 	unsigned int vals[MAX_VALS]; | 
					
						
							|  |  |  | 	unsigned int n_vals; | 
					
						
							|  |  |  | 	int (*collect) (const char *str, int len, unsigned int *val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int collect_access(const char *str, int len, unsigned int *val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char key[64]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (spa_json_parse_stringn(str, len, key, sizeof(key)) <= 0) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (strcasecmp(key, "MMAP_INTERLEAVED") == 0) | 
					
						
							|  |  |  | 		*val = SND_PCM_ACCESS_MMAP_INTERLEAVED; | 
					
						
							|  |  |  | 	else if (strcasecmp(key, "MMAP_NONINTERLEAVED") == 0) | 
					
						
							|  |  |  | 		*val = SND_PCM_ACCESS_MMAP_NONINTERLEAVED; | 
					
						
							|  |  |  | 	else if (strcasecmp(key, "RW_INTERLEAVED") == 0) | 
					
						
							|  |  |  | 		*val = SND_PCM_ACCESS_RW_INTERLEAVED; | 
					
						
							|  |  |  | 	else if (strcasecmp(key, "RW_NONINTERLEAVED") == 0) | 
					
						
							|  |  |  | 		*val = SND_PCM_ACCESS_RW_NONINTERLEAVED; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int collect_format(const char *str, int len, unsigned int *val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char key[64]; | 
					
						
							|  |  |  | 	snd_pcm_format_t fmt; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (spa_json_parse_stringn(str, len, key, sizeof(key)) < 0) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fmt = snd_pcm_format_value(key); | 
					
						
							|  |  |  | 	if (fmt != SND_PCM_FORMAT_UNKNOWN) | 
					
						
							|  |  |  | 		*val = fmt; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int collect_int(const char *str, int len, unsigned int *val) | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 	int v; | 
					
						
							|  |  |  | 	if (spa_json_parse_int(str, len, &v) > 0) | 
					
						
							|  |  |  | 		*val = v; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct param_info infos[] = { | 
					
						
							|  |  |  | 	{ "alsa.access", SND_PCM_IOPLUG_HW_ACCESS, TYPE_LIST, | 
					
						
							|  |  |  | 		{ SND_PCM_ACCESS_MMAP_INTERLEAVED, | 
					
						
							|  |  |  | 			SND_PCM_ACCESS_MMAP_NONINTERLEAVED, | 
					
						
							|  |  |  | 			SND_PCM_ACCESS_RW_INTERLEAVED, | 
					
						
							|  |  |  | 			SND_PCM_ACCESS_RW_NONINTERLEAVED }, 4, collect_access }, | 
					
						
							|  |  |  | 	{ "alsa.format", SND_PCM_IOPLUG_HW_FORMAT, TYPE_LIST, | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2021-02-05 12:12:44 +01:00
										 |  |  | #if __BYTE_ORDER == __LITTLE_ENDIAN
 | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 			SND_PCM_FORMAT_FLOAT_LE, | 
					
						
							|  |  |  | 			SND_PCM_FORMAT_S32_LE, | 
					
						
							|  |  |  | 			SND_PCM_FORMAT_S24_LE, | 
					
						
							|  |  |  | 			SND_PCM_FORMAT_S24_3LE, | 
					
						
							|  |  |  | 			SND_PCM_FORMAT_S24_3BE, | 
					
						
							|  |  |  | 			SND_PCM_FORMAT_S16_LE, | 
					
						
							| 
									
										
										
										
											2021-02-05 12:12:44 +01:00
										 |  |  | #elif __BYTE_ORDER == __BIG_ENDIAN
 | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 			SND_PCM_FORMAT_FLOAT_BE, | 
					
						
							|  |  |  | 			SND_PCM_FORMAT_S32_BE, | 
					
						
							|  |  |  | 			SND_PCM_FORMAT_S24_BE, | 
					
						
							|  |  |  | 			SND_PCM_FORMAT_S24_3LE, | 
					
						
							|  |  |  | 			SND_PCM_FORMAT_S24_3BE, | 
					
						
							|  |  |  | 			SND_PCM_FORMAT_S16_BE, | 
					
						
							| 
									
										
										
										
											2021-02-05 12:12:44 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2024-08-02 13:01:35 +02:00
										 |  |  | 			SND_PCM_FORMAT_U8, | 
					
						
							|  |  |  | 			/* we don't add DSD formats here, use alsa.formats to
 | 
					
						
							|  |  |  | 			 * force this. Because we can't convert to/from DSD, enabling this | 
					
						
							|  |  |  | 			 * might fail when the system has no native DSD | 
					
						
							|  |  |  | 			 * SND_PCM_FORMAT_DSD_U32_BE, | 
					
						
							|  |  |  | 			 * SND_PCM_FORMAT_DSD_U32_LE, | 
					
						
							|  |  |  | 			 * SND_PCM_FORMAT_DSD_U16_BE, | 
					
						
							|  |  |  | 			 * SND_PCM_FORMAT_DSD_U16_LE, | 
					
						
							|  |  |  | 			 * SND_PCM_FORMAT_DSD_U8 */ | 
					
						
							|  |  |  | 		}, 7, collect_format }, | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 	{ "alsa.rate", SND_PCM_IOPLUG_HW_RATE, TYPE_MIN_MAX, | 
					
						
							|  |  |  | 		{ 1, MAX_RATE }, 2, collect_int }, | 
					
						
							|  |  |  | 	{ "alsa.channels", SND_PCM_IOPLUG_HW_CHANNELS, TYPE_MIN_MAX, | 
					
						
							|  |  |  | 		{ 1, MAX_CHANNELS }, 2, collect_int }, | 
					
						
							|  |  |  | 	{ "alsa.buffer-bytes", SND_PCM_IOPLUG_HW_BUFFER_BYTES, TYPE_MIN_MAX, | 
					
						
							|  |  |  | 		{ MIN_BUFFER_BYTES, MAX_BUFFER_BYTES }, 2, collect_int }, | 
					
						
							|  |  |  | 	{ "alsa.period-bytes", SND_PCM_IOPLUG_HW_PERIOD_BYTES, TYPE_MIN_MAX, | 
					
						
							|  |  |  | 		{ MIN_PERIOD_BYTES, MAX_PERIOD_BYTES }, 2, collect_int }, | 
					
						
							|  |  |  | 	{ "alsa.periods", SND_PCM_IOPLUG_HW_PERIODS, TYPE_MIN_MAX, | 
					
						
							|  |  |  | 		{ MIN_BUFFERS, 1024 }, 2, collect_int }, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | static struct param_info *param_info_by_key(int key) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	SPA_FOR_EACH_ELEMENT_VAR(infos, p) { | 
					
						
							|  |  |  | 		if (p->key == key) | 
					
						
							|  |  |  | 			return p; | 
					
						
							| 
									
										
										
										
											2020-03-11 10:38:23 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int parse_value(const char *str, struct param_info *info) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct spa_json it[2]; | 
					
						
							|  |  |  | 	unsigned int v; | 
					
						
							|  |  |  | 	const char *val; | 
					
						
							|  |  |  | 	int len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-13 09:22:27 +02:00
										 |  |  | 	if ((len = spa_json_begin(&it[0], str, strlen(str), &val)) <= 0) | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (spa_json_is_array(val, len)) { | 
					
						
							|  |  |  | 		info->type = TYPE_LIST; | 
					
						
							|  |  |  | 		info->n_vals = 0; | 
					
						
							|  |  |  | 		spa_json_enter(&it[0], &it[1]); | 
					
						
							|  |  |  | 		while ((len = spa_json_next(&it[1], &val)) > 0 && info->n_vals < MAX_VALS) { | 
					
						
							|  |  |  | 			if (info->collect(val, len, &v) < 0) | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			info->vals[info->n_vals++] = v; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-03-12 14:57:18 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 	else if (spa_json_is_object(val, len)) { | 
					
						
							|  |  |  | 		char key[64]; | 
					
						
							|  |  |  | 		info->type = TYPE_MIN_MAX; | 
					
						
							|  |  |  | 		info->n_vals = 2; | 
					
						
							|  |  |  | 		spa_json_enter(&it[0], &it[1]); | 
					
						
							| 
									
										
										
										
											2024-09-13 16:26:36 +02:00
										 |  |  |                 while ((len = spa_json_object_next(&it[1], key, sizeof(key), &val)) > 0) { | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 			if (info->collect(val, len, &v) < 0) | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			if (spa_streq(key, "min")) | 
					
						
							|  |  |  | 				info->vals[0] = v; | 
					
						
							|  |  |  | 			else if (spa_streq(key, "max")) | 
					
						
							|  |  |  | 				info->vals[1] = v; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2022-09-20 16:13:59 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 	else if (info->collect(val, len, &v) >= 0) { | 
					
						
							|  |  |  | 		info->type = TYPE_LIST; | 
					
						
							|  |  |  | 		info->vals[0] = v; | 
					
						
							|  |  |  | 		info->n_vals = 1; | 
					
						
							| 
									
										
										
										
											2020-09-04 12:23:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int set_constraint(snd_pcm_pipewire_t *pw, int key) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct param_info *p = param_info_by_key(key), info; | 
					
						
							|  |  |  | 	const char *str; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p == NULL) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	info = *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	str = pw_properties_get(pw->props, p->prop); | 
					
						
							|  |  |  | 	if (str != NULL) | 
					
						
							|  |  |  | 		parse_value(str, &info); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (info.type) { | 
					
						
							|  |  |  | 	case TYPE_LIST: | 
					
						
							|  |  |  | 		pw_log_info("%s: list %d", p->prop, info.n_vals); | 
					
						
							|  |  |  | 		err = snd_pcm_ioplug_set_param_list(&pw->io, key, info.n_vals, info.vals); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case TYPE_MIN_MAX: | 
					
						
							|  |  |  | 		pw_log_info("%s: min:%u max:%u", p->prop, info.vals[0], info.vals[1]); | 
					
						
							|  |  |  | 		err = snd_pcm_ioplug_set_param_minmax(&pw->io, key, info.vals[0], info.vals[1]); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							| 
									
										
										
										
											2020-03-11 10:38:23 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-08-22 11:02:01 +02:00
										 |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		pw_log_warn("Can't set param %s: %s", info.prop, snd_strerror(err)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static int pipewire_set_hw_constraint(snd_pcm_pipewire_t *pw) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	if ((err = set_constraint(pw, SND_PCM_IOPLUG_HW_ACCESS)) < 0 || | 
					
						
							|  |  |  | 	    (err = set_constraint(pw, SND_PCM_IOPLUG_HW_FORMAT)) < 0 || | 
					
						
							|  |  |  | 	    (err = set_constraint(pw, SND_PCM_IOPLUG_HW_RATE)) < 0 || | 
					
						
							|  |  |  | 	    (err = set_constraint(pw, SND_PCM_IOPLUG_HW_CHANNELS)) < 0 || | 
					
						
							|  |  |  | 	    (err = set_constraint(pw, SND_PCM_IOPLUG_HW_PERIOD_BYTES)) < 0 || | 
					
						
							|  |  |  | 	    (err = set_constraint(pw, SND_PCM_IOPLUG_HW_BUFFER_BYTES)) < 0 || | 
					
						
							|  |  |  | 	    (err = set_constraint(pw, SND_PCM_IOPLUG_HW_PERIODS)) < 0) | 
					
						
							|  |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-06 11:48:40 +01:00
										 |  |  | static void on_core_error(void *data, uint32_t id, int seq, int res, const char *message) | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-03 08:16:55 +02:00
										 |  |  | 	pw_log_warn("%p: error id:%u seq:%d res:%d (%s): %s", pw, | 
					
						
							| 
									
										
										
										
											2019-12-06 11:48:40 +01:00
										 |  |  | 			id, seq, res, spa_strerror(res), message); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 17:38:39 +02:00
										 |  |  | 	if (id == PW_ID_CORE) { | 
					
						
							|  |  |  | 		pw->error = res; | 
					
						
							| 
									
										
										
										
											2018-06-07 10:18:33 +02:00
										 |  |  | 		if (pw->fd != -1) | 
					
						
							| 
									
										
										
										
											2022-09-13 17:20:02 +02:00
										 |  |  | 			update_active(&pw->io); | 
					
						
							| 
									
										
										
										
											2019-12-06 11:48:40 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	pw_thread_loop_signal(pw->main_loop, false); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-11 07:46:59 +01:00
										 |  |  | static const struct pw_core_events core_events = { | 
					
						
							|  |  |  | 	PW_VERSION_CORE_EVENTS, | 
					
						
							| 
									
										
										
										
											2020-11-01 18:29:01 +01:00
										 |  |  | 	.error = on_core_error, | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-12 13:29:39 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | static ssize_t log_write(void *cookie, const char *buf, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (size > 0) { | 
					
						
							|  |  |  | 		len = strcspn(buf, "\n"); | 
					
						
							|  |  |  | 		if (len > 0) | 
					
						
							|  |  |  | 			pw_log_debug("%.*s", (int)len, buf); | 
					
						
							|  |  |  | 		buf += len + 1; | 
					
						
							|  |  |  | 		size -= len + 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static cookie_io_functions_t io_funcs = { | 
					
						
							|  |  |  | 	.write = log_write, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | static int execute_match(void *data, const char *location, const char *action, | 
					
						
							|  |  |  |                 const char *val, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw = data; | 
					
						
							|  |  |  | 	if (spa_streq(action, "update-props")) | 
					
						
							|  |  |  | 		pw_properties_update_string(pw->props, val, len); | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-20 16:13:59 +02:00
										 |  |  | static int snd_pcm_pipewire_open(snd_pcm_t **pcmp, | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 		struct pw_properties *props, snd_pcm_stream_t stream, int mode) | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	snd_pcm_pipewire_t *pw; | 
					
						
							|  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	const char *str, *node_name = NULL; | 
					
						
							| 
									
										
										
										
											2019-12-13 11:34:25 +01:00
										 |  |  | 	struct pw_loop *loop; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	assert(pcmp); | 
					
						
							|  |  |  | 	pw = calloc(1, sizeof(*pw)); | 
					
						
							|  |  |  | 	if (!pw) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	pw->props = props; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	pw->fd = -1; | 
					
						
							|  |  |  | 	pw->io.poll_fd = -1; | 
					
						
							| 
									
										
										
										
											2022-09-12 13:29:39 +02:00
										 |  |  | 	pw->log_file = fopencookie(pw, "w", io_funcs); | 
					
						
							|  |  |  | 	if (pw->log_file == NULL) { | 
					
						
							|  |  |  | 		pw_log_error("can't create log file: %m"); | 
					
						
							| 
									
										
										
										
											2022-09-20 16:13:59 +02:00
										 |  |  | 		err = -errno; | 
					
						
							|  |  |  | 		goto error; | 
					
						
							| 
									
										
										
										
											2022-09-12 13:29:39 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if ((err = snd_output_stdio_attach(&pw->output, pw->log_file, 0)) < 0) { | 
					
						
							|  |  |  | 		pw_log_error("can't attach log file: %s", snd_strerror(err)); | 
					
						
							| 
									
										
										
										
											2022-09-20 16:13:59 +02:00
										 |  |  | 		goto error; | 
					
						
							| 
									
										
										
										
											2022-09-12 13:29:39 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-13 11:34:25 +01:00
										 |  |  | 	pw->main_loop = pw_thread_loop_new("alsa-pipewire", NULL); | 
					
						
							| 
									
										
										
										
											2021-05-28 11:38:02 +02:00
										 |  |  | 	if (pw->main_loop == NULL) { | 
					
						
							|  |  |  | 		err = -errno; | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-12-13 11:34:25 +01:00
										 |  |  | 	loop = pw_thread_loop_get_loop(pw->main_loop); | 
					
						
							|  |  |  | 	pw->system = loop->system; | 
					
						
							| 
									
										
										
										
											2021-08-09 15:28:00 +02:00
										 |  |  | 	if ((pw->context = pw_context_new(loop, | 
					
						
							|  |  |  | 					pw_properties_new( | 
					
						
							| 
									
										
										
										
											2023-01-19 18:15:32 +01:00
										 |  |  | 						PW_KEY_CLIENT_API, "alsa", | 
					
						
							| 
									
										
										
										
											2021-08-09 15:28:00 +02:00
										 |  |  | 						NULL), | 
					
						
							|  |  |  | 					0)) == NULL) { | 
					
						
							| 
									
										
										
										
											2021-05-10 13:28:36 +02:00
										 |  |  | 		err = -errno; | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 18:15:32 +01:00
										 |  |  | 	pw_context_conf_update_props(pw->context, "alsa.properties", pw->props); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pw_context_conf_section_match_rules(pw->context, "alsa.rules", | 
					
						
							|  |  |  | 			&pw_context_get_properties(pw->context)->dict, execute_match, pw); | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (pw_properties_get(pw->props, PW_KEY_APP_NAME) == NULL) | 
					
						
							|  |  |  | 		pw_properties_setf(pw->props, PW_KEY_APP_NAME, "PipeWire ALSA [%s]", | 
					
						
							|  |  |  | 				pw_get_prgname()); | 
					
						
							|  |  |  | 	if (pw_properties_get(pw->props, PW_KEY_NODE_NAME) == NULL) | 
					
						
							| 
									
										
										
										
											2023-03-23 12:41:08 +01:00
										 |  |  | 		pw_properties_setf(pw->props, PW_KEY_NODE_NAME, "alsa_%s.%s", | 
					
						
							|  |  |  | 			       stream == SND_PCM_STREAM_PLAYBACK ? "playback" : "capture", | 
					
						
							|  |  |  | 			       pw_get_prgname()); | 
					
						
							|  |  |  | 	if (pw_properties_get(pw->props, PW_KEY_NODE_DESCRIPTION) == NULL) | 
					
						
							|  |  |  | 		pw_properties_setf(pw->props, PW_KEY_NODE_DESCRIPTION, "ALSA %s [%s]", | 
					
						
							|  |  |  | 			       stream == SND_PCM_STREAM_PLAYBACK ? "Playback" : "Capture", | 
					
						
							|  |  |  | 			       pw_get_prgname()); | 
					
						
							|  |  |  | 	if (pw_properties_get(pw->props, PW_KEY_MEDIA_NAME) == NULL) | 
					
						
							|  |  |  | 		pw_properties_setf(pw->props, PW_KEY_MEDIA_NAME, "ALSA %s", | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			       stream == SND_PCM_STREAM_PLAYBACK ? "Playback" : "Capture"); | 
					
						
							|  |  |  | 	if (pw_properties_get(pw->props, PW_KEY_MEDIA_TYPE) == NULL) | 
					
						
							|  |  |  | 		pw_properties_set(pw->props, PW_KEY_MEDIA_TYPE, "Audio"); | 
					
						
							|  |  |  | 	if (pw_properties_get(pw->props, PW_KEY_MEDIA_CATEGORY) == NULL) | 
					
						
							|  |  |  | 		pw_properties_set(pw->props, PW_KEY_MEDIA_CATEGORY, | 
					
						
							|  |  |  | 				stream == SND_PCM_STREAM_PLAYBACK ? | 
					
						
							|  |  |  | 				"Playback" : "Capture"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	str = getenv("PIPEWIRE_ALSA"); | 
					
						
							|  |  |  | 	if (str != NULL) | 
					
						
							|  |  |  | 		pw_properties_update_string(pw->props, str, strlen(str)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-12 18:41:37 +02:00
										 |  |  | 	if ((str = pw_properties_get(pw->props, "alsa.deny")) != NULL && | 
					
						
							|  |  |  | 	    spa_atob(str)) { | 
					
						
							|  |  |  | 		err = -EACCES; | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	str = getenv("PIPEWIRE_NODE"); | 
					
						
							| 
									
										
										
										
											2023-01-19 18:15:32 +01:00
										 |  |  | 	if (str != NULL && str[0]) | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 		pw_properties_set(pw->props, PW_KEY_TARGET_OBJECT, str); | 
					
						
							| 
									
										
										
										
											2019-08-12 12:27:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	node_name = pw_properties_get(pw->props, PW_KEY_NODE_NAME); | 
					
						
							|  |  |  | 	if (pw_properties_get(pw->props, PW_KEY_MEDIA_NAME) == NULL) | 
					
						
							|  |  |  | 		pw_properties_set(pw->props, PW_KEY_MEDIA_NAME, node_name); | 
					
						
							| 
									
										
										
										
											2020-07-23 20:43:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	if ((err = pw_thread_loop_start(pw->main_loop)) < 0) | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-06 11:48:40 +01:00
										 |  |  | 	pw_thread_loop_lock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	pw->core = pw_context_connect(pw->context, pw_properties_copy(pw->props), 0); | 
					
						
							| 
									
										
										
										
											2019-12-11 07:46:59 +01:00
										 |  |  | 	if (pw->core == NULL) { | 
					
						
							| 
									
										
										
										
											2019-12-06 11:48:40 +01:00
										 |  |  | 		err = -errno; | 
					
						
							|  |  |  | 		pw_thread_loop_unlock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		goto error; | 
					
						
							| 
									
										
										
										
											2019-12-06 11:48:40 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-12-11 07:46:59 +01:00
										 |  |  | 	pw_core_add_listener(pw->core, &pw->core_listener, &core_events, pw); | 
					
						
							| 
									
										
										
										
											2019-12-06 11:48:40 +01:00
										 |  |  | 	pw_thread_loop_unlock(pw->main_loop); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-06 16:23:07 +02:00
										 |  |  | 	pw->fd = spa_system_eventfd_create(pw->system, | 
					
						
							| 
									
										
										
										
											2024-05-07 10:07:30 +02:00
										 |  |  | 			SPA_FD_CLOEXEC | SPA_FD_NONBLOCK); | 
					
						
							| 
									
										
										
										
											2024-02-19 14:14:24 +01:00
										 |  |  | 	if (pw->fd < 0) { | 
					
						
							|  |  |  | 		err = pw->fd; | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	pw->io.version = SND_PCM_IOPLUG_VERSION; | 
					
						
							|  |  |  | 	pw->io.name = "ALSA <-> PipeWire PCM I/O Plugin"; | 
					
						
							|  |  |  | 	pw->io.callback = &pipewire_pcm_callback; | 
					
						
							|  |  |  | 	pw->io.private_data = pw; | 
					
						
							|  |  |  | 	pw->io.poll_fd = pw->fd; | 
					
						
							|  |  |  | 	pw->io.poll_events = POLLIN; | 
					
						
							|  |  |  | 	pw->io.mmap_rw = 1; | 
					
						
							| 
									
										
										
										
											2020-05-13 12:09:28 +02:00
										 |  |  | #ifdef SND_PCM_IOPLUG_FLAG_BOUNDARY_WA
 | 
					
						
							|  |  |  | 	pw->io.flags = SND_PCM_IOPLUG_FLAG_BOUNDARY_WA; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #warning hw_ptr updates of buffer_size will not be recognized by the ALSA library. Consider to update your ALSA library.
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-03-02 11:54:02 +01:00
										 |  |  | 	pw->io.flags |= SND_PCM_IOPLUG_FLAG_MONOTONIC; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	if ((err = snd_pcm_ioplug_create(&pw->io, node_name, stream, mode)) < 0) | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		goto error; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	if ((err = pipewire_set_hw_constraint(pw)) < 0) | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 		goto error; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	pw_log_debug("%p: opened name:%s stream:%s mode:%d", pw, node_name, | 
					
						
							| 
									
										
										
										
											2022-09-09 10:09:00 +02:00
										 |  |  | 			snd_pcm_stream_name(pw->io.stream), mode); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	*pcmp = pw->io.pcm; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-02 15:53:16 +02:00
										 |  |  | error: | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	pw_log_debug("%p: failed to open %s :%s", pw, node_name, spa_strerror(err)); | 
					
						
							| 
									
										
										
										
											2018-03-23 13:35:39 +01:00
										 |  |  | 	snd_pcm_pipewire_free(pw); | 
					
						
							|  |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 13:22:53 +01:00
										 |  |  | SPA_EXPORT | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | SND_PCM_PLUGIN_DEFINE_FUNC(pipewire) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	snd_config_iterator_t i, next; | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	struct pw_properties *props; | 
					
						
							|  |  |  | 	const char *str; | 
					
						
							|  |  |  | 	long val; | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-21 12:34:57 +02:00
										 |  |  | 	pw_init(NULL, NULL); | 
					
						
							| 
									
										
										
										
											2024-02-01 21:42:07 +01:00
										 |  |  | 	if (spa_strstartswith(pw_get_library_version(), "0.2")) | 
					
						
							| 
									
										
										
										
											2021-09-21 12:34:57 +02:00
										 |  |  | 		return -ENOTSUP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	props = pw_properties_new(NULL, NULL); | 
					
						
							|  |  |  | 	if (props == NULL) | 
					
						
							|  |  |  | 		return -errno; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-03 08:16:55 +02:00
										 |  |  | 	PW_LOG_TOPIC_INIT(alsa_log_topic); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 	snd_config_for_each(i, next, conf) { | 
					
						
							|  |  |  | 		snd_config_t *n = snd_config_iterator_entry(i); | 
					
						
							|  |  |  | 		const char *id; | 
					
						
							|  |  |  | 		if (snd_config_get_id(n, &id) < 0) | 
					
						
							|  |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | 		if (spa_streq(id, "comment") || spa_streq(id, "type") || spa_streq(id, "hint")) | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | 		if (spa_streq(id, "name")) { | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			if (snd_config_get_string(n, &str) == 0) | 
					
						
							|  |  |  | 				pw_properties_set(props, PW_KEY_NODE_NAME, str); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | 		if (spa_streq(id, "server")) { | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			if (snd_config_get_string(n, &str) == 0) | 
					
						
							|  |  |  | 				pw_properties_set(props, PW_KEY_REMOTE_NAME, str); | 
					
						
							| 
									
										
										
										
											2018-01-12 15:46:16 +01:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | 		if (spa_streq(id, "playback_node")) { | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			if (stream == SND_PCM_STREAM_PLAYBACK && | 
					
						
							|  |  |  | 			    snd_config_get_string(n, &str) == 0) | 
					
						
							|  |  |  | 				if (str != NULL && !spa_streq(str, "-1")) | 
					
						
							|  |  |  | 					pw_properties_set(props, PW_KEY_TARGET_OBJECT, str); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | 		if (spa_streq(id, "capture_node")) { | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			if (stream == SND_PCM_STREAM_CAPTURE && | 
					
						
							|  |  |  | 			    snd_config_get_string(n, &str) == 0) | 
					
						
							|  |  |  | 				if (str != NULL && !spa_streq(str, "-1")) | 
					
						
							|  |  |  | 					pw_properties_set(props, PW_KEY_TARGET_OBJECT, str); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-06-22 13:23:22 +03:00
										 |  |  | 		if (spa_streq(id, "role")) { | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			if (snd_config_get_string(n, &str) == 0) | 
					
						
							|  |  |  | 				if (str != NULL && *str) | 
					
						
							|  |  |  | 					pw_properties_set(props, PW_KEY_MEDIA_ROLE, str); | 
					
						
							| 
									
										
										
										
											2021-06-22 13:23:22 +03:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | 		if (spa_streq(id, "exclusive")) { | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 			if (snd_config_get_bool(n)) | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 				pw_properties_set(props, PW_KEY_NODE_EXCLUSIVE, "true"); | 
					
						
							| 
									
										
										
										
											2018-09-17 09:48:32 +02:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | 		if (spa_streq(id, "rate")) { | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			if (snd_config_get_integer(n, &val) == 0) { | 
					
						
							|  |  |  | 				if (val != 0) | 
					
						
							|  |  |  | 					pw_properties_setf(props, "alsa.rate", "%ld", val); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2020-03-12 14:57:18 +01:00
										 |  |  | 				SNDERR("%s: invalid type", id); | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-03-11 10:38:23 +01:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | 		if (spa_streq(id, "format")) { | 
					
						
							| 
									
										
										
										
											2020-03-11 10:38:23 +01:00
										 |  |  | 			if (snd_config_get_string(n, &str) == 0) { | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 				if (str != NULL && *str) | 
					
						
							|  |  |  | 					pw_properties_set(props, "alsa.format", str); | 
					
						
							| 
									
										
										
										
											2020-03-11 10:38:23 +01:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2020-03-12 14:57:18 +01:00
										 |  |  | 				SNDERR("%s: invalid type", id); | 
					
						
							| 
									
										
										
										
											2020-03-11 10:38:23 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | 		if (spa_streq(id, "channels")) { | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			if (snd_config_get_integer(n, &val) == 0) { | 
					
						
							|  |  |  | 				if (val != 0) | 
					
						
							|  |  |  | 					pw_properties_setf(props, "alsa.channels", "%ld", val); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2020-03-12 14:57:18 +01:00
										 |  |  | 				SNDERR("%s: invalid type", id); | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-03-12 14:57:18 +01:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-18 11:36:13 +10:00
										 |  |  | 		if (spa_streq(id, "period_bytes")) { | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			if (snd_config_get_integer(n, &val) == 0) { | 
					
						
							|  |  |  | 				if (val != 0) | 
					
						
							|  |  |  | 					pw_properties_setf(props, "alsa.period-bytes", "%ld", val); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2022-09-20 16:13:59 +02:00
										 |  |  | 				SNDERR("%s: invalid type", id); | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2022-09-20 16:13:59 +02:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (spa_streq(id, "buffer_bytes")) { | 
					
						
							|  |  |  | 			long val; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			if (snd_config_get_integer(n, &val) == 0) { | 
					
						
							|  |  |  | 				if (val != 0) | 
					
						
							|  |  |  | 					pw_properties_setf(props, "alsa.buffer-bytes", "%ld", val); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2020-03-12 14:57:18 +01:00
										 |  |  | 				SNDERR("%s: invalid type", id); | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-03-11 10:38:23 +01:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 		SNDERR("Unknown field %s", id); | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 		pw_properties_free(props); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-19 17:12:29 +01:00
										 |  |  | 	err = snd_pcm_pipewire_open(pcmp, props, stream, mode); | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 13:22:53 +01:00
										 |  |  | SPA_EXPORT | 
					
						
							| 
									
										
										
										
											2017-10-19 11:50:14 +02:00
										 |  |  | SND_PCM_PLUGIN_SYMBOL(pipewire); |