2009-04-16 05:17:42 -07:00
|
|
|
/**
|
|
|
|
* OpenAL cross platform audio library
|
|
|
|
* Copyright (C) 2009 by Konstantinos Natsakis <konstantinos.natsakis@gmail.com>
|
2010-07-17 23:30:25 -07:00
|
|
|
* Copyright (C) 2010 by Chris Robinson <chris.kcat@gmail.com>
|
2009-04-16 05:17:42 -07:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2014-08-18 14:11:03 +02:00
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2009-04-16 05:17:42 -07:00
|
|
|
* Or go to http://www.gnu.org/copyleft/lgpl.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-11-15 19:55:56 -08:00
|
|
|
#include "backends/pulseaudio.h"
|
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
#include <poll.h>
|
2019-01-09 19:42:40 +01:00
|
|
|
#include <cstring>
|
2012-09-14 02:14:29 -07:00
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
#include <array>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2018-11-01 08:17:23 -07:00
|
|
|
#include <atomic>
|
2018-10-31 20:09:14 -07:00
|
|
|
#include <thread>
|
|
|
|
#include <algorithm>
|
2019-10-09 23:04:05 -07:00
|
|
|
#include <functional>
|
2019-04-27 12:25:49 -07:00
|
|
|
#include <condition_variable>
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2019-07-28 18:33:29 -07:00
|
|
|
#include "alcmain.h"
|
2012-09-14 02:14:29 -07:00
|
|
|
#include "alu.h"
|
2018-01-11 07:56:54 -08:00
|
|
|
#include "alconfig.h"
|
2019-05-04 20:35:24 -07:00
|
|
|
#include "alexcpt.h"
|
2019-08-10 21:54:30 -07:00
|
|
|
#include "compat.h"
|
|
|
|
#include "dynload.h"
|
2019-08-12 03:59:52 -07:00
|
|
|
#include "strutils.h"
|
2009-04-16 05:17:42 -07:00
|
|
|
|
|
|
|
#include <pulse/pulseaudio.h>
|
|
|
|
|
|
|
|
|
2018-11-02 14:56:10 -07:00
|
|
|
namespace {
|
|
|
|
|
2011-06-14 04:45:52 -07:00
|
|
|
#ifdef HAVE_DYNLOAD
|
2019-04-27 18:01:26 -07:00
|
|
|
#define PULSE_FUNCS(MAGIC) \
|
|
|
|
MAGIC(pa_mainloop_new); \
|
|
|
|
MAGIC(pa_mainloop_free); \
|
|
|
|
MAGIC(pa_mainloop_set_poll_func); \
|
|
|
|
MAGIC(pa_mainloop_run); \
|
2019-10-09 23:04:05 -07:00
|
|
|
MAGIC(pa_mainloop_quit); \
|
2019-04-27 18:01:26 -07:00
|
|
|
MAGIC(pa_mainloop_get_api); \
|
|
|
|
MAGIC(pa_context_new); \
|
|
|
|
MAGIC(pa_context_unref); \
|
|
|
|
MAGIC(pa_context_get_state); \
|
|
|
|
MAGIC(pa_context_disconnect); \
|
|
|
|
MAGIC(pa_context_set_state_callback); \
|
|
|
|
MAGIC(pa_context_errno); \
|
|
|
|
MAGIC(pa_context_connect); \
|
|
|
|
MAGIC(pa_context_get_server_info); \
|
|
|
|
MAGIC(pa_context_get_sink_info_by_name); \
|
|
|
|
MAGIC(pa_context_get_sink_info_list); \
|
|
|
|
MAGIC(pa_context_get_source_info_by_name); \
|
|
|
|
MAGIC(pa_context_get_source_info_list); \
|
|
|
|
MAGIC(pa_stream_new); \
|
|
|
|
MAGIC(pa_stream_unref); \
|
|
|
|
MAGIC(pa_stream_drop); \
|
|
|
|
MAGIC(pa_stream_get_state); \
|
|
|
|
MAGIC(pa_stream_peek); \
|
|
|
|
MAGIC(pa_stream_write); \
|
|
|
|
MAGIC(pa_stream_connect_record); \
|
|
|
|
MAGIC(pa_stream_connect_playback); \
|
|
|
|
MAGIC(pa_stream_readable_size); \
|
|
|
|
MAGIC(pa_stream_writable_size); \
|
|
|
|
MAGIC(pa_stream_is_corked); \
|
|
|
|
MAGIC(pa_stream_cork); \
|
|
|
|
MAGIC(pa_stream_is_suspended); \
|
|
|
|
MAGIC(pa_stream_get_device_name); \
|
|
|
|
MAGIC(pa_stream_get_latency); \
|
|
|
|
MAGIC(pa_stream_set_write_callback); \
|
|
|
|
MAGIC(pa_stream_set_buffer_attr); \
|
|
|
|
MAGIC(pa_stream_get_buffer_attr); \
|
|
|
|
MAGIC(pa_stream_get_sample_spec); \
|
|
|
|
MAGIC(pa_stream_get_time); \
|
|
|
|
MAGIC(pa_stream_set_read_callback); \
|
|
|
|
MAGIC(pa_stream_set_state_callback); \
|
|
|
|
MAGIC(pa_stream_set_moved_callback); \
|
|
|
|
MAGIC(pa_stream_set_underflow_callback); \
|
|
|
|
MAGIC(pa_stream_new_with_proplist); \
|
|
|
|
MAGIC(pa_stream_disconnect); \
|
|
|
|
MAGIC(pa_stream_set_buffer_attr_callback); \
|
|
|
|
MAGIC(pa_stream_begin_write); \
|
|
|
|
MAGIC(pa_channel_map_init_auto); \
|
|
|
|
MAGIC(pa_channel_map_parse); \
|
|
|
|
MAGIC(pa_channel_map_snprint); \
|
|
|
|
MAGIC(pa_channel_map_equal); \
|
|
|
|
MAGIC(pa_channel_map_superset); \
|
|
|
|
MAGIC(pa_operation_get_state); \
|
|
|
|
MAGIC(pa_operation_unref); \
|
|
|
|
MAGIC(pa_sample_spec_valid); \
|
|
|
|
MAGIC(pa_frame_size); \
|
|
|
|
MAGIC(pa_strerror); \
|
|
|
|
MAGIC(pa_path_get_filename); \
|
|
|
|
MAGIC(pa_get_binary_name); \
|
|
|
|
MAGIC(pa_xmalloc); \
|
|
|
|
MAGIC(pa_xfree);
|
|
|
|
|
|
|
|
void *pulse_handle;
|
2018-11-02 14:56:10 -07:00
|
|
|
#define MAKE_FUNC(x) decltype(x) * p##x
|
2019-04-27 18:01:26 -07:00
|
|
|
PULSE_FUNCS(MAKE_FUNC)
|
2009-05-19 06:35:12 -07:00
|
|
|
#undef MAKE_FUNC
|
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
#ifndef IN_IDE_PARSER
|
2019-04-27 18:01:26 -07:00
|
|
|
#define pa_mainloop_new ppa_mainloop_new
|
|
|
|
#define pa_mainloop_free ppa_mainloop_free
|
|
|
|
#define pa_mainloop_set_poll_func ppa_mainloop_set_poll_func
|
|
|
|
#define pa_mainloop_run ppa_mainloop_run
|
2019-10-09 23:04:05 -07:00
|
|
|
#define pa_mainloop_quit ppa_mainloop_quit
|
2019-04-27 18:01:26 -07:00
|
|
|
#define pa_mainloop_get_api ppa_mainloop_get_api
|
|
|
|
#define pa_context_new ppa_context_new
|
2011-06-14 04:45:52 -07:00
|
|
|
#define pa_context_unref ppa_context_unref
|
|
|
|
#define pa_context_get_state ppa_context_get_state
|
|
|
|
#define pa_context_disconnect ppa_context_disconnect
|
|
|
|
#define pa_context_set_state_callback ppa_context_set_state_callback
|
|
|
|
#define pa_context_errno ppa_context_errno
|
2019-04-27 18:01:26 -07:00
|
|
|
#define pa_context_connect ppa_context_connect
|
|
|
|
#define pa_context_get_server_info ppa_context_get_server_info
|
|
|
|
#define pa_context_get_sink_info_by_name ppa_context_get_sink_info_by_name
|
|
|
|
#define pa_context_get_sink_info_list ppa_context_get_sink_info_list
|
|
|
|
#define pa_context_get_source_info_by_name ppa_context_get_source_info_by_name
|
|
|
|
#define pa_context_get_source_info_list ppa_context_get_source_info_list
|
|
|
|
#define pa_stream_new ppa_stream_new
|
2011-06-14 04:45:52 -07:00
|
|
|
#define pa_stream_unref ppa_stream_unref
|
2019-04-27 18:01:26 -07:00
|
|
|
#define pa_stream_disconnect ppa_stream_disconnect
|
|
|
|
#define pa_stream_drop ppa_stream_drop
|
2011-06-14 04:45:52 -07:00
|
|
|
#define pa_stream_set_write_callback ppa_stream_set_write_callback
|
|
|
|
#define pa_stream_set_buffer_attr ppa_stream_set_buffer_attr
|
|
|
|
#define pa_stream_get_buffer_attr ppa_stream_get_buffer_attr
|
|
|
|
#define pa_stream_get_sample_spec ppa_stream_get_sample_spec
|
|
|
|
#define pa_stream_get_time ppa_stream_get_time
|
|
|
|
#define pa_stream_set_read_callback ppa_stream_set_read_callback
|
|
|
|
#define pa_stream_set_state_callback ppa_stream_set_state_callback
|
|
|
|
#define pa_stream_set_moved_callback ppa_stream_set_moved_callback
|
|
|
|
#define pa_stream_set_underflow_callback ppa_stream_set_underflow_callback
|
2019-04-27 18:01:26 -07:00
|
|
|
#define pa_stream_connect_record ppa_stream_connect_record
|
|
|
|
#define pa_stream_connect_playback ppa_stream_connect_playback
|
|
|
|
#define pa_stream_readable_size ppa_stream_readable_size
|
|
|
|
#define pa_stream_writable_size ppa_stream_writable_size
|
|
|
|
#define pa_stream_is_corked ppa_stream_is_corked
|
|
|
|
#define pa_stream_cork ppa_stream_cork
|
|
|
|
#define pa_stream_is_suspended ppa_stream_is_suspended
|
|
|
|
#define pa_stream_get_device_name ppa_stream_get_device_name
|
|
|
|
#define pa_stream_get_latency ppa_stream_get_latency
|
|
|
|
#define pa_stream_set_buffer_attr_callback ppa_stream_set_buffer_attr_callback
|
|
|
|
#define pa_stream_begin_write ppa_stream_begin_write*/
|
2011-06-14 04:45:52 -07:00
|
|
|
#define pa_channel_map_init_auto ppa_channel_map_init_auto
|
|
|
|
#define pa_channel_map_parse ppa_channel_map_parse
|
|
|
|
#define pa_channel_map_snprint ppa_channel_map_snprint
|
|
|
|
#define pa_channel_map_equal ppa_channel_map_equal
|
2019-04-27 18:01:26 -07:00
|
|
|
#define pa_channel_map_superset ppa_channel_map_superset
|
2011-06-14 04:45:52 -07:00
|
|
|
#define pa_operation_get_state ppa_operation_get_state
|
|
|
|
#define pa_operation_unref ppa_operation_unref
|
2019-04-27 18:01:26 -07:00
|
|
|
#define pa_sample_spec_valid ppa_sample_spec_valid
|
|
|
|
#define pa_frame_size ppa_frame_size
|
|
|
|
#define pa_strerror ppa_strerror
|
|
|
|
#define pa_stream_get_state ppa_stream_get_state
|
|
|
|
#define pa_stream_peek ppa_stream_peek
|
|
|
|
#define pa_stream_write ppa_stream_write
|
|
|
|
#define pa_xfree ppa_xfree
|
|
|
|
#define pa_path_get_filename ppa_path_get_filename
|
|
|
|
#define pa_get_binary_name ppa_get_binary_name
|
|
|
|
#define pa_xmalloc ppa_xmalloc
|
2018-10-31 20:09:14 -07:00
|
|
|
#endif /* IN_IDE_PARSER */
|
2011-06-14 04:45:52 -07:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-05-04 20:54:49 -07:00
|
|
|
constexpr pa_channel_map MonoChanMap{
|
|
|
|
1, {PA_CHANNEL_POSITION_MONO}
|
|
|
|
}, StereoChanMap{
|
|
|
|
2, {PA_CHANNEL_POSITION_FRONT_LEFT, PA_CHANNEL_POSITION_FRONT_RIGHT}
|
|
|
|
}, QuadChanMap{
|
|
|
|
4, {
|
|
|
|
PA_CHANNEL_POSITION_FRONT_LEFT, PA_CHANNEL_POSITION_FRONT_RIGHT,
|
|
|
|
PA_CHANNEL_POSITION_REAR_LEFT, PA_CHANNEL_POSITION_REAR_RIGHT
|
|
|
|
}
|
|
|
|
}, X51ChanMap{
|
|
|
|
6, {
|
|
|
|
PA_CHANNEL_POSITION_FRONT_LEFT, PA_CHANNEL_POSITION_FRONT_RIGHT,
|
|
|
|
PA_CHANNEL_POSITION_FRONT_CENTER, PA_CHANNEL_POSITION_LFE,
|
|
|
|
PA_CHANNEL_POSITION_SIDE_LEFT, PA_CHANNEL_POSITION_SIDE_RIGHT
|
|
|
|
}
|
|
|
|
}, X51RearChanMap{
|
|
|
|
6, {
|
|
|
|
PA_CHANNEL_POSITION_FRONT_LEFT, PA_CHANNEL_POSITION_FRONT_RIGHT,
|
|
|
|
PA_CHANNEL_POSITION_FRONT_CENTER, PA_CHANNEL_POSITION_LFE,
|
|
|
|
PA_CHANNEL_POSITION_REAR_LEFT, PA_CHANNEL_POSITION_REAR_RIGHT
|
|
|
|
}
|
|
|
|
}, X61ChanMap{
|
|
|
|
7, {
|
|
|
|
PA_CHANNEL_POSITION_FRONT_LEFT, PA_CHANNEL_POSITION_FRONT_RIGHT,
|
|
|
|
PA_CHANNEL_POSITION_FRONT_CENTER, PA_CHANNEL_POSITION_LFE,
|
|
|
|
PA_CHANNEL_POSITION_REAR_CENTER,
|
|
|
|
PA_CHANNEL_POSITION_SIDE_LEFT, PA_CHANNEL_POSITION_SIDE_RIGHT
|
|
|
|
}
|
|
|
|
}, X71ChanMap{
|
|
|
|
8, {
|
|
|
|
PA_CHANNEL_POSITION_FRONT_LEFT, PA_CHANNEL_POSITION_FRONT_RIGHT,
|
|
|
|
PA_CHANNEL_POSITION_FRONT_CENTER, PA_CHANNEL_POSITION_LFE,
|
|
|
|
PA_CHANNEL_POSITION_REAR_LEFT, PA_CHANNEL_POSITION_REAR_RIGHT,
|
|
|
|
PA_CHANNEL_POSITION_SIDE_LEFT, PA_CHANNEL_POSITION_SIDE_RIGHT
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-04 23:45:27 -07:00
|
|
|
size_t ChannelFromPulse(pa_channel_position_t chan)
|
|
|
|
{
|
|
|
|
switch(chan)
|
|
|
|
{
|
|
|
|
case PA_CHANNEL_POSITION_INVALID: break;
|
|
|
|
case PA_CHANNEL_POSITION_MONO: return FrontCenter;
|
|
|
|
case PA_CHANNEL_POSITION_FRONT_LEFT: return FrontLeft;
|
|
|
|
case PA_CHANNEL_POSITION_FRONT_RIGHT: return FrontRight;
|
|
|
|
case PA_CHANNEL_POSITION_FRONT_CENTER: return FrontCenter;
|
|
|
|
case PA_CHANNEL_POSITION_REAR_CENTER: return BackCenter;
|
|
|
|
case PA_CHANNEL_POSITION_REAR_LEFT: return BackLeft;
|
|
|
|
case PA_CHANNEL_POSITION_REAR_RIGHT: return BackRight;
|
|
|
|
case PA_CHANNEL_POSITION_LFE: return LFE;
|
|
|
|
case PA_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER: break;
|
|
|
|
case PA_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER: break;
|
|
|
|
case PA_CHANNEL_POSITION_SIDE_LEFT: return SideLeft;
|
|
|
|
case PA_CHANNEL_POSITION_SIDE_RIGHT: return SideRight;
|
|
|
|
case PA_CHANNEL_POSITION_AUX0: return Aux0;
|
|
|
|
case PA_CHANNEL_POSITION_AUX1: return Aux1;
|
|
|
|
case PA_CHANNEL_POSITION_AUX2: return Aux2;
|
|
|
|
case PA_CHANNEL_POSITION_AUX3: return Aux3;
|
|
|
|
case PA_CHANNEL_POSITION_AUX4: return Aux4;
|
|
|
|
case PA_CHANNEL_POSITION_AUX5: return Aux5;
|
|
|
|
case PA_CHANNEL_POSITION_AUX6: return Aux6;
|
|
|
|
case PA_CHANNEL_POSITION_AUX7: return Aux7;
|
|
|
|
case PA_CHANNEL_POSITION_AUX8: return Aux8;
|
|
|
|
case PA_CHANNEL_POSITION_AUX9: return Aux9;
|
|
|
|
case PA_CHANNEL_POSITION_AUX10: return Aux10;
|
|
|
|
case PA_CHANNEL_POSITION_AUX11: return Aux11;
|
|
|
|
case PA_CHANNEL_POSITION_AUX12: return Aux12;
|
|
|
|
case PA_CHANNEL_POSITION_AUX13: return Aux13;
|
|
|
|
case PA_CHANNEL_POSITION_AUX14: return Aux14;
|
|
|
|
case PA_CHANNEL_POSITION_AUX15: return Aux15;
|
|
|
|
case PA_CHANNEL_POSITION_AUX16: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX17: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX18: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX19: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX20: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX21: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX22: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX23: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX24: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX25: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX26: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX27: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX28: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX29: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX30: break;
|
|
|
|
case PA_CHANNEL_POSITION_AUX31: break;
|
|
|
|
case PA_CHANNEL_POSITION_TOP_CENTER: break;
|
|
|
|
case PA_CHANNEL_POSITION_TOP_FRONT_LEFT: return UpperFrontLeft;
|
|
|
|
case PA_CHANNEL_POSITION_TOP_FRONT_RIGHT: return UpperFrontRight;
|
|
|
|
case PA_CHANNEL_POSITION_TOP_FRONT_CENTER: break;
|
|
|
|
case PA_CHANNEL_POSITION_TOP_REAR_LEFT: return UpperBackLeft;
|
|
|
|
case PA_CHANNEL_POSITION_TOP_REAR_RIGHT: return UpperBackRight;
|
|
|
|
case PA_CHANNEL_POSITION_TOP_REAR_CENTER: break;
|
|
|
|
case PA_CHANNEL_POSITION_MAX: break;
|
|
|
|
}
|
|
|
|
throw al::backend_exception{ALC_INVALID_VALUE, "Unexpected channel enum %d", chan};
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetChannelOrderFromMap(ALCdevice *device, const pa_channel_map &chanmap)
|
|
|
|
{
|
2019-09-12 04:17:21 -07:00
|
|
|
device->RealOut.ChannelIndex.fill(INVALID_CHANNEL_INDEX);
|
|
|
|
for(ALuint i{0};i < chanmap.channels;++i)
|
2019-05-04 23:45:27 -07:00
|
|
|
device->RealOut.ChannelIndex[ChannelFromPulse(chanmap.map[i])] = i;
|
|
|
|
}
|
|
|
|
|
2019-05-04 20:54:49 -07:00
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
/* *grumble* Don't use enums for bitflags. */
|
2019-10-09 23:04:05 -07:00
|
|
|
constexpr inline pa_stream_flags_t operator|(pa_stream_flags_t lhs, pa_stream_flags_t rhs)
|
2018-10-31 20:09:14 -07:00
|
|
|
{ return pa_stream_flags_t(int(lhs) | int(rhs)); }
|
2019-03-26 17:03:31 -07:00
|
|
|
inline pa_stream_flags_t& operator|=(pa_stream_flags_t &lhs, pa_stream_flags_t rhs)
|
2018-10-31 20:09:14 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
lhs = lhs | rhs;
|
2018-10-31 20:09:14 -07:00
|
|
|
return lhs;
|
|
|
|
}
|
2019-10-09 23:04:05 -07:00
|
|
|
inline pa_stream_flags_t& operator&=(pa_stream_flags_t &lhs, int rhs)
|
2018-10-31 20:09:14 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
lhs = pa_stream_flags_t(int(lhs) & rhs);
|
2018-10-31 20:09:14 -07:00
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
inline pa_context_flags_t& operator|=(pa_context_flags_t &lhs, pa_context_flags_t rhs)
|
2019-03-26 17:03:31 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
lhs = pa_context_flags_t(int(lhs) | int(rhs));
|
2019-03-26 17:03:31 -07:00
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2020-03-18 03:07:54 -07:00
|
|
|
struct DevMap {
|
|
|
|
std::string name;
|
|
|
|
std::string device_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool checkName(const al::vector<DevMap> &list, const std::string &name)
|
|
|
|
{
|
|
|
|
auto match_name = [&name](const DevMap &entry) -> bool { return entry.name == name; };
|
|
|
|
return std::find_if(list.cbegin(), list.cend(), match_name) != list.cend();
|
|
|
|
}
|
|
|
|
|
|
|
|
al::vector<DevMap> PlaybackDevices;
|
|
|
|
al::vector<DevMap> CaptureDevices;
|
|
|
|
|
|
|
|
|
2013-10-29 14:44:07 -07:00
|
|
|
/* Global flags and properties */
|
2018-11-02 14:56:10 -07:00
|
|
|
pa_context_flags_t pulse_ctx_flags;
|
2013-10-29 23:54:10 -07:00
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
int pulse_poll_func(struct pollfd *ufds, unsigned long nfds, int timeout, void *userdata) noexcept
|
2019-04-27 12:25:49 -07:00
|
|
|
{
|
|
|
|
auto plock = static_cast<std::unique_lock<std::mutex>*>(userdata);
|
|
|
|
plock->unlock();
|
|
|
|
int r{poll(ufds, nfds, timeout)};
|
|
|
|
plock->lock();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
class PulseMainloop {
|
|
|
|
std::thread mThread;
|
|
|
|
std::mutex mMutex;
|
|
|
|
std::condition_variable mCondVar;
|
|
|
|
pa_mainloop *mMainloop{nullptr};
|
2019-04-27 12:25:49 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
public:
|
|
|
|
~PulseMainloop()
|
|
|
|
{
|
|
|
|
if(mThread.joinable())
|
|
|
|
{
|
|
|
|
pa_mainloop_quit(mMainloop, 0);
|
|
|
|
mThread.join();
|
|
|
|
}
|
|
|
|
}
|
2019-04-27 12:25:49 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
int mainloop_thread()
|
|
|
|
{
|
|
|
|
SetRTPriority();
|
2019-04-27 12:25:49 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
std::unique_lock<std::mutex> plock{mMutex};
|
|
|
|
mMainloop = pa_mainloop_new();
|
2019-04-27 12:25:49 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_mainloop_set_poll_func(mMainloop, pulse_poll_func, &plock);
|
|
|
|
mCondVar.notify_all();
|
2019-04-27 12:25:49 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
int ret{};
|
|
|
|
pa_mainloop_run(mMainloop, &ret);
|
2019-04-27 12:25:49 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_mainloop_free(mMainloop);
|
|
|
|
mMainloop = nullptr;
|
2019-04-27 12:25:49 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
return ret;
|
|
|
|
}
|
2012-03-01 04:12:47 -08:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
std::unique_lock<std::mutex> getLock() { return std::unique_lock<std::mutex>{mMutex}; }
|
|
|
|
std::condition_variable &getCondVar() noexcept { return mCondVar; }
|
2009-10-31 17:57:35 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
void contextStateCallback(pa_context *context) noexcept
|
|
|
|
{
|
|
|
|
pa_context_state_t state{pa_context_get_state(context)};
|
|
|
|
if(state == PA_CONTEXT_READY || !PA_CONTEXT_IS_GOOD(state))
|
|
|
|
mCondVar.notify_all();
|
|
|
|
}
|
|
|
|
static void contextStateCallbackC(pa_context *context, void *pdata) noexcept
|
|
|
|
{ static_cast<PulseMainloop*>(pdata)->contextStateCallback(context); }
|
2009-10-31 20:05:15 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
void streamStateCallback(pa_stream *stream) noexcept
|
2009-10-31 20:05:15 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_stream_state_t state{pa_stream_get_state(stream)};
|
|
|
|
if(state == PA_STREAM_READY || !PA_STREAM_IS_GOOD(state))
|
|
|
|
mCondVar.notify_all();
|
2009-10-31 20:05:15 -07:00
|
|
|
}
|
2019-10-09 23:04:05 -07:00
|
|
|
static void streamStateCallbackC(pa_stream *stream, void *pdata) noexcept
|
|
|
|
{ static_cast<PulseMainloop*>(pdata)->streamStateCallback(stream); }
|
|
|
|
|
|
|
|
void streamSuccessCallback(pa_stream*, int) noexcept
|
|
|
|
{ mCondVar.notify_all(); }
|
|
|
|
static void streamSuccessCallbackC(pa_stream *stream, int success, void *pdata) noexcept
|
|
|
|
{ static_cast<PulseMainloop*>(pdata)->streamSuccessCallback(stream, success); }
|
2009-10-31 20:05:15 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
void waitForOperation(pa_operation *op, std::unique_lock<std::mutex> &plock)
|
|
|
|
{
|
|
|
|
if(op)
|
|
|
|
{
|
|
|
|
while(pa_operation_get_state(op) == PA_OPERATION_RUNNING)
|
|
|
|
mCondVar.wait(plock);
|
|
|
|
pa_operation_unref(op);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pa_context *connectContext(std::unique_lock<std::mutex> &plock);
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_stream *connectStream(const char *device_name, std::unique_lock<std::mutex> &plock,
|
|
|
|
pa_context *context, pa_stream_flags_t flags, pa_buffer_attr *attr, pa_sample_spec *spec,
|
|
|
|
pa_channel_map *chanmap, BackendType type);
|
|
|
|
|
|
|
|
void close(pa_context *context, pa_stream *stream);
|
2020-03-18 03:07:54 -07:00
|
|
|
|
|
|
|
|
|
|
|
void deviceSinkCallback(pa_context*, const pa_sink_info *info, int eol) noexcept
|
|
|
|
{
|
|
|
|
if(eol)
|
|
|
|
{
|
|
|
|
mCondVar.notify_all();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip this device is if it's already in the list. */
|
|
|
|
auto match_devname = [info](const DevMap &entry) -> bool
|
|
|
|
{ return entry.device_name == info->name; };
|
|
|
|
if(std::find_if(PlaybackDevices.cbegin(), PlaybackDevices.cend(), match_devname) != PlaybackDevices.cend())
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Make sure the display name (description) is unique. Append a number
|
|
|
|
* counter as needed.
|
|
|
|
*/
|
|
|
|
int count{1};
|
|
|
|
std::string newname{info->description};
|
|
|
|
while(checkName(PlaybackDevices, newname))
|
|
|
|
{
|
|
|
|
newname = info->description;
|
|
|
|
newname += " #";
|
|
|
|
newname += std::to_string(++count);
|
|
|
|
}
|
|
|
|
PlaybackDevices.emplace_back(DevMap{std::move(newname), info->name});
|
|
|
|
DevMap &newentry = PlaybackDevices.back();
|
|
|
|
|
|
|
|
TRACE("Got device \"%s\", \"%s\"\n", newentry.name.c_str(), newentry.device_name.c_str());
|
|
|
|
}
|
|
|
|
static void deviceSinkCallbackC(pa_context *context, const pa_sink_info *info, int eol, void *pdata) noexcept
|
|
|
|
{ static_cast<PulseMainloop*>(pdata)->deviceSinkCallback(context, info, eol); }
|
|
|
|
|
|
|
|
void deviceSourceCallback(pa_context*, const pa_source_info *info, int eol) noexcept
|
|
|
|
{
|
|
|
|
if(eol)
|
|
|
|
{
|
|
|
|
mCondVar.notify_all();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip this device is if it's already in the list. */
|
|
|
|
auto match_devname = [info](const DevMap &entry) -> bool
|
|
|
|
{ return entry.device_name == info->name; };
|
|
|
|
if(std::find_if(CaptureDevices.cbegin(), CaptureDevices.cend(), match_devname) != CaptureDevices.cend())
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Make sure the display name (description) is unique. Append a number
|
|
|
|
* counter as needed.
|
|
|
|
*/
|
|
|
|
int count{1};
|
|
|
|
std::string newname{info->description};
|
|
|
|
while(checkName(CaptureDevices, newname))
|
|
|
|
{
|
|
|
|
newname = info->description;
|
|
|
|
newname += " #";
|
|
|
|
newname += std::to_string(++count);
|
|
|
|
}
|
|
|
|
CaptureDevices.emplace_back(DevMap{std::move(newname), info->name});
|
|
|
|
DevMap &newentry = CaptureDevices.back();
|
|
|
|
|
|
|
|
TRACE("Got device \"%s\", \"%s\"\n", newentry.name.c_str(), newentry.device_name.c_str());
|
|
|
|
}
|
|
|
|
static void deviceSourceCallbackC(pa_context *context, const pa_source_info *info, int eol, void *pdata) noexcept
|
|
|
|
{ static_cast<PulseMainloop*>(pdata)->deviceSourceCallback(context, info, eol); }
|
|
|
|
|
|
|
|
void probePlaybackDevices();
|
|
|
|
void probeCaptureDevices();
|
2019-10-09 23:04:05 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
pa_context *PulseMainloop::connectContext(std::unique_lock<std::mutex> &plock)
|
2009-10-31 20:05:15 -07:00
|
|
|
{
|
2018-10-31 20:09:14 -07:00
|
|
|
const char *name{"OpenAL Soft"};
|
2009-10-31 20:05:15 -07:00
|
|
|
|
2018-12-25 11:27:22 -08:00
|
|
|
const PathNamePair &binname = GetProcBinary();
|
2018-11-11 16:09:24 -08:00
|
|
|
if(!binname.fname.empty())
|
|
|
|
name = binname.fname.c_str();
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
if(!mMainloop)
|
2019-04-27 12:25:49 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
mThread = std::thread{std::mem_fn(&PulseMainloop::mainloop_thread), this};
|
|
|
|
while(!mMainloop) mCondVar.wait(plock);
|
2019-04-27 12:25:49 -07:00
|
|
|
}
|
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_context *context{pa_context_new(pa_mainloop_get_api(mMainloop), name)};
|
2019-05-04 20:35:24 -07:00
|
|
|
if(!context) throw al::backend_exception{ALC_OUT_OF_MEMORY, "pa_context_new() failed"};
|
2009-10-31 20:05:15 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_context_set_state_callback(context, &contextStateCallbackC, this);
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
int err;
|
|
|
|
if((err=pa_context_connect(context, nullptr, pulse_ctx_flags, nullptr)) >= 0)
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
2018-10-31 20:09:14 -07:00
|
|
|
pa_context_state_t state;
|
2013-10-29 14:44:07 -07:00
|
|
|
while((state=pa_context_get_state(context)) != PA_CONTEXT_READY)
|
|
|
|
{
|
|
|
|
if(!PA_CONTEXT_IS_GOOD(state))
|
|
|
|
{
|
|
|
|
err = pa_context_errno(context);
|
|
|
|
if(err > 0) err = -err;
|
|
|
|
break;
|
|
|
|
}
|
2009-12-25 17:56:57 -08:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
mCondVar.wait(plock);
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
}
|
2018-10-31 20:09:14 -07:00
|
|
|
pa_context_set_state_callback(context, nullptr, nullptr);
|
2013-10-29 14:44:07 -07:00
|
|
|
|
|
|
|
if(err < 0)
|
|
|
|
{
|
|
|
|
pa_context_unref(context);
|
2019-05-04 20:35:24 -07:00
|
|
|
throw al::backend_exception{ALC_INVALID_VALUE, "Context did not connect (%s)",
|
|
|
|
pa_strerror(err)};
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return context;
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-12-27 11:05:59 -08:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_stream *PulseMainloop::connectStream(const char *device_name,
|
|
|
|
std::unique_lock<std::mutex> &plock, pa_context *context, pa_stream_flags_t flags,
|
|
|
|
pa_buffer_attr *attr, pa_sample_spec *spec, pa_channel_map *chanmap, BackendType type)
|
2018-12-27 23:37:24 -08:00
|
|
|
{
|
2019-05-04 20:35:24 -07:00
|
|
|
const char *stream_id{(type==BackendType::Playback) ? "Playback Stream" : "Capture Stream"};
|
|
|
|
pa_stream *stream{pa_stream_new(context, stream_id, spec, chanmap)};
|
2018-12-27 23:37:24 -08:00
|
|
|
if(!stream)
|
2019-05-04 20:35:24 -07:00
|
|
|
throw al::backend_exception{ALC_OUT_OF_MEMORY, "pa_stream_new() failed (%s)",
|
|
|
|
pa_strerror(pa_context_errno(context))};
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_stream_set_state_callback(stream, &streamStateCallbackC, this);
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-12-29 01:38:26 -08:00
|
|
|
int err{(type==BackendType::Playback) ?
|
2018-12-27 23:37:24 -08:00
|
|
|
pa_stream_connect_playback(stream, device_name, attr, flags, nullptr, nullptr) :
|
|
|
|
pa_stream_connect_record(stream, device_name, attr, flags)};
|
|
|
|
if(err < 0)
|
|
|
|
{
|
|
|
|
pa_stream_unref(stream);
|
2019-05-04 20:35:24 -07:00
|
|
|
throw al::backend_exception{ALC_INVALID_VALUE, "%s did not connect (%s)", stream_id,
|
|
|
|
pa_strerror(err)};
|
2018-12-27 23:37:24 -08:00
|
|
|
}
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2018-12-27 23:37:24 -08:00
|
|
|
pa_stream_state_t state;
|
|
|
|
while((state=pa_stream_get_state(stream)) != PA_STREAM_READY)
|
|
|
|
{
|
|
|
|
if(!PA_STREAM_IS_GOOD(state))
|
|
|
|
{
|
2019-09-14 18:27:57 -07:00
|
|
|
err = pa_context_errno(context);
|
2018-12-27 23:37:24 -08:00
|
|
|
pa_stream_unref(stream);
|
2019-05-04 20:35:24 -07:00
|
|
|
throw al::backend_exception{ALC_INVALID_VALUE, "%s did not get ready (%s)", stream_id,
|
|
|
|
pa_strerror(err)};
|
2018-12-27 23:37:24 -08:00
|
|
|
}
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
mCondVar.wait(plock);
|
2018-12-27 23:37:24 -08:00
|
|
|
}
|
|
|
|
pa_stream_set_state_callback(stream, nullptr, nullptr);
|
2018-12-27 13:40:43 -08:00
|
|
|
|
2018-12-27 23:37:24 -08:00
|
|
|
return stream;
|
|
|
|
}
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
void PulseMainloop::close(pa_context *context, pa_stream *stream)
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> _{mMutex};
|
|
|
|
if(stream)
|
|
|
|
{
|
|
|
|
pa_stream_set_state_callback(stream, nullptr, nullptr);
|
|
|
|
pa_stream_set_moved_callback(stream, nullptr, nullptr);
|
|
|
|
pa_stream_set_write_callback(stream, nullptr, nullptr);
|
|
|
|
pa_stream_set_buffer_attr_callback(stream, nullptr, nullptr);
|
|
|
|
pa_stream_disconnect(stream);
|
|
|
|
pa_stream_unref(stream);
|
|
|
|
}
|
2018-11-15 19:55:56 -08:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_context_disconnect(context);
|
|
|
|
pa_context_unref(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-18 03:07:54 -07:00
|
|
|
void PulseMainloop::probePlaybackDevices()
|
2014-04-20 05:55:52 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_context *context{};
|
|
|
|
pa_stream *stream{};
|
2018-12-27 23:37:24 -08:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
PlaybackDevices.clear();
|
2019-05-04 20:35:24 -07:00
|
|
|
try {
|
2020-03-18 03:07:54 -07:00
|
|
|
std::unique_lock<std::mutex> plock{mMutex};
|
2018-12-27 23:37:24 -08:00
|
|
|
|
2020-03-18 03:07:54 -07:00
|
|
|
context = connectContext(plock);
|
2018-12-27 23:37:24 -08:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
constexpr pa_stream_flags_t flags{PA_STREAM_FIX_FORMAT | PA_STREAM_FIX_RATE |
|
|
|
|
PA_STREAM_FIX_CHANNELS | PA_STREAM_DONT_MOVE | PA_STREAM_START_CORKED};
|
2018-12-27 23:37:24 -08:00
|
|
|
|
2019-05-04 20:35:24 -07:00
|
|
|
pa_sample_spec spec{};
|
|
|
|
spec.format = PA_SAMPLE_S16NE;
|
|
|
|
spec.rate = 44100;
|
|
|
|
spec.channels = 2;
|
2018-12-27 23:37:24 -08:00
|
|
|
|
2020-03-18 03:07:54 -07:00
|
|
|
stream = connectStream(nullptr, plock, context, flags, nullptr, &spec, nullptr,
|
2019-10-09 23:04:05 -07:00
|
|
|
BackendType::Playback);
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_operation *op{pa_context_get_sink_info_by_name(context,
|
2020-03-18 03:07:54 -07:00
|
|
|
pa_stream_get_device_name(stream), &deviceSinkCallbackC, this)};
|
|
|
|
waitForOperation(op, plock);
|
2018-12-27 23:37:24 -08:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_stream_disconnect(stream);
|
|
|
|
pa_stream_unref(stream);
|
|
|
|
stream = nullptr;
|
|
|
|
|
2020-03-18 03:07:54 -07:00
|
|
|
op = pa_context_get_sink_info_list(context, &deviceSinkCallbackC, this);
|
|
|
|
waitForOperation(op, plock);
|
2019-04-27 12:25:49 -07:00
|
|
|
|
2019-05-04 20:35:24 -07:00
|
|
|
pa_context_disconnect(context);
|
|
|
|
pa_context_unref(context);
|
2019-10-09 23:04:05 -07:00
|
|
|
context = nullptr;
|
2019-05-04 20:35:24 -07:00
|
|
|
}
|
|
|
|
catch(std::exception &e) {
|
|
|
|
ERR("Error enumerating devices: %s\n", e.what());
|
2020-03-18 03:07:54 -07:00
|
|
|
if(context) close(context, stream);
|
2019-05-04 20:35:24 -07:00
|
|
|
}
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
2020-03-18 03:07:54 -07:00
|
|
|
void PulseMainloop::probeCaptureDevices()
|
2010-05-30 21:05:05 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_context *context{};
|
|
|
|
pa_stream *stream{};
|
2010-05-30 21:05:05 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
CaptureDevices.clear();
|
2019-05-04 20:35:24 -07:00
|
|
|
try {
|
2020-03-18 03:07:54 -07:00
|
|
|
std::unique_lock<std::mutex> plock{mMutex};
|
2010-05-30 21:05:05 -07:00
|
|
|
|
2020-03-18 03:07:54 -07:00
|
|
|
context = connectContext(plock);
|
2010-06-09 18:22:05 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
constexpr pa_stream_flags_t flags{PA_STREAM_FIX_FORMAT | PA_STREAM_FIX_RATE |
|
|
|
|
PA_STREAM_FIX_CHANNELS | PA_STREAM_DONT_MOVE | PA_STREAM_START_CORKED};
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-05-04 20:35:24 -07:00
|
|
|
pa_sample_spec spec{};
|
|
|
|
spec.format = PA_SAMPLE_S16NE;
|
|
|
|
spec.rate = 44100;
|
|
|
|
spec.channels = 1;
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2020-03-18 03:07:54 -07:00
|
|
|
stream = connectStream(nullptr, plock, context, flags, nullptr, &spec, nullptr,
|
2019-10-09 23:04:05 -07:00
|
|
|
BackendType::Capture);
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_operation *op{pa_context_get_source_info_by_name(context,
|
2020-03-18 03:07:54 -07:00
|
|
|
pa_stream_get_device_name(stream), &deviceSourceCallbackC, this)};
|
|
|
|
waitForOperation(op, plock);
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_stream_disconnect(stream);
|
|
|
|
pa_stream_unref(stream);
|
|
|
|
stream = nullptr;
|
|
|
|
|
2020-03-18 03:07:54 -07:00
|
|
|
op = pa_context_get_source_info_list(context, &deviceSourceCallbackC, this);
|
|
|
|
waitForOperation(op, plock);
|
2019-04-27 12:25:49 -07:00
|
|
|
|
2019-05-04 20:35:24 -07:00
|
|
|
pa_context_disconnect(context);
|
|
|
|
pa_context_unref(context);
|
2019-10-09 23:04:05 -07:00
|
|
|
context = nullptr;
|
2019-05-04 20:35:24 -07:00
|
|
|
}
|
|
|
|
catch(std::exception &e) {
|
|
|
|
ERR("Error enumerating devices: %s\n", e.what());
|
2020-03-18 03:07:54 -07:00
|
|
|
if(context) close(context, stream);
|
2019-05-04 20:35:24 -07:00
|
|
|
}
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2012-03-01 04:37:40 -08:00
|
|
|
|
|
|
|
|
2020-03-18 03:07:54 -07:00
|
|
|
/* Used for initial connection test and enumeration. */
|
|
|
|
PulseMainloop gGlobalMainloop;
|
|
|
|
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
struct PulsePlayback final : public BackendBase {
|
|
|
|
PulsePlayback(ALCdevice *device) noexcept : BackendBase{device} { }
|
2018-12-27 23:37:24 -08:00
|
|
|
~PulsePlayback() override;
|
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void bufferAttrCallback(pa_stream *stream) noexcept;
|
|
|
|
static void bufferAttrCallbackC(pa_stream *stream, void *pdata) noexcept
|
2019-10-08 03:41:49 -07:00
|
|
|
{ static_cast<PulsePlayback*>(pdata)->bufferAttrCallback(stream); }
|
2018-12-28 12:58:01 -08:00
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void streamStateCallback(pa_stream *stream) noexcept;
|
|
|
|
static void streamStateCallbackC(pa_stream *stream, void *pdata) noexcept
|
2019-10-08 03:41:49 -07:00
|
|
|
{ static_cast<PulsePlayback*>(pdata)->streamStateCallback(stream); }
|
2018-12-28 12:58:01 -08:00
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void streamWriteCallback(pa_stream *stream, size_t nbytes) noexcept;
|
|
|
|
static void streamWriteCallbackC(pa_stream *stream, size_t nbytes, void *pdata) noexcept
|
2019-10-08 03:41:49 -07:00
|
|
|
{ static_cast<PulsePlayback*>(pdata)->streamWriteCallback(stream, nbytes); }
|
2018-12-28 12:58:01 -08:00
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void sinkInfoCallback(pa_context *context, const pa_sink_info *info, int eol) noexcept;
|
|
|
|
static void sinkInfoCallbackC(pa_context *context, const pa_sink_info *info, int eol, void *pdata) noexcept
|
2019-10-08 03:41:49 -07:00
|
|
|
{ static_cast<PulsePlayback*>(pdata)->sinkInfoCallback(context, info, eol); }
|
2018-12-28 12:58:01 -08:00
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void sinkNameCallback(pa_context *context, const pa_sink_info *info, int eol) noexcept;
|
|
|
|
static void sinkNameCallbackC(pa_context *context, const pa_sink_info *info, int eol, void *pdata) noexcept
|
2019-10-08 03:41:49 -07:00
|
|
|
{ static_cast<PulsePlayback*>(pdata)->sinkNameCallback(context, info, eol); }
|
2018-12-28 12:58:01 -08:00
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void streamMovedCallback(pa_stream *stream) noexcept;
|
|
|
|
static void streamMovedCallbackC(pa_stream *stream, void *pdata) noexcept
|
2019-10-08 03:41:49 -07:00
|
|
|
{ static_cast<PulsePlayback*>(pdata)->streamMovedCallback(stream); }
|
2018-12-28 12:58:01 -08:00
|
|
|
|
2019-10-07 21:37:56 -07:00
|
|
|
void open(const ALCchar *name) override;
|
2019-09-15 09:50:28 -07:00
|
|
|
bool reset() override;
|
|
|
|
bool start() override;
|
2018-12-28 22:56:20 -08:00
|
|
|
void stop() override;
|
|
|
|
ClockLatency getClockLatency() override;
|
2019-10-09 23:04:05 -07:00
|
|
|
|
|
|
|
PulseMainloop mMainloop;
|
2018-12-28 22:56:20 -08:00
|
|
|
|
2018-12-27 23:37:24 -08:00
|
|
|
std::string mDeviceName;
|
|
|
|
|
|
|
|
pa_buffer_attr mAttr;
|
|
|
|
pa_sample_spec mSpec;
|
|
|
|
|
|
|
|
pa_stream *mStream{nullptr};
|
|
|
|
pa_context *mContext{nullptr};
|
|
|
|
|
|
|
|
ALuint mFrameSize{0u};
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
DEF_NEWDEL(PulsePlayback)
|
2018-12-28 12:58:01 -08:00
|
|
|
};
|
2018-12-27 23:37:24 -08:00
|
|
|
|
|
|
|
PulsePlayback::~PulsePlayback()
|
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
if(!mContext)
|
2018-12-27 23:37:24 -08:00
|
|
|
return;
|
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
mMainloop.close(mContext, mStream);
|
2018-12-27 23:37:24 -08:00
|
|
|
mContext = nullptr;
|
|
|
|
mStream = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void PulsePlayback::bufferAttrCallback(pa_stream *stream) noexcept
|
2018-12-28 12:58:01 -08:00
|
|
|
{
|
2019-04-26 15:58:25 -07:00
|
|
|
/* FIXME: Update the device's UpdateSize (and/or BufferSize) using the new
|
2017-04-08 10:01:04 -07:00
|
|
|
* buffer attributes? Changing UpdateSize will change the ALC_REFRESH
|
|
|
|
* property, which probably shouldn't change between device resets. But
|
|
|
|
* leaving it alone means ALC_REFRESH will be off.
|
|
|
|
*/
|
2018-12-28 12:58:01 -08:00
|
|
|
mAttr = *(pa_stream_get_buffer_attr(stream));
|
|
|
|
TRACE("minreq=%d, tlength=%d, prebuf=%d\n", mAttr.minreq, mAttr.tlength, mAttr.prebuf);
|
2012-03-01 04:37:40 -08:00
|
|
|
}
|
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void PulsePlayback::streamStateCallback(pa_stream *stream) noexcept
|
2012-06-16 22:32:19 -07:00
|
|
|
{
|
2013-10-29 14:44:07 -07:00
|
|
|
if(pa_stream_get_state(stream) == PA_STREAM_FAILED)
|
|
|
|
{
|
|
|
|
ERR("Received stream failure!\n");
|
2018-12-28 12:58:01 -08:00
|
|
|
aluHandleDisconnect(mDevice, "Playback stream failure");
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
2019-10-09 23:04:05 -07:00
|
|
|
mMainloop.getCondVar().notify_all();
|
2012-06-16 22:32:19 -07:00
|
|
|
}
|
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void PulsePlayback::streamWriteCallback(pa_stream *stream, size_t nbytes) noexcept
|
2018-12-28 12:58:01 -08:00
|
|
|
{
|
2018-12-25 16:31:31 -08:00
|
|
|
void *buf{pa_xmalloc(nbytes)};
|
2019-12-21 20:43:46 -08:00
|
|
|
aluMixData(mDevice, buf, static_cast<ALuint>(nbytes/mFrameSize), mDevice->channelsFromFmt());
|
2018-12-25 16:31:31 -08:00
|
|
|
|
|
|
|
int ret{pa_stream_write(stream, buf, nbytes, pa_xfree, 0, PA_SEEK_RELATIVE)};
|
2019-08-04 11:59:14 -07:00
|
|
|
if UNLIKELY(ret != PA_OK)
|
2018-12-25 16:31:31 -08:00
|
|
|
ERR("Failed to write to stream: %d, %s\n", ret, pa_strerror(ret));
|
2014-07-26 22:04:26 -07:00
|
|
|
}
|
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void PulsePlayback::sinkInfoCallback(pa_context*, const pa_sink_info *info, int eol) noexcept
|
2012-03-01 04:12:47 -08:00
|
|
|
{
|
2018-10-31 20:09:14 -07:00
|
|
|
struct ChannelMap {
|
2019-09-16 07:16:31 -07:00
|
|
|
DevFmtChannels fmt;
|
2015-09-04 21:43:50 -07:00
|
|
|
pa_channel_map map;
|
2018-10-31 20:09:14 -07:00
|
|
|
};
|
|
|
|
static constexpr std::array<ChannelMap,7> chanmaps{{
|
2019-05-04 20:54:49 -07:00
|
|
|
{ DevFmtX71, X71ChanMap },
|
|
|
|
{ DevFmtX61, X61ChanMap },
|
|
|
|
{ DevFmtX51, X51ChanMap },
|
|
|
|
{ DevFmtX51Rear, X51RearChanMap },
|
|
|
|
{ DevFmtQuad, QuadChanMap },
|
|
|
|
{ DevFmtStereo, StereoChanMap },
|
|
|
|
{ DevFmtMono, MonoChanMap }
|
2018-10-31 20:09:14 -07:00
|
|
|
}};
|
2012-03-01 04:12:47 -08:00
|
|
|
|
2013-10-29 14:44:07 -07:00
|
|
|
if(eol)
|
2012-03-01 04:12:47 -08:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
mMainloop.getCondVar().notify_all();
|
2013-10-29 14:44:07 -07:00
|
|
|
return;
|
2012-03-01 04:12:47 -08:00
|
|
|
}
|
|
|
|
|
2019-09-16 07:16:31 -07:00
|
|
|
auto chaniter = std::find_if(chanmaps.cbegin(), chanmaps.cend(),
|
2018-10-31 20:09:14 -07:00
|
|
|
[info](const ChannelMap &chanmap) -> bool
|
|
|
|
{ return pa_channel_map_superset(&info->channel_map, &chanmap.map); }
|
2018-11-01 08:04:21 -07:00
|
|
|
);
|
2019-09-16 07:16:31 -07:00
|
|
|
if(chaniter != chanmaps.cend())
|
2012-03-01 04:12:47 -08:00
|
|
|
{
|
2019-06-09 02:20:30 -07:00
|
|
|
if(!mDevice->Flags.get<ChannelsRequest>())
|
2019-09-16 07:16:31 -07:00
|
|
|
mDevice->FmtChans = chaniter->fmt;
|
2012-03-01 04:12:47 -08:00
|
|
|
}
|
2018-10-31 20:09:14 -07:00
|
|
|
else
|
2015-09-04 21:43:50 -07:00
|
|
|
{
|
2018-10-31 20:09:14 -07:00
|
|
|
char chanmap_str[PA_CHANNEL_MAP_SNPRINT_MAX]{};
|
2015-09-04 21:43:50 -07:00
|
|
|
pa_channel_map_snprint(chanmap_str, sizeof(chanmap_str), &info->channel_map);
|
|
|
|
WARN("Failed to find format for channel map:\n %s\n", chanmap_str);
|
|
|
|
}
|
2012-03-01 04:12:47 -08:00
|
|
|
|
2014-11-24 12:45:51 -08:00
|
|
|
if(info->active_port)
|
|
|
|
TRACE("Active port: %s (%s)\n", info->active_port->name, info->active_port->description);
|
2018-12-28 12:58:01 -08:00
|
|
|
mDevice->IsHeadphones = (mDevice->FmtChans == DevFmtStereo &&
|
|
|
|
info->active_port && strcmp(info->active_port->name, "analog-output-headphones") == 0);
|
2012-03-01 04:12:47 -08:00
|
|
|
}
|
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void PulsePlayback::sinkNameCallback(pa_context*, const pa_sink_info *info, int eol) noexcept
|
2018-12-28 12:58:01 -08:00
|
|
|
{
|
2013-10-29 14:44:07 -07:00
|
|
|
if(eol)
|
2010-05-27 22:12:54 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
mMainloop.getCondVar().notify_all();
|
2013-10-29 14:44:07 -07:00
|
|
|
return;
|
2010-05-27 22:12:54 -07:00
|
|
|
}
|
2018-12-28 12:58:01 -08:00
|
|
|
mDevice->DeviceName = info->description;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
2010-05-27 22:12:54 -07:00
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void PulsePlayback::streamMovedCallback(pa_stream *stream) noexcept
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
2018-12-28 12:58:01 -08:00
|
|
|
mDeviceName = pa_stream_get_device_name(stream);
|
|
|
|
TRACE("Stream moved to %s\n", mDeviceName.c_str());
|
2010-05-27 22:12:54 -07:00
|
|
|
}
|
|
|
|
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-10-07 21:37:56 -07:00
|
|
|
void PulsePlayback::open(const ALCchar *name)
|
2009-04-16 05:17:42 -07:00
|
|
|
{
|
2018-10-31 20:09:14 -07:00
|
|
|
const char *pulse_name{nullptr};
|
|
|
|
const char *dev_name{nullptr};
|
2010-05-27 22:12:54 -07:00
|
|
|
|
2013-10-29 14:44:07 -07:00
|
|
|
if(name)
|
2010-05-30 20:33:57 -07:00
|
|
|
{
|
2018-10-31 20:09:14 -07:00
|
|
|
if(PlaybackDevices.empty())
|
2020-03-18 03:07:54 -07:00
|
|
|
mMainloop.probePlaybackDevices();
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2018-11-01 08:04:21 -07:00
|
|
|
auto iter = std::find_if(PlaybackDevices.cbegin(), PlaybackDevices.cend(),
|
2020-03-18 03:07:54 -07:00
|
|
|
[name](const DevMap &entry) -> bool { return entry.name == name; });
|
2018-10-31 20:09:14 -07:00
|
|
|
if(iter == PlaybackDevices.cend())
|
2019-05-04 20:35:24 -07:00
|
|
|
throw al::backend_exception{ALC_INVALID_VALUE, "Device name \"%s\" not found", name};
|
2018-10-31 20:09:14 -07:00
|
|
|
pulse_name = iter->device_name.c_str();
|
|
|
|
dev_name = iter->name.c_str();
|
2010-05-30 20:33:57 -07:00
|
|
|
}
|
2009-09-27 00:21:40 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
auto plock = mMainloop.getLock();
|
2012-03-01 04:37:40 -08:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
mContext = mMainloop.connectContext(plock);
|
2019-05-04 20:35:24 -07:00
|
|
|
|
2019-10-09 09:42:35 -07:00
|
|
|
pa_stream_flags_t flags{PA_STREAM_START_CORKED | PA_STREAM_FIX_FORMAT | PA_STREAM_FIX_RATE |
|
|
|
|
PA_STREAM_FIX_CHANNELS};
|
2019-04-27 13:39:46 -07:00
|
|
|
if(!GetConfigValueBool(nullptr, "pulse", "allow-moves", 1))
|
2012-06-16 22:32:19 -07:00
|
|
|
flags |= PA_STREAM_DONT_MOVE;
|
2012-03-01 04:37:40 -08:00
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
pa_sample_spec spec{};
|
2012-03-01 04:37:40 -08:00
|
|
|
spec.format = PA_SAMPLE_S16NE;
|
|
|
|
spec.rate = 44100;
|
|
|
|
spec.channels = 2;
|
|
|
|
|
2018-12-27 23:37:24 -08:00
|
|
|
if(!pulse_name)
|
|
|
|
{
|
2019-08-12 03:59:52 -07:00
|
|
|
static const auto defname = al::getenv("ALSOFT_PULSE_DEFAULT");
|
|
|
|
if(defname) pulse_name = defname->c_str();
|
2018-12-27 23:37:24 -08:00
|
|
|
}
|
2019-05-04 20:35:24 -07:00
|
|
|
TRACE("Connecting to \"%s\"\n", pulse_name ? pulse_name : "(default)");
|
2019-10-09 23:04:05 -07:00
|
|
|
mStream = mMainloop.connectStream(pulse_name, plock, mContext, flags, nullptr, &spec, nullptr,
|
2018-12-29 01:38:26 -08:00
|
|
|
BackendType::Playback);
|
2019-05-04 20:35:24 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_set_moved_callback(mStream, &PulsePlayback::streamMovedCallbackC, this);
|
2019-09-14 12:44:35 -07:00
|
|
|
mFrameSize = static_cast<ALuint>(pa_frame_size(pa_stream_get_sample_spec(mStream)));
|
2012-03-01 04:37:40 -08:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
mDeviceName = pa_stream_get_device_name(mStream);
|
2018-10-31 20:09:14 -07:00
|
|
|
if(!dev_name)
|
2015-09-03 14:59:59 -07:00
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_operation *op{pa_context_get_sink_info_by_name(mContext, mDeviceName.c_str(),
|
|
|
|
&PulsePlayback::sinkNameCallbackC, this)};
|
2019-10-09 23:04:05 -07:00
|
|
|
mMainloop.waitForOperation(op, plock);
|
2015-09-03 14:59:59 -07:00
|
|
|
}
|
|
|
|
else
|
2018-12-28 22:56:20 -08:00
|
|
|
mDevice->DeviceName = dev_name;
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-04-16 05:17:42 -07:00
|
|
|
|
2019-09-15 09:50:28 -07:00
|
|
|
bool PulsePlayback::reset()
|
2009-08-13 12:28:46 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
auto plock = mMainloop.getLock();
|
2009-08-13 17:08:47 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
if(mStream)
|
2012-03-01 04:37:40 -08:00
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_set_state_callback(mStream, nullptr, nullptr);
|
|
|
|
pa_stream_set_moved_callback(mStream, nullptr, nullptr);
|
|
|
|
pa_stream_set_write_callback(mStream, nullptr, nullptr);
|
|
|
|
pa_stream_set_buffer_attr_callback(mStream, nullptr, nullptr);
|
|
|
|
pa_stream_disconnect(mStream);
|
|
|
|
pa_stream_unref(mStream);
|
|
|
|
mStream = nullptr;
|
2012-03-01 04:37:40 -08:00
|
|
|
}
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_operation *op{pa_context_get_sink_info_by_name(mContext, mDeviceName.c_str(),
|
|
|
|
&PulsePlayback::sinkInfoCallbackC, this)};
|
2019-10-09 23:04:05 -07:00
|
|
|
mMainloop.waitForOperation(op, plock);
|
2014-11-17 17:57:52 -08:00
|
|
|
|
2018-12-25 16:31:31 -08:00
|
|
|
pa_stream_flags_t flags{PA_STREAM_START_CORKED | PA_STREAM_INTERPOLATE_TIMING |
|
2019-03-26 17:03:31 -07:00
|
|
|
PA_STREAM_AUTO_TIMING_UPDATE | PA_STREAM_EARLY_REQUESTS};
|
2019-04-27 13:39:46 -07:00
|
|
|
if(!GetConfigValueBool(nullptr, "pulse", "allow-moves", 1))
|
2018-10-31 20:09:14 -07:00
|
|
|
flags |= PA_STREAM_DONT_MOVE;
|
2018-12-28 22:56:20 -08:00
|
|
|
if(GetConfigValueBool(mDevice->DeviceName.c_str(), "pulse", "adjust-latency", 0))
|
2019-03-26 17:03:31 -07:00
|
|
|
{
|
|
|
|
/* ADJUST_LATENCY can't be specified with EARLY_REQUESTS, for some
|
|
|
|
* reason. So if the user wants to adjust the overall device latency,
|
|
|
|
* we can't ask to get write signals as soon as minreq is reached.
|
|
|
|
*/
|
|
|
|
flags &= ~PA_STREAM_EARLY_REQUESTS;
|
2018-12-25 16:31:31 -08:00
|
|
|
flags |= PA_STREAM_ADJUST_LATENCY;
|
2019-03-26 17:03:31 -07:00
|
|
|
}
|
2018-12-28 22:56:20 -08:00
|
|
|
if(GetConfigValueBool(mDevice->DeviceName.c_str(), "pulse", "fix-rate", 0) ||
|
2019-06-09 02:20:30 -07:00
|
|
|
!mDevice->Flags.get<FrequencyRequest>())
|
2009-12-27 11:05:59 -08:00
|
|
|
flags |= PA_STREAM_FIX_RATE;
|
2009-08-13 17:08:47 -07:00
|
|
|
|
2019-05-04 20:54:49 -07:00
|
|
|
pa_channel_map chanmap{};
|
2018-12-28 22:56:20 -08:00
|
|
|
switch(mDevice->FmtChans)
|
2009-10-31 19:29:41 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
case DevFmtMono:
|
|
|
|
chanmap = MonoChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtAmbi3D:
|
|
|
|
mDevice->FmtChans = DevFmtStereo;
|
|
|
|
/*fall-through*/
|
|
|
|
case DevFmtStereo:
|
|
|
|
chanmap = StereoChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtQuad:
|
|
|
|
chanmap = QuadChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtX51:
|
|
|
|
chanmap = X51ChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtX51Rear:
|
|
|
|
chanmap = X51RearChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtX61:
|
|
|
|
chanmap = X61ChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtX71:
|
|
|
|
chanmap = X71ChanMap;
|
|
|
|
break;
|
2013-02-08 18:59:48 -08:00
|
|
|
}
|
2019-05-04 23:45:27 -07:00
|
|
|
SetChannelOrderFromMap(mDevice, chanmap);
|
2009-10-31 19:29:41 -07:00
|
|
|
|
2019-05-04 22:11:29 -07:00
|
|
|
switch(mDevice->FmtType)
|
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
case DevFmtByte:
|
|
|
|
mDevice->FmtType = DevFmtUByte;
|
|
|
|
/* fall-through */
|
|
|
|
case DevFmtUByte:
|
|
|
|
mSpec.format = PA_SAMPLE_U8;
|
|
|
|
break;
|
|
|
|
case DevFmtUShort:
|
|
|
|
mDevice->FmtType = DevFmtShort;
|
|
|
|
/* fall-through */
|
|
|
|
case DevFmtShort:
|
|
|
|
mSpec.format = PA_SAMPLE_S16NE;
|
|
|
|
break;
|
|
|
|
case DevFmtUInt:
|
|
|
|
mDevice->FmtType = DevFmtInt;
|
|
|
|
/* fall-through */
|
|
|
|
case DevFmtInt:
|
|
|
|
mSpec.format = PA_SAMPLE_S32NE;
|
|
|
|
break;
|
|
|
|
case DevFmtFloat:
|
|
|
|
mSpec.format = PA_SAMPLE_FLOAT32NE;
|
|
|
|
break;
|
2019-05-04 22:11:29 -07:00
|
|
|
}
|
|
|
|
mSpec.rate = mDevice->Frequency;
|
2019-09-14 12:44:35 -07:00
|
|
|
mSpec.channels = static_cast<uint8_t>(mDevice->channelsFromFmt());
|
2019-05-04 22:11:29 -07:00
|
|
|
if(pa_sample_spec_valid(&mSpec) == 0)
|
|
|
|
throw al::backend_exception{ALC_INVALID_VALUE, "Invalid sample spec"};
|
|
|
|
|
2019-09-14 12:44:35 -07:00
|
|
|
const ALuint frame_size{static_cast<ALuint>(pa_frame_size(&mSpec))};
|
|
|
|
mAttr.maxlength = ~0u;
|
|
|
|
mAttr.tlength = mDevice->BufferSize * frame_size;
|
|
|
|
mAttr.prebuf = 0u;
|
|
|
|
mAttr.minreq = mDevice->UpdateSize * frame_size;
|
|
|
|
mAttr.fragsize = ~0u;
|
2012-02-29 06:51:21 -08:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
mStream = mMainloop.connectStream(mDeviceName.c_str(), plock, mContext, flags, &mAttr, &mSpec,
|
2018-12-29 01:38:26 -08:00
|
|
|
&chanmap, BackendType::Playback);
|
2018-12-25 16:31:31 -08:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_set_state_callback(mStream, &PulsePlayback::streamStateCallbackC, this);
|
|
|
|
pa_stream_set_moved_callback(mStream, &PulsePlayback::streamMovedCallbackC, this);
|
2009-08-13 17:08:47 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec = *(pa_stream_get_sample_spec(mStream));
|
2019-09-14 12:44:35 -07:00
|
|
|
mFrameSize = static_cast<ALuint>(pa_frame_size(&mSpec));
|
2018-12-25 16:31:31 -08:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
if(mDevice->Frequency != mSpec.rate)
|
2009-12-24 15:35:22 -08:00
|
|
|
{
|
|
|
|
/* Server updated our playback rate, so modify the buffer attribs
|
2019-04-26 18:04:22 -07:00
|
|
|
* accordingly.
|
|
|
|
*/
|
|
|
|
const auto scale = static_cast<double>(mSpec.rate) / mDevice->Frequency;
|
|
|
|
const ALuint perlen{static_cast<ALuint>(clampd(scale*mDevice->UpdateSize + 0.5, 64.0,
|
|
|
|
8192.0))};
|
|
|
|
const ALuint buflen{static_cast<ALuint>(clampd(scale*mDevice->BufferSize + 0.5, perlen*2,
|
|
|
|
std::numeric_limits<int>::max()/mFrameSize))};
|
2016-03-31 16:21:49 -07:00
|
|
|
|
2019-09-14 12:44:35 -07:00
|
|
|
mAttr.maxlength = ~0u;
|
2019-04-26 18:04:22 -07:00
|
|
|
mAttr.tlength = buflen * mFrameSize;
|
2019-09-14 12:44:35 -07:00
|
|
|
mAttr.prebuf = 0u;
|
2019-04-26 18:04:22 -07:00
|
|
|
mAttr.minreq = perlen * mFrameSize;
|
2009-12-24 15:35:22 -08:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
op = pa_stream_set_buffer_attr(mStream, &mAttr, &PulseMainloop::streamSuccessCallbackC,
|
|
|
|
&mMainloop);
|
|
|
|
mMainloop.waitForOperation(op, plock);
|
2009-12-24 15:35:22 -08:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
mDevice->Frequency = mSpec.rate;
|
2009-12-24 15:35:22 -08:00
|
|
|
}
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_set_buffer_attr_callback(mStream, &PulsePlayback::bufferAttrCallbackC, this);
|
|
|
|
bufferAttrCallback(mStream);
|
2011-09-09 22:30:24 -07:00
|
|
|
|
2019-04-26 15:58:25 -07:00
|
|
|
mDevice->BufferSize = mAttr.tlength / mFrameSize;
|
2018-12-28 22:56:20 -08:00
|
|
|
mDevice->UpdateSize = mAttr.minreq / mFrameSize;
|
2012-03-04 05:30:42 -08:00
|
|
|
|
2019-09-15 09:50:28 -07:00
|
|
|
return true;
|
2012-03-05 07:11:09 -08:00
|
|
|
}
|
|
|
|
|
2019-09-15 09:50:28 -07:00
|
|
|
bool PulsePlayback::start()
|
2012-03-05 07:11:09 -08:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
auto plock = mMainloop.getLock();
|
2018-12-25 16:31:31 -08:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_set_write_callback(mStream, &PulsePlayback::streamWriteCallbackC, this);
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_operation *op{pa_stream_cork(mStream, 0, &PulseMainloop::streamSuccessCallbackC,
|
|
|
|
&mMainloop)};
|
|
|
|
mMainloop.waitForOperation(op, plock);
|
2018-12-25 16:31:31 -08:00
|
|
|
|
2019-09-15 09:50:28 -07:00
|
|
|
return true;
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-08-13 12:28:46 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
void PulsePlayback::stop()
|
2009-08-13 12:28:46 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
auto plock = mMainloop.getLock();
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
pa_operation *op{pa_stream_cork(mStream, 1, &PulseMainloop::streamSuccessCallbackC,
|
|
|
|
&mMainloop)};
|
|
|
|
mMainloop.waitForOperation(op, plock);
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_set_write_callback(mStream, nullptr, nullptr);
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ClockLatency PulsePlayback::getClockLatency()
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
2016-05-28 00:43:14 -07:00
|
|
|
ClockLatency ret;
|
2018-03-14 23:48:46 -07:00
|
|
|
pa_usec_t latency;
|
2014-05-26 03:41:33 -07:00
|
|
|
int neg, err;
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-10-08 03:41:49 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
auto _ = mMainloop.getLock();
|
2018-12-28 22:56:20 -08:00
|
|
|
ret.ClockTime = GetDeviceClockTime(mDevice);
|
|
|
|
err = pa_stream_get_latency(mStream, &latency, &neg);
|
2018-10-31 20:09:14 -07:00
|
|
|
}
|
2018-03-14 23:48:46 -07:00
|
|
|
|
2019-08-04 11:59:14 -07:00
|
|
|
if UNLIKELY(err != 0)
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
2014-05-26 03:41:33 -07:00
|
|
|
/* FIXME: if err = -PA_ERR_NODATA, it means we were called too soon
|
|
|
|
* after starting the stream and no timing info has been received from
|
|
|
|
* the server yet. Should we wait, possibly stalling the app, or give a
|
|
|
|
* dummy value? Either way, it shouldn't be 0. */
|
|
|
|
if(err != -PA_ERR_NODATA)
|
|
|
|
ERR("Failed to get stream latency: 0x%x\n", err);
|
2016-05-28 00:43:14 -07:00
|
|
|
latency = 0;
|
|
|
|
neg = 0;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
2019-08-04 11:59:14 -07:00
|
|
|
else if UNLIKELY(neg)
|
2018-03-14 23:48:46 -07:00
|
|
|
latency = 0;
|
2018-11-22 14:32:48 -08:00
|
|
|
ret.Latency = std::chrono::microseconds{latency};
|
2016-05-28 00:43:14 -07:00
|
|
|
|
|
|
|
return ret;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
2014-04-23 03:52:05 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
struct PulseCapture final : public BackendBase {
|
|
|
|
PulseCapture(ALCdevice *device) noexcept : BackendBase{device} { }
|
2018-12-27 23:37:24 -08:00
|
|
|
~PulseCapture() override;
|
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void streamStateCallback(pa_stream *stream) noexcept;
|
|
|
|
static void streamStateCallbackC(pa_stream *stream, void *pdata) noexcept
|
2019-10-08 03:41:49 -07:00
|
|
|
{ static_cast<PulseCapture*>(pdata)->streamStateCallback(stream); }
|
2018-12-28 12:58:01 -08:00
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void sourceNameCallback(pa_context *context, const pa_source_info *info, int eol) noexcept;
|
|
|
|
static void sourceNameCallbackC(pa_context *context, const pa_source_info *info, int eol, void *pdata) noexcept
|
2019-10-08 03:41:49 -07:00
|
|
|
{ static_cast<PulseCapture*>(pdata)->sourceNameCallback(context, info, eol); }
|
2018-12-28 12:58:01 -08:00
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void streamMovedCallback(pa_stream *stream) noexcept;
|
|
|
|
static void streamMovedCallbackC(pa_stream *stream, void *pdata) noexcept
|
2019-10-08 03:41:49 -07:00
|
|
|
{ static_cast<PulseCapture*>(pdata)->streamMovedCallback(stream); }
|
2018-12-28 12:58:01 -08:00
|
|
|
|
2019-10-07 21:37:56 -07:00
|
|
|
void open(const ALCchar *name) override;
|
2019-09-15 09:50:28 -07:00
|
|
|
bool start() override;
|
2018-12-28 22:56:20 -08:00
|
|
|
void stop() override;
|
2019-09-15 09:50:28 -07:00
|
|
|
ALCenum captureSamples(al::byte *buffer, ALCuint samples) override;
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCuint availableSamples() override;
|
|
|
|
ClockLatency getClockLatency() override;
|
2019-10-09 23:04:05 -07:00
|
|
|
|
|
|
|
PulseMainloop mMainloop;
|
2018-12-28 22:56:20 -08:00
|
|
|
|
2018-12-27 17:09:14 -08:00
|
|
|
std::string mDeviceName;
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-12-27 17:09:14 -08:00
|
|
|
ALCuint mLastReadable{0u};
|
2019-06-23 17:08:52 -07:00
|
|
|
al::byte mSilentVal{};
|
|
|
|
|
|
|
|
al::span<const al::byte> mCapBuffer;
|
|
|
|
ssize_t mCapLen{0};
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-12-27 17:09:14 -08:00
|
|
|
pa_buffer_attr mAttr{};
|
|
|
|
pa_sample_spec mSpec{};
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-12-27 17:09:14 -08:00
|
|
|
pa_stream *mStream{nullptr};
|
|
|
|
pa_context *mContext{nullptr};
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
DEF_NEWDEL(PulseCapture)
|
2018-12-28 12:58:01 -08:00
|
|
|
};
|
2018-11-15 19:55:56 -08:00
|
|
|
|
2018-12-27 23:37:24 -08:00
|
|
|
PulseCapture::~PulseCapture()
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
if(!mContext)
|
2013-10-29 14:44:07 -07:00
|
|
|
return;
|
2019-04-27 12:25:49 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
mMainloop.close(mContext, mStream);
|
2018-12-27 23:37:24 -08:00
|
|
|
mContext = nullptr;
|
|
|
|
mStream = nullptr;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void PulseCapture::streamStateCallback(pa_stream *stream) noexcept
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
|
|
|
if(pa_stream_get_state(stream) == PA_STREAM_FAILED)
|
|
|
|
{
|
|
|
|
ERR("Received stream failure!\n");
|
2018-12-28 12:58:01 -08:00
|
|
|
aluHandleDisconnect(mDevice, "Capture stream failure");
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
2019-10-09 23:04:05 -07:00
|
|
|
mMainloop.getCondVar().notify_all();
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void PulseCapture::sourceNameCallback(pa_context*, const pa_source_info *info, int eol) noexcept
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
|
|
|
if(eol)
|
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
mMainloop.getCondVar().notify_all();
|
2009-08-13 17:08:47 -07:00
|
|
|
return;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
2018-12-28 12:58:01 -08:00
|
|
|
mDevice->DeviceName = info->description;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
2019-10-09 03:29:25 -07:00
|
|
|
void PulseCapture::streamMovedCallback(pa_stream *stream) noexcept
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
2018-12-28 12:58:01 -08:00
|
|
|
mDeviceName = pa_stream_get_device_name(stream);
|
|
|
|
TRACE("Stream moved to %s\n", mDeviceName.c_str());
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-07 21:37:56 -07:00
|
|
|
void PulseCapture::open(const ALCchar *name)
|
2009-04-16 05:17:42 -07:00
|
|
|
{
|
2018-10-31 20:09:14 -07:00
|
|
|
const char *pulse_name{nullptr};
|
2013-10-29 14:44:07 -07:00
|
|
|
if(name)
|
2010-05-30 21:05:05 -07:00
|
|
|
{
|
2018-10-31 20:09:14 -07:00
|
|
|
if(CaptureDevices.empty())
|
2020-03-18 03:07:54 -07:00
|
|
|
mMainloop.probeCaptureDevices();
|
2012-03-01 04:37:40 -08:00
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
auto iter = std::find_if(CaptureDevices.cbegin(), CaptureDevices.cend(),
|
2020-03-18 03:07:54 -07:00
|
|
|
[name](const DevMap &entry) -> bool { return entry.name == name; });
|
2018-10-31 20:09:14 -07:00
|
|
|
if(iter == CaptureDevices.cend())
|
2019-05-04 20:35:24 -07:00
|
|
|
throw al::backend_exception{ALC_INVALID_VALUE, "Device name \"%s\" not found", name};
|
2018-10-31 20:09:14 -07:00
|
|
|
pulse_name = iter->device_name.c_str();
|
2018-12-28 22:56:20 -08:00
|
|
|
mDevice->DeviceName = iter->name;
|
2010-05-30 21:05:05 -07:00
|
|
|
}
|
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
auto plock = mMainloop.getLock();
|
2009-08-13 17:08:47 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
mContext = mMainloop.connectContext(plock);
|
2019-05-04 20:35:24 -07:00
|
|
|
|
2019-05-04 20:54:49 -07:00
|
|
|
pa_channel_map chanmap{};
|
2018-12-28 22:56:20 -08:00
|
|
|
switch(mDevice->FmtChans)
|
2017-04-12 18:26:07 -07:00
|
|
|
{
|
2019-10-07 21:37:56 -07:00
|
|
|
case DevFmtMono:
|
|
|
|
chanmap = MonoChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtStereo:
|
|
|
|
chanmap = StereoChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtQuad:
|
|
|
|
chanmap = QuadChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtX51:
|
|
|
|
chanmap = X51ChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtX51Rear:
|
|
|
|
chanmap = X51RearChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtX61:
|
|
|
|
chanmap = X61ChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtX71:
|
|
|
|
chanmap = X71ChanMap;
|
|
|
|
break;
|
|
|
|
case DevFmtAmbi3D:
|
2019-10-08 05:44:38 -07:00
|
|
|
throw al::backend_exception{ALC_INVALID_VALUE, "%s capture not supported",
|
2019-10-07 21:37:56 -07:00
|
|
|
DevFmtChannelsString(mDevice->FmtChans)};
|
2017-04-12 18:26:07 -07:00
|
|
|
}
|
2019-05-04 23:45:27 -07:00
|
|
|
SetChannelOrderFromMap(mDevice, chanmap);
|
2017-04-12 18:26:07 -07:00
|
|
|
|
2019-05-04 22:11:29 -07:00
|
|
|
switch(mDevice->FmtType)
|
|
|
|
{
|
2019-10-07 21:37:56 -07:00
|
|
|
case DevFmtUByte:
|
|
|
|
mSilentVal = al::byte(0x80);
|
|
|
|
mSpec.format = PA_SAMPLE_U8;
|
|
|
|
break;
|
|
|
|
case DevFmtShort:
|
|
|
|
mSpec.format = PA_SAMPLE_S16NE;
|
|
|
|
break;
|
|
|
|
case DevFmtInt:
|
|
|
|
mSpec.format = PA_SAMPLE_S32NE;
|
|
|
|
break;
|
|
|
|
case DevFmtFloat:
|
|
|
|
mSpec.format = PA_SAMPLE_FLOAT32NE;
|
|
|
|
break;
|
|
|
|
case DevFmtByte:
|
|
|
|
case DevFmtUShort:
|
|
|
|
case DevFmtUInt:
|
|
|
|
throw al::backend_exception{ALC_INVALID_VALUE, "%s capture samples not supported",
|
|
|
|
DevFmtTypeString(mDevice->FmtType)};
|
2019-05-04 22:11:29 -07:00
|
|
|
}
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.rate = mDevice->Frequency;
|
2019-09-14 12:44:35 -07:00
|
|
|
mSpec.channels = static_cast<uint8_t>(mDevice->channelsFromFmt());
|
2018-12-28 22:56:20 -08:00
|
|
|
if(pa_sample_spec_valid(&mSpec) == 0)
|
2019-05-04 20:35:24 -07:00
|
|
|
throw al::backend_exception{ALC_INVALID_VALUE, "Invalid sample format"};
|
2009-12-26 09:17:03 -08:00
|
|
|
|
2019-09-14 12:44:35 -07:00
|
|
|
const ALuint frame_size{static_cast<ALuint>(pa_frame_size(&mSpec))};
|
|
|
|
const ALuint samples{maxu(mDevice->BufferSize, 100 * mDevice->Frequency / 1000)};
|
|
|
|
mAttr.minreq = ~0u;
|
|
|
|
mAttr.prebuf = ~0u;
|
|
|
|
mAttr.maxlength = samples * frame_size;
|
|
|
|
mAttr.tlength = ~0u;
|
|
|
|
mAttr.fragsize = minu(samples, 50*mDevice->Frequency/1000) * frame_size;
|
2012-02-29 06:51:21 -08:00
|
|
|
|
2019-04-26 15:58:25 -07:00
|
|
|
pa_stream_flags_t flags{PA_STREAM_START_CORKED | PA_STREAM_ADJUST_LATENCY};
|
2019-04-27 13:39:46 -07:00
|
|
|
if(!GetConfigValueBool(nullptr, "pulse", "allow-moves", 1))
|
2012-06-16 22:32:19 -07:00
|
|
|
flags |= PA_STREAM_DONT_MOVE;
|
|
|
|
|
2014-04-21 20:26:29 -07:00
|
|
|
TRACE("Connecting to \"%s\"\n", pulse_name ? pulse_name : "(default)");
|
2019-10-09 23:04:05 -07:00
|
|
|
mStream = mMainloop.connectStream(pulse_name, plock, mContext, flags, &mAttr, &mSpec, &chanmap,
|
2018-12-29 01:38:26 -08:00
|
|
|
BackendType::Capture);
|
2018-12-27 17:09:14 -08:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_set_moved_callback(mStream, &PulseCapture::streamMovedCallbackC, this);
|
|
|
|
pa_stream_set_state_callback(mStream, &PulseCapture::streamStateCallbackC, this);
|
2009-08-13 17:08:47 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
mDeviceName = pa_stream_get_device_name(mStream);
|
|
|
|
if(mDevice->DeviceName.empty())
|
2015-09-03 14:59:59 -07:00
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_operation *op{pa_context_get_source_info_by_name(mContext, mDeviceName.c_str(),
|
|
|
|
&PulseCapture::sourceNameCallbackC, this)};
|
2019-10-09 23:04:05 -07:00
|
|
|
mMainloop.waitForOperation(op, plock);
|
2015-09-03 14:59:59 -07:00
|
|
|
}
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-04-16 05:17:42 -07:00
|
|
|
|
2019-09-15 09:50:28 -07:00
|
|
|
bool PulseCapture::start()
|
2009-04-16 05:17:42 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
auto plock = mMainloop.getLock();
|
|
|
|
pa_operation *op{pa_stream_cork(mStream, 0, &PulseMainloop::streamSuccessCallbackC,
|
|
|
|
&mMainloop)};
|
|
|
|
mMainloop.waitForOperation(op, plock);
|
2019-09-15 09:50:28 -07:00
|
|
|
return true;
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-04-16 05:17:42 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
void PulseCapture::stop()
|
2009-04-16 05:17:42 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
auto plock = mMainloop.getLock();
|
|
|
|
pa_operation *op{pa_stream_cork(mStream, 1, &PulseMainloop::streamSuccessCallbackC,
|
|
|
|
&mMainloop)};
|
|
|
|
mMainloop.waitForOperation(op, plock);
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-04-16 05:17:42 -07:00
|
|
|
|
2019-09-15 09:50:28 -07:00
|
|
|
ALCenum PulseCapture::captureSamples(al::byte *buffer, ALCuint samples)
|
2011-09-18 20:27:34 -07:00
|
|
|
{
|
2019-09-15 09:50:28 -07:00
|
|
|
al::span<al::byte> dstbuf{buffer, samples * pa_frame_size(&mSpec)};
|
2009-12-25 17:56:57 -08:00
|
|
|
|
|
|
|
/* Capture is done in fragment-sized chunks, so we loop until we get all
|
2010-06-04 00:27:31 -07:00
|
|
|
* that's available */
|
2019-09-14 16:55:28 -07:00
|
|
|
mLastReadable -= static_cast<ALCuint>(dstbuf.size());
|
2019-06-23 17:08:52 -07:00
|
|
|
while(!dstbuf.empty())
|
2009-12-25 17:56:57 -08:00
|
|
|
{
|
2019-10-07 22:25:45 -07:00
|
|
|
if(!mCapBuffer.empty())
|
2009-12-25 17:56:57 -08:00
|
|
|
{
|
2019-10-07 22:25:45 -07:00
|
|
|
const size_t rem{minz(dstbuf.size(), mCapBuffer.size())};
|
|
|
|
if UNLIKELY(mCapLen < 0)
|
|
|
|
std::fill_n(dstbuf.begin(), rem, mSilentVal);
|
2019-06-23 17:08:52 -07:00
|
|
|
else
|
2019-10-07 22:25:45 -07:00
|
|
|
std::copy_n(mCapBuffer.begin(), rem, dstbuf.begin());
|
|
|
|
dstbuf = dstbuf.subspan(rem);
|
|
|
|
mCapBuffer = mCapBuffer.subspan(rem);
|
|
|
|
|
|
|
|
continue;
|
2009-12-25 17:56:57 -08:00
|
|
|
}
|
2012-02-29 05:57:54 -08:00
|
|
|
|
2019-10-07 22:25:45 -07:00
|
|
|
if UNLIKELY(!mDevice->Connected.load(std::memory_order_acquire))
|
|
|
|
break;
|
2012-02-29 05:57:54 -08:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
auto plock = mMainloop.getLock();
|
2019-10-07 22:25:45 -07:00
|
|
|
if(mCapLen != 0)
|
2012-02-29 05:57:54 -08:00
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_drop(mStream);
|
2019-10-07 22:25:45 -07:00
|
|
|
mCapBuffer = {};
|
2018-12-28 22:56:20 -08:00
|
|
|
mCapLen = 0;
|
2012-02-29 05:57:54 -08:00
|
|
|
}
|
2019-10-07 22:25:45 -07:00
|
|
|
const pa_stream_state_t state{pa_stream_get_state(mStream)};
|
|
|
|
if UNLIKELY(!PA_STREAM_IS_GOOD(state))
|
|
|
|
{
|
|
|
|
aluHandleDisconnect(mDevice, "Bad capture state: %u", state);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
const void *capbuf;
|
|
|
|
size_t caplen;
|
|
|
|
if UNLIKELY(pa_stream_peek(mStream, &capbuf, &caplen) < 0)
|
|
|
|
{
|
|
|
|
aluHandleDisconnect(mDevice, "Failed retrieving capture samples: %s",
|
|
|
|
pa_strerror(pa_context_errno(mContext)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
plock.unlock();
|
|
|
|
|
|
|
|
if(caplen == 0) break;
|
|
|
|
if UNLIKELY(!capbuf)
|
|
|
|
mCapLen = -static_cast<ssize_t>(caplen);
|
|
|
|
else
|
|
|
|
mCapLen = static_cast<ssize_t>(caplen);
|
|
|
|
mCapBuffer = {static_cast<const al::byte*>(capbuf), caplen};
|
2012-02-29 05:57:54 -08:00
|
|
|
}
|
2019-06-23 17:08:52 -07:00
|
|
|
if(!dstbuf.empty())
|
|
|
|
std::fill(dstbuf.begin(), dstbuf.end(), mSilentVal);
|
2009-12-25 17:56:57 -08:00
|
|
|
|
2012-02-29 05:57:54 -08:00
|
|
|
return ALC_NO_ERROR;
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-12-25 17:56:57 -08:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCuint PulseCapture::availableSamples()
|
2012-02-29 05:57:54 -08:00
|
|
|
{
|
2019-06-23 17:08:52 -07:00
|
|
|
size_t readable{mCapBuffer.size()};
|
2012-02-29 05:57:54 -08:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
if(mDevice->Connected.load(std::memory_order_acquire))
|
2012-02-29 05:57:54 -08:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
auto _ = mMainloop.getLock();
|
2018-12-28 22:56:20 -08:00
|
|
|
size_t got{pa_stream_readable_size(mStream)};
|
2019-10-09 23:04:05 -07:00
|
|
|
if UNLIKELY(static_cast<ssize_t>(got) < 0)
|
2012-03-05 00:11:28 -08:00
|
|
|
{
|
2019-09-14 12:44:35 -07:00
|
|
|
const char *err{pa_strerror(static_cast<int>(got))};
|
|
|
|
ERR("pa_stream_readable_size() failed: %s\n", err);
|
|
|
|
aluHandleDisconnect(mDevice, "Failed getting readable size: %s", err);
|
2012-03-05 00:11:28 -08:00
|
|
|
}
|
2019-06-23 17:08:52 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
const auto caplen = static_cast<size_t>(std::abs(mCapLen));
|
|
|
|
if(got > caplen) readable += got - caplen;
|
|
|
|
}
|
2009-12-25 17:56:57 -08:00
|
|
|
}
|
2010-06-04 00:27:31 -07:00
|
|
|
|
2019-06-23 17:08:52 -07:00
|
|
|
readable = std::min<size_t>(readable, std::numeric_limits<ALCuint>::max());
|
|
|
|
mLastReadable = std::max(mLastReadable, static_cast<ALCuint>(readable));
|
2019-09-14 12:44:35 -07:00
|
|
|
return mLastReadable / static_cast<ALCuint>(pa_frame_size(&mSpec));
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-04-16 05:17:42 -07:00
|
|
|
|
2010-07-24 19:14:32 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ClockLatency PulseCapture::getClockLatency()
|
2012-08-17 13:38:52 -07:00
|
|
|
{
|
2016-05-28 00:43:14 -07:00
|
|
|
ClockLatency ret;
|
2018-03-14 23:48:46 -07:00
|
|
|
pa_usec_t latency;
|
2016-05-28 00:43:14 -07:00
|
|
|
int neg, err;
|
2012-08-17 13:38:52 -07:00
|
|
|
|
2019-10-08 03:41:49 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
auto _ = mMainloop.getLock();
|
2018-12-28 22:56:20 -08:00
|
|
|
ret.ClockTime = GetDeviceClockTime(mDevice);
|
|
|
|
err = pa_stream_get_latency(mStream, &latency, &neg);
|
2018-10-31 20:09:14 -07:00
|
|
|
}
|
2018-03-14 23:48:46 -07:00
|
|
|
|
2019-08-04 11:59:14 -07:00
|
|
|
if UNLIKELY(err != 0)
|
2012-08-17 13:38:52 -07:00
|
|
|
{
|
2016-05-28 00:43:14 -07:00
|
|
|
ERR("Failed to get stream latency: 0x%x\n", err);
|
|
|
|
latency = 0;
|
|
|
|
neg = 0;
|
2012-08-17 13:38:52 -07:00
|
|
|
}
|
2019-08-04 11:59:14 -07:00
|
|
|
else if UNLIKELY(neg)
|
2018-03-14 23:48:46 -07:00
|
|
|
latency = 0;
|
2018-11-22 14:32:48 -08:00
|
|
|
ret.Latency = std::chrono::microseconds{latency};
|
2016-05-28 00:43:14 -07:00
|
|
|
|
|
|
|
return ret;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
2018-11-15 19:55:56 -08:00
|
|
|
} // namespace
|
2014-04-23 03:52:05 -07:00
|
|
|
|
|
|
|
|
2018-11-15 19:55:56 -08:00
|
|
|
bool PulseBackendFactory::init()
|
2009-04-16 05:17:42 -07:00
|
|
|
{
|
2019-04-14 02:16:42 -07:00
|
|
|
#ifdef HAVE_DYNLOAD
|
2019-04-27 18:01:26 -07:00
|
|
|
if(!pulse_handle)
|
2012-02-19 14:07:44 -08:00
|
|
|
{
|
2019-04-16 17:23:28 -07:00
|
|
|
bool ret{true};
|
2019-04-14 02:16:42 -07:00
|
|
|
std::string missing_funcs;
|
2011-08-17 06:05:26 -07:00
|
|
|
|
2019-04-14 02:16:42 -07:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define PALIB "libpulse-0.dll"
|
|
|
|
#elif defined(__APPLE__) && defined(__MACH__)
|
|
|
|
#define PALIB "libpulse.0.dylib"
|
|
|
|
#else
|
|
|
|
#define PALIB "libpulse.so.0"
|
|
|
|
#endif
|
2019-04-27 18:01:26 -07:00
|
|
|
pulse_handle = LoadLib(PALIB);
|
|
|
|
if(!pulse_handle)
|
2012-02-19 14:07:44 -08:00
|
|
|
{
|
2019-04-14 02:16:42 -07:00
|
|
|
WARN("Failed to load %s\n", PALIB);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define LOAD_FUNC(x) do { \
|
2019-04-27 18:01:26 -07:00
|
|
|
p##x = reinterpret_cast<decltype(p##x)>(GetSymbol(pulse_handle, #x)); \
|
2019-04-14 02:16:42 -07:00
|
|
|
if(!(p##x)) { \
|
|
|
|
ret = false; \
|
|
|
|
missing_funcs += "\n" #x; \
|
|
|
|
} \
|
|
|
|
} while(0)
|
2019-04-27 18:01:26 -07:00
|
|
|
PULSE_FUNCS(LOAD_FUNC)
|
2019-04-14 02:16:42 -07:00
|
|
|
#undef LOAD_FUNC
|
|
|
|
|
|
|
|
if(!ret)
|
|
|
|
{
|
|
|
|
WARN("Missing expected functions:%s\n", missing_funcs.c_str());
|
2019-04-27 18:01:26 -07:00
|
|
|
CloseLib(pulse_handle);
|
|
|
|
pulse_handle = nullptr;
|
2019-04-14 02:16:42 -07:00
|
|
|
return false;
|
2012-02-19 14:07:44 -08:00
|
|
|
}
|
|
|
|
}
|
2019-04-14 02:16:42 -07:00
|
|
|
#endif /* HAVE_DYNLOAD */
|
2012-02-19 14:07:44 -08:00
|
|
|
|
2019-04-14 02:16:42 -07:00
|
|
|
pulse_ctx_flags = PA_CONTEXT_NOFLAGS;
|
|
|
|
if(!GetConfigValueBool(nullptr, "pulse", "spawn-server", 1))
|
|
|
|
pulse_ctx_flags |= PA_CONTEXT_NOAUTOSPAWN;
|
2009-08-26 23:45:00 -07:00
|
|
|
|
2019-05-04 20:35:24 -07:00
|
|
|
try {
|
2019-10-09 23:04:05 -07:00
|
|
|
auto plock = gGlobalMainloop.getLock();
|
|
|
|
pa_context *context{gGlobalMainloop.connectContext(plock)};
|
2019-05-04 20:35:24 -07:00
|
|
|
pa_context_disconnect(context);
|
|
|
|
pa_context_unref(context);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch(...) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-08-27 06:09:33 -07:00
|
|
|
|
2018-12-29 01:38:26 -08:00
|
|
|
bool PulseBackendFactory::querySupport(BackendType type)
|
|
|
|
{ return type == BackendType::Playback || type == BackendType::Capture; }
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-12-24 19:29:01 -08:00
|
|
|
void PulseBackendFactory::probe(DevProbe type, std::string *outnames)
|
2009-08-27 06:09:33 -07:00
|
|
|
{
|
2018-11-01 08:04:21 -07:00
|
|
|
auto add_device = [outnames](const DevMap &entry) -> void
|
|
|
|
{
|
2018-11-13 23:26:42 -08:00
|
|
|
/* +1 to also append the null char (to ensure a null-separated list and
|
|
|
|
* double-null terminated list).
|
|
|
|
*/
|
2018-11-15 04:24:33 -08:00
|
|
|
outnames->append(entry.name.c_str(), entry.name.length()+1);
|
2018-10-31 20:09:14 -07:00
|
|
|
};
|
2019-10-09 23:04:05 -07:00
|
|
|
|
2011-06-14 04:02:58 -07:00
|
|
|
switch(type)
|
2010-08-04 04:21:39 -07:00
|
|
|
{
|
2019-10-09 23:04:05 -07:00
|
|
|
case DevProbe::Playback:
|
2020-03-18 03:07:54 -07:00
|
|
|
gGlobalMainloop.probePlaybackDevices();
|
2019-10-09 23:04:05 -07:00
|
|
|
std::for_each(PlaybackDevices.cbegin(), PlaybackDevices.cend(), add_device);
|
|
|
|
break;
|
2010-05-30 21:05:05 -07:00
|
|
|
|
2019-10-09 23:04:05 -07:00
|
|
|
case DevProbe::Capture:
|
2020-03-18 03:07:54 -07:00
|
|
|
gGlobalMainloop.probeCaptureDevices();
|
2019-10-09 23:04:05 -07:00
|
|
|
std::for_each(CaptureDevices.cbegin(), CaptureDevices.cend(), add_device);
|
|
|
|
break;
|
2010-05-30 21:05:05 -07:00
|
|
|
}
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2012-03-01 03:24:49 -08:00
|
|
|
|
2018-12-29 02:16:16 -08:00
|
|
|
BackendPtr PulseBackendFactory::createBackend(ALCdevice *device, BackendType type)
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
2018-12-29 01:38:26 -08:00
|
|
|
if(type == BackendType::Playback)
|
2018-12-29 02:16:16 -08:00
|
|
|
return BackendPtr{new PulsePlayback{device}};
|
2018-12-29 01:38:26 -08:00
|
|
|
if(type == BackendType::Capture)
|
2018-12-29 02:16:16 -08:00
|
|
|
return BackendPtr{new PulseCapture{device}};
|
2018-10-31 20:09:14 -07:00
|
|
|
return nullptr;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
2018-11-15 19:55:56 -08:00
|
|
|
BackendFactory &PulseBackendFactory::getFactory()
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
2018-11-01 23:52:53 -07:00
|
|
|
static PulseBackendFactory factory{};
|
2018-11-15 19:55:56 -08:00
|
|
|
return factory;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|