| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  audio_driver_alsa.cpp                                                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "audio_driver_alsa.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef ALSA_ENABLED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/config/project_settings.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/os/os.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 19:19:45 +01:00
										 |  |  | #include <errno.h>
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-15 14:13:56 +02:00
										 |  |  | #if defined(PULSEAUDIO_ENABLED) && defined(SOWRAP_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2021-02-16 16:19:03 +01:00
										 |  |  | extern "C" { | 
					
						
							| 
									
										
										
										
											2021-02-20 00:13:33 +01:00
										 |  |  | extern int initialize_pulse(int verbose); | 
					
						
							| 
									
										
										
										
											2021-02-16 16:19:03 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | Error AudioDriverALSA::init_output_device() { | 
					
						
							| 
									
										
										
										
											2022-12-09 22:39:14 -08:00
										 |  |  | 	mix_rate = _get_configured_mix_rate(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-16 19:19:45 +01:00
										 |  |  | 	speaker_mode = SPEAKER_MODE_STEREO; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	channels = 2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 	// If there is a specified output device check that it is really present
 | 
					
						
							|  |  |  | 	if (output_device_name != "Default") { | 
					
						
							|  |  |  | 		PackedStringArray list = get_output_device_list(); | 
					
						
							| 
									
										
										
										
											2024-05-06 16:20:20 +02:00
										 |  |  | 		if (!list.has(output_device_name)) { | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 			output_device_name = "Default"; | 
					
						
							|  |  |  | 			new_output_device = "Default"; | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 	snd_pcm_hw_params_t *hwparams; | 
					
						
							|  |  |  | 	snd_pcm_sw_params_t *swparams; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define CHECK_FAIL(m_cond)                                       \
 | 
					
						
							|  |  |  | 	if (m_cond) {                                                \ | 
					
						
							|  |  |  | 		fprintf(stderr, "ALSA ERR: %s\n", snd_strerror(status)); \ | 
					
						
							| 
									
										
										
										
											2018-07-23 12:55:34 +01:00
										 |  |  | 		if (pcm_handle) {                                        \ | 
					
						
							|  |  |  | 			snd_pcm_close(pcm_handle);                           \ | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 			pcm_handle = nullptr;                                \ | 
					
						
							| 
									
										
										
										
											2018-07-23 12:55:34 +01:00
										 |  |  | 		}                                                        \ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		ERR_FAIL_COND_V(m_cond, ERR_CANT_OPEN);                  \ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//todo, add
 | 
					
						
							|  |  |  | 	//6 chans - "plug:surround51"
 | 
					
						
							|  |  |  | 	//4 chans - "plug:surround40";
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 	if (output_device_name == "Default") { | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 		status = snd_pcm_open(&pcm_handle, "default", SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 		String device = output_device_name; | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 		int pos = device.find(";"); | 
					
						
							|  |  |  | 		if (pos != -1) { | 
					
						
							|  |  |  | 			device = device.substr(0, pos); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		status = snd_pcm_open(&pcm_handle, device.utf8().get_data(), SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(status < 0, ERR_CANT_OPEN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_pcm_hw_params_alloca(&hwparams); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-03 19:00:31 +01:00
										 |  |  | 	status = snd_pcm_hw_params_any(pcm_handle, hwparams); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = snd_pcm_hw_params_set_access(pcm_handle, hwparams, SND_PCM_ACCESS_RW_INTERLEAVED); | 
					
						
							|  |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//not interested in anything else
 | 
					
						
							|  |  |  | 	status = snd_pcm_hw_params_set_format(pcm_handle, hwparams, SND_PCM_FORMAT_S16_LE); | 
					
						
							|  |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//todo: support 4 and 6
 | 
					
						
							|  |  |  | 	status = snd_pcm_hw_params_set_channels(pcm_handle, hwparams, 2); | 
					
						
							|  |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	status = snd_pcm_hw_params_set_rate_near(pcm_handle, hwparams, &mix_rate, nullptr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-29 16:47:44 -03:00
										 |  |  | 	// In ALSA the period size seems to be the one that will determine the actual latency
 | 
					
						
							|  |  |  | 	// Ref: https://www.alsa-project.org/main/index.php/FramesPeriods
 | 
					
						
							|  |  |  | 	unsigned int periods = 2; | 
					
						
							| 
									
										
										
										
											2023-06-08 19:46:05 +02:00
										 |  |  | 	int latency = Engine::get_singleton()->get_audio_output_latency(); | 
					
						
							| 
									
										
										
										
											2017-08-29 16:47:44 -03:00
										 |  |  | 	buffer_frames = closest_power_of_2(latency * mix_rate / 1000); | 
					
						
							|  |  |  | 	buffer_size = buffer_frames * periods; | 
					
						
							|  |  |  | 	period_size = buffer_frames; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-03 19:00:31 +01:00
										 |  |  | 	// set buffer size from project settings
 | 
					
						
							|  |  |  | 	status = snd_pcm_hw_params_set_buffer_size_near(pcm_handle, hwparams, &buffer_size); | 
					
						
							|  |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	status = snd_pcm_hw_params_set_period_size_near(pcm_handle, hwparams, &period_size, nullptr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-24 08:47:34 +02:00
										 |  |  | 	print_verbose("Audio buffer frames: " + itos(period_size) + " calculated latency: " + itos(period_size * 1000 / mix_rate) + "ms"); | 
					
						
							| 
									
										
										
										
											2017-08-29 16:47:44 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	status = snd_pcm_hw_params_set_periods_near(pcm_handle, hwparams, &periods, nullptr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = snd_pcm_hw_params(pcm_handle, hwparams); | 
					
						
							|  |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//snd_pcm_hw_params_free(&hwparams);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_pcm_sw_params_alloca(&swparams); | 
					
						
							| 
									
										
										
										
											2017-01-03 19:00:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	status = snd_pcm_sw_params_current(pcm_handle, swparams); | 
					
						
							|  |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-03 19:00:31 +01:00
										 |  |  | 	status = snd_pcm_sw_params_set_avail_min(pcm_handle, swparams, period_size); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = snd_pcm_sw_params_set_start_threshold(pcm_handle, swparams, 1); | 
					
						
							|  |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = snd_pcm_sw_params(pcm_handle, swparams); | 
					
						
							|  |  |  | 	CHECK_FAIL(status < 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 	samples_in.resize(period_size * channels); | 
					
						
							|  |  |  | 	samples_out.resize(period_size * channels); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Error AudioDriverALSA::init() { | 
					
						
							| 
									
										
										
										
											2023-02-15 14:13:56 +02:00
										 |  |  | #ifdef SOWRAP_ENABLED
 | 
					
						
							| 
									
										
										
										
											2021-02-20 00:13:33 +01:00
										 |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							|  |  |  | 	int dylibloader_verbose = 1; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	int dylibloader_verbose = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-02-16 16:19:03 +01:00
										 |  |  | #ifdef PULSEAUDIO_ENABLED
 | 
					
						
							|  |  |  | 	// On pulse enabled systems Alsa will silently use pulse.
 | 
					
						
							|  |  |  | 	// It doesn't matter if this fails as that likely means there is no pulse
 | 
					
						
							| 
									
										
										
										
											2021-02-20 00:13:33 +01:00
										 |  |  | 	initialize_pulse(dylibloader_verbose); | 
					
						
							| 
									
										
										
										
											2021-02-16 16:19:03 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-20 00:13:33 +01:00
										 |  |  | 	if (initialize_asound(dylibloader_verbose)) { | 
					
						
							| 
									
										
										
										
											2021-02-16 16:19:03 +01:00
										 |  |  | 		return ERR_CANT_OPEN; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-02-15 14:13:56 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-03-16 10:44:47 +02:00
										 |  |  | 	bool ver_ok = false; | 
					
						
							|  |  |  | 	String version = String::utf8(snd_asoundlib_version()); | 
					
						
							|  |  |  | 	Vector<String> ver_parts = version.split("."); | 
					
						
							|  |  |  | 	if (ver_parts.size() >= 2) { | 
					
						
							|  |  |  | 		ver_ok = ((ver_parts[0].to_int() == 1 && ver_parts[1].to_int() >= 1)) || (ver_parts[0].to_int() > 1); // 1.1.0
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	print_verbose(vformat("ALSA %s detected.", version)); | 
					
						
							|  |  |  | 	if (!ver_ok) { | 
					
						
							|  |  |  | 		print_verbose("Unsupported ALSA library version!"); | 
					
						
							|  |  |  | 		return ERR_CANT_OPEN; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-19 10:38:13 +02:00
										 |  |  | 	active.clear(); | 
					
						
							|  |  |  | 	exit_thread.clear(); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 	Error err = init_output_device(); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 	if (err == OK) { | 
					
						
							| 
									
										
										
										
											2021-01-19 13:29:41 +01:00
										 |  |  | 		thread.start(AudioDriverALSA::thread_func, this); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2018-12-08 15:07:33 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | void AudioDriverALSA::thread_func(void *p_udata) { | 
					
						
							| 
									
										
										
										
											2022-04-05 13:40:26 +03:00
										 |  |  | 	AudioDriverALSA *ad = static_cast<AudioDriverALSA *>(p_udata); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-19 10:38:13 +02:00
										 |  |  | 	while (!ad->exit_thread.is_set()) { | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 		ad->lock(); | 
					
						
							|  |  |  | 		ad->start_counting_ticks(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-19 10:38:13 +02:00
										 |  |  | 		if (!ad->active.is_set()) { | 
					
						
							| 
									
										
										
										
											2019-09-22 18:45:08 +02:00
										 |  |  | 			for (uint64_t i = 0; i < ad->period_size * ad->channels; i++) { | 
					
						
							| 
									
										
										
										
											2018-07-25 03:11:03 +02:00
										 |  |  | 				ad->samples_out.write[i] = 0; | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 			ad->audio_server_process(ad->period_size, ad->samples_in.ptrw()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-22 18:45:08 +02:00
										 |  |  | 			for (uint64_t i = 0; i < ad->period_size * ad->channels; i++) { | 
					
						
							| 
									
										
										
										
											2018-07-25 03:11:03 +02:00
										 |  |  | 				ad->samples_out.write[i] = ad->samples_in[i] >> 16; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-03 19:00:31 +01:00
										 |  |  | 		int todo = ad->period_size; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		int total = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-19 10:38:13 +02:00
										 |  |  | 		while (todo && !ad->exit_thread.is_set()) { | 
					
						
							| 
									
										
										
										
											2020-11-27 16:05:59 -05:00
										 |  |  | 			int16_t *src = (int16_t *)ad->samples_out.ptr(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			int wrote = snd_pcm_writei(ad->pcm_handle, (void *)(src + (total * ad->channels)), todo); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 			if (wrote > 0) { | 
					
						
							|  |  |  | 				total += wrote; | 
					
						
							|  |  |  | 				todo -= wrote; | 
					
						
							|  |  |  | 			} else if (wrote == -EAGAIN) { | 
					
						
							|  |  |  | 				ad->stop_counting_ticks(); | 
					
						
							|  |  |  | 				ad->unlock(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 				OS::get_singleton()->delay_usec(1000); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				ad->lock(); | 
					
						
							|  |  |  | 				ad->start_counting_ticks(); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				wrote = snd_pcm_recover(ad->pcm_handle, wrote, 0); | 
					
						
							|  |  |  | 				if (wrote < 0) { | 
					
						
							| 
									
										
										
										
											2019-11-06 17:03:04 +01:00
										 |  |  | 					ERR_PRINT("ALSA: Failed and can't recover: " + String(snd_strerror(wrote))); | 
					
						
							| 
									
										
										
										
											2022-08-19 10:38:13 +02:00
										 |  |  | 					ad->active.clear(); | 
					
						
							|  |  |  | 					ad->exit_thread.set(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 		// User selected a new output device, finish the current one so we'll init the new device.
 | 
					
						
							|  |  |  | 		if (ad->output_device_name != ad->new_output_device) { | 
					
						
							|  |  |  | 			ad->output_device_name = ad->new_output_device; | 
					
						
							|  |  |  | 			ad->finish_output_device(); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 			Error err = ad->init_output_device(); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 			if (err != OK) { | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 				ERR_PRINT("ALSA: init_output_device error"); | 
					
						
							|  |  |  | 				ad->output_device_name = "Default"; | 
					
						
							|  |  |  | 				ad->new_output_device = "Default"; | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 				err = ad->init_output_device(); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 				if (err != OK) { | 
					
						
							| 
									
										
										
										
											2022-08-19 10:38:13 +02:00
										 |  |  | 					ad->active.clear(); | 
					
						
							|  |  |  | 					ad->exit_thread.set(); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		ad->stop_counting_ticks(); | 
					
						
							|  |  |  | 		ad->unlock(); | 
					
						
							| 
									
										
										
										
											2018-12-08 15:07:33 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | void AudioDriverALSA::start() { | 
					
						
							| 
									
										
										
										
											2022-08-19 10:38:13 +02:00
										 |  |  | 	active.set(); | 
					
						
							| 
									
										
										
										
											2018-12-08 15:07:33 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | int AudioDriverALSA::get_mix_rate() const { | 
					
						
							|  |  |  | 	return mix_rate; | 
					
						
							| 
									
										
										
										
											2018-12-08 15:07:33 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 16:06:14 -03:00
										 |  |  | AudioDriver::SpeakerMode AudioDriverALSA::get_speaker_mode() const { | 
					
						
							| 
									
										
										
										
											2017-01-16 19:19:45 +01:00
										 |  |  | 	return speaker_mode; | 
					
						
							| 
									
										
										
										
											2018-12-08 15:07:33 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-16 19:19:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | PackedStringArray AudioDriverALSA::get_output_device_list() { | 
					
						
							| 
									
										
										
										
											2022-08-05 03:41:48 +02:00
										 |  |  | 	PackedStringArray list; | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	list.push_back("Default"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void **hints; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (snd_device_name_hint(-1, "pcm", &hints) < 0) { | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 		return list; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	for (void **n = hints; *n != nullptr; n++) { | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 		char *name = snd_device_name_get_hint(*n, "NAME"); | 
					
						
							|  |  |  | 		char *desc = snd_device_name_get_hint(*n, "DESC"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		if (name != nullptr && !strncmp(name, "plughw", 6)) { | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 			if (desc) { | 
					
						
							| 
									
										
										
										
											2022-01-06 11:34:10 +02:00
										 |  |  | 				list.push_back(String::utf8(name) + ";" + String::utf8(desc)); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2022-01-06 11:34:10 +02:00
										 |  |  | 				list.push_back(String::utf8(name)); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (desc != nullptr) { | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 			free(desc); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (name != nullptr) { | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 			free(name); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	snd_device_name_free_hint(hints); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return list; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | String AudioDriverALSA::get_output_device() { | 
					
						
							|  |  |  | 	return output_device_name; | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | void AudioDriverALSA::set_output_device(const String &p_name) { | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 	lock(); | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 	new_output_device = p_name; | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 	unlock(); | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void AudioDriverALSA::lock() { | 
					
						
							| 
									
										
										
										
											2020-02-26 11:28:13 +01:00
										 |  |  | 	mutex.lock(); | 
					
						
							| 
									
										
										
										
											2018-12-08 15:07:33 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-16 19:19:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void AudioDriverALSA::unlock() { | 
					
						
							| 
									
										
										
										
											2020-02-26 11:28:13 +01:00
										 |  |  | 	mutex.unlock(); | 
					
						
							| 
									
										
										
										
											2018-12-08 15:07:33 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | void AudioDriverALSA::finish_output_device() { | 
					
						
							| 
									
										
										
										
											2018-07-23 12:55:34 +01:00
										 |  |  | 	if (pcm_handle) { | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 		snd_pcm_close(pcm_handle); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		pcm_handle = nullptr; | 
					
						
							| 
									
										
										
										
											2018-03-25 00:43:51 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void AudioDriverALSA::finish() { | 
					
						
							| 
									
										
										
										
											2022-08-19 10:38:13 +02:00
										 |  |  | 	exit_thread.set(); | 
					
						
							| 
									
										
										
										
											2023-04-27 18:34:30 +02:00
										 |  |  | 	if (thread.is_started()) { | 
					
						
							|  |  |  | 		thread.wait_to_finish(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-08 17:40:15 +02:00
										 |  |  | 	finish_output_device(); | 
					
						
							| 
									
										
										
										
											2018-06-20 21:02:02 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | #endif // ALSA_ENABLED
 |