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-04-27 12:25:49 -07:00
|
|
|
#include <condition_variable>
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2009-04-16 05:17:42 -07:00
|
|
|
#include "alMain.h"
|
2012-09-14 02:14:29 -07:00
|
|
|
#include "alu.h"
|
2018-01-11 07:56:54 -08:00
|
|
|
#include "alconfig.h"
|
2013-10-28 12:05:33 -07:00
|
|
|
#include "compat.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); \
|
|
|
|
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
|
|
|
|
#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
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
/* *grumble* Don't use enums for bitflags. */
|
|
|
|
inline pa_stream_flags_t operator|(pa_stream_flags_t lhs, pa_stream_flags_t rhs)
|
|
|
|
{ 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
|
|
|
{
|
|
|
|
lhs = pa_stream_flags_t(int(lhs) | int(rhs));
|
|
|
|
return lhs;
|
|
|
|
}
|
2019-03-26 17:03:31 -07:00
|
|
|
inline pa_context_flags_t& operator|=(pa_context_flags_t &lhs, pa_context_flags_t rhs)
|
2018-10-31 20:09:14 -07:00
|
|
|
{
|
|
|
|
lhs = pa_context_flags_t(int(lhs) | int(rhs));
|
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
2019-03-26 17:03:31 -07:00
|
|
|
inline pa_stream_flags_t& operator&=(pa_stream_flags_t &lhs, int rhs)
|
|
|
|
{
|
|
|
|
lhs = pa_stream_flags_t(int(lhs) & rhs);
|
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
|
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-04-27 12:25:49 -07:00
|
|
|
pa_mainloop *pulse_mainloop{nullptr};
|
|
|
|
|
|
|
|
std::mutex pulse_lock;
|
|
|
|
std::condition_variable pulse_condvar;
|
|
|
|
|
|
|
|
int pulse_poll_func(struct pollfd *ufds, unsigned long nfds, int timeout, void *userdata)
|
|
|
|
{
|
|
|
|
auto plock = static_cast<std::unique_lock<std::mutex>*>(userdata);
|
|
|
|
plock->unlock();
|
|
|
|
int r{poll(ufds, nfds, timeout)};
|
|
|
|
plock->lock();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int pulse_mainloop_thread()
|
|
|
|
{
|
|
|
|
SetRTPriority();
|
|
|
|
|
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
|
|
|
pulse_mainloop = pa_mainloop_new();
|
|
|
|
|
|
|
|
pa_mainloop_set_poll_func(pulse_mainloop, pulse_poll_func, &plock);
|
|
|
|
pulse_condvar.notify_all();
|
|
|
|
|
|
|
|
int ret{};
|
|
|
|
pa_mainloop_run(pulse_mainloop, &ret);
|
|
|
|
|
|
|
|
pa_mainloop_free(pulse_mainloop);
|
|
|
|
pulse_mainloop = nullptr;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-02 09:08:17 -08:00
|
|
|
/* PulseAudio Event Callbacks */
|
2019-04-27 12:25:49 -07:00
|
|
|
void context_state_callback(pa_context *context, void* /*pdata*/)
|
2012-03-01 04:12:47 -08:00
|
|
|
{
|
2018-10-31 22:10:26 -07:00
|
|
|
pa_context_state_t state{pa_context_get_state(context)};
|
2012-03-01 04:12:47 -08:00
|
|
|
if(state == PA_CONTEXT_READY || !PA_CONTEXT_IS_GOOD(state))
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.notify_all();
|
2012-03-01 04:12:47 -08:00
|
|
|
}
|
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
void stream_state_callback(pa_stream *stream, void* /*pdata*/)
|
2009-10-31 17:52:26 -07:00
|
|
|
{
|
2018-10-31 22:10:26 -07:00
|
|
|
pa_stream_state_t state{pa_stream_get_state(stream)};
|
2009-12-01 22:42:43 -08:00
|
|
|
if(state == PA_STREAM_READY || !PA_STREAM_IS_GOOD(state))
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.notify_all();
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-10-31 17:57:35 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
void stream_success_callback(pa_stream* /*stream*/, int /*success*/, void* /*pdata*/)
|
2009-10-31 17:57:35 -07:00
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.notify_all();
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-10-31 20:05:15 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
void wait_for_operation(pa_operation *op, std::unique_lock<std::mutex> &plock)
|
2009-10-31 20:05:15 -07:00
|
|
|
{
|
2013-10-29 14:44:07 -07:00
|
|
|
if(op)
|
2009-10-31 20:05:15 -07:00
|
|
|
{
|
2013-10-29 14:44:07 -07:00
|
|
|
while(pa_operation_get_state(op) == PA_OPERATION_RUNNING)
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.wait(plock);
|
2013-10-29 14:44:07 -07:00
|
|
|
pa_operation_unref(op);
|
2009-10-31 20:05:15 -07:00
|
|
|
}
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-10-31 20:05:15 -07:00
|
|
|
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_context *connect_context(std::unique_lock<std::mutex> &plock, ALboolean silent)
|
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-04-27 12:25:49 -07:00
|
|
|
if(UNLIKELY(!pulse_mainloop))
|
|
|
|
{
|
|
|
|
std::thread{pulse_mainloop_thread}.detach();
|
|
|
|
while(!pulse_mainloop)
|
|
|
|
pulse_condvar.wait(plock);
|
|
|
|
}
|
|
|
|
|
|
|
|
pa_context *context{pa_context_new(pa_mainloop_get_api(pulse_mainloop), name)};
|
2013-10-29 14:44:07 -07:00
|
|
|
if(!context)
|
2009-10-31 20:05:15 -07:00
|
|
|
{
|
2013-10-29 14:44:07 -07:00
|
|
|
ERR("pa_context_new() failed\n");
|
2018-10-31 20:09:14 -07:00
|
|
|
return nullptr;
|
2009-10-31 20:05:15 -07:00
|
|
|
}
|
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_context_set_state_callback(context, context_state_callback, nullptr);
|
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-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.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)
|
|
|
|
{
|
|
|
|
if(!silent)
|
|
|
|
ERR("Context did not connect: %s\n", pa_strerror(err));
|
|
|
|
pa_context_unref(context);
|
2018-10-31 20:09:14 -07:00
|
|
|
context = nullptr;
|
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-04-27 12:25:49 -07:00
|
|
|
pa_context *pulse_open(void(*state_cb)(pa_context*,void*), void *ptr)
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
|
|
|
pa_context *context{connect_context(plock, AL_FALSE)};
|
|
|
|
if(LIKELY(context))
|
|
|
|
pa_context_set_state_callback(context, state_cb, ptr);
|
|
|
|
return context;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
void pulse_close(pa_context *context, pa_stream *stream)
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
std::lock_guard<std::mutex> _{pulse_lock};
|
|
|
|
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);
|
2009-12-27 11:05:59 -08:00
|
|
|
}
|
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_context_disconnect(context);
|
|
|
|
pa_context_unref(context);
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2010-05-30 20:33:57 -07:00
|
|
|
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
struct DevMap {
|
|
|
|
std::string name;
|
|
|
|
std::string device_name;
|
|
|
|
};
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-11-24 16:58:49 -08:00
|
|
|
bool checkName(const al::vector<DevMap> &list, const std::string &name)
|
2018-11-01 16:00:16 -07:00
|
|
|
{
|
|
|
|
return std::find_if(list.cbegin(), list.cend(),
|
|
|
|
[&name](const DevMap &entry) -> bool
|
|
|
|
{ return entry.name == name; }
|
|
|
|
) != list.cend();
|
|
|
|
}
|
|
|
|
|
2018-11-24 16:58:49 -08:00
|
|
|
al::vector<DevMap> PlaybackDevices;
|
|
|
|
al::vector<DevMap> CaptureDevices;
|
2018-11-01 20:18:51 -07:00
|
|
|
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_stream *pulse_connect_stream(const char *device_name, std::unique_lock<std::mutex> &plock,
|
2018-12-27 23:37:24 -08:00
|
|
|
pa_context *context, pa_stream_flags_t flags, pa_buffer_attr *attr, pa_sample_spec *spec,
|
2018-12-29 01:38:26 -08:00
|
|
|
pa_channel_map *chanmap, BackendType type)
|
2018-12-27 23:37:24 -08:00
|
|
|
{
|
2019-04-27 13:39:46 -07:00
|
|
|
pa_stream *stream{pa_stream_new(context,
|
|
|
|
(type==BackendType::Playback) ? "Playback Stream" : "Capture Stream", spec, chanmap)};
|
2018-12-27 23:37:24 -08:00
|
|
|
if(!stream)
|
|
|
|
{
|
|
|
|
ERR("pa_stream_new_with_proplist() failed: %s\n", pa_strerror(pa_context_errno(context)));
|
|
|
|
return nullptr;
|
|
|
|
}
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_stream_set_state_callback(stream, stream_state_callback, nullptr);
|
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)
|
|
|
|
{
|
|
|
|
ERR("Stream did not connect: %s\n", pa_strerror(err));
|
|
|
|
pa_stream_unref(stream);
|
|
|
|
return nullptr;
|
|
|
|
}
|
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))
|
|
|
|
{
|
|
|
|
ERR("Stream did not get ready: %s\n", pa_strerror(pa_context_errno(context)));
|
|
|
|
pa_stream_unref(stream);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.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
|
|
|
|
2018-11-15 19:55:56 -08:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
void device_sink_callback(pa_context *UNUSED(context), const pa_sink_info *info, int eol, void* /*pdata*/)
|
2018-12-27 23:37:24 -08:00
|
|
|
{
|
|
|
|
if(eol)
|
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.notify_all();
|
2018-12-27 23:37:24 -08:00
|
|
|
return;
|
|
|
|
}
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2018-12-27 23:37:24 -08:00
|
|
|
/* Skip this device is if it's already in the list. */
|
|
|
|
if(std::find_if(PlaybackDevices.cbegin(), PlaybackDevices.cend(),
|
|
|
|
[info](const DevMap &entry) -> bool
|
|
|
|
{ return entry.device_name == info->name; }
|
|
|
|
) != PlaybackDevices.cend())
|
|
|
|
return;
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2018-12-27 23:37:24 -08:00
|
|
|
/* 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);
|
|
|
|
}
|
2019-04-27 12:25:49 -07:00
|
|
|
PlaybackDevices.emplace_back(DevMap{std::move(newname), info->name});
|
2018-12-27 23:37:24 -08:00
|
|
|
DevMap &newentry = PlaybackDevices.back();
|
2018-10-31 20:09:14 -07:00
|
|
|
|
2018-12-27 23:37:24 -08:00
|
|
|
TRACE("Got device \"%s\", \"%s\"\n", newentry.name.c_str(), newentry.device_name.c_str());
|
2014-04-20 05:55:52 -07:00
|
|
|
}
|
|
|
|
|
2019-01-09 19:43:54 +01:00
|
|
|
void probePlaybackDevices()
|
2014-04-20 05:55:52 -07:00
|
|
|
{
|
2018-12-27 23:37:24 -08:00
|
|
|
PlaybackDevices.clear();
|
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
2018-12-27 23:37:24 -08:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_context *context{connect_context(plock, AL_FALSE)};
|
|
|
|
if(!context) return;
|
2018-12-27 23:37:24 -08:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_stream_flags_t flags{PA_STREAM_FIX_FORMAT | PA_STREAM_FIX_RATE | PA_STREAM_FIX_CHANNELS |
|
|
|
|
PA_STREAM_DONT_MOVE};
|
2018-12-27 23:37:24 -08:00
|
|
|
|
2019-04-27 12:25:49 -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
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_stream *stream{pulse_connect_stream(nullptr, plock, context, flags, nullptr, &spec, nullptr,
|
|
|
|
BackendType::Playback)};
|
|
|
|
if(stream)
|
|
|
|
{
|
|
|
|
pa_operation *op{pa_context_get_sink_info_by_name(context,
|
|
|
|
pa_stream_get_device_name(stream), device_sink_callback, nullptr)};
|
|
|
|
wait_for_operation(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;
|
2018-01-29 01:00:53 -08:00
|
|
|
}
|
2019-04-27 12:25:49 -07:00
|
|
|
|
|
|
|
pa_operation *op{pa_context_get_sink_info_list(context, device_sink_callback, nullptr)};
|
|
|
|
wait_for_operation(op, plock);
|
|
|
|
|
|
|
|
pa_context_disconnect(context);
|
|
|
|
pa_context_unref(context);
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
void device_source_callback(pa_context *UNUSED(context), const pa_source_info *info, int eol, void* /*pdata*/)
|
2010-05-30 20:33:57 -07:00
|
|
|
{
|
|
|
|
if(eol)
|
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.notify_all();
|
2010-05-30 20:33:57 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-01 11:44:11 -07:00
|
|
|
/* Skip this device is if it's already in the list. */
|
2018-12-27 23:37:24 -08:00
|
|
|
if(std::find_if(CaptureDevices.cbegin(), CaptureDevices.cend(),
|
2018-10-31 20:09:14 -07:00
|
|
|
[info](const DevMap &entry) -> bool
|
|
|
|
{ return entry.device_name == info->name; }
|
2018-12-27 23:37:24 -08:00
|
|
|
) != CaptureDevices.cend())
|
2018-10-31 20:09:14 -07:00
|
|
|
return;
|
2014-04-20 06:29:36 -07:00
|
|
|
|
2018-11-01 11:44:11 -07:00
|
|
|
/* Make sure the display name (description) is unique. Append a number
|
|
|
|
* counter as needed.
|
|
|
|
*/
|
|
|
|
int count{1};
|
|
|
|
std::string newname{info->description};
|
2018-12-27 23:37:24 -08:00
|
|
|
while(checkName(CaptureDevices, newname))
|
2015-08-14 19:05:16 -07:00
|
|
|
{
|
2018-11-01 11:44:11 -07:00
|
|
|
newname = info->description;
|
|
|
|
newname += " #";
|
|
|
|
newname += std::to_string(++count);
|
2015-08-14 19:05:16 -07:00
|
|
|
}
|
2019-04-27 12:25:49 -07:00
|
|
|
CaptureDevices.emplace_back(DevMap{std::move(newname), info->name});
|
2018-12-27 23:37:24 -08:00
|
|
|
DevMap &newentry = CaptureDevices.back();
|
2015-08-14 19:05:16 -07:00
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
TRACE("Got device \"%s\", \"%s\"\n", newentry.name.c_str(), newentry.device_name.c_str());
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2010-05-30 21:05:05 -07:00
|
|
|
|
2019-01-09 19:43:54 +01:00
|
|
|
void probeCaptureDevices()
|
2010-05-30 21:05:05 -07:00
|
|
|
{
|
2018-12-27 23:37:24 -08:00
|
|
|
CaptureDevices.clear();
|
2010-05-30 21:05:05 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
2010-05-30 21:05:05 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_context *context{connect_context(plock, AL_FALSE)};
|
|
|
|
if(!context) return;
|
2010-06-09 18:22:05 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_stream_flags_t flags{PA_STREAM_FIX_FORMAT | PA_STREAM_FIX_RATE | PA_STREAM_FIX_CHANNELS |
|
|
|
|
PA_STREAM_DONT_MOVE};
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2019-04-27 12:25:49 -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
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_stream *stream{pulse_connect_stream(nullptr, plock, context, flags, nullptr, &spec, nullptr,
|
|
|
|
BackendType::Capture)};
|
|
|
|
if(stream)
|
|
|
|
{
|
|
|
|
pa_operation *op{pa_context_get_source_info_by_name(context,
|
|
|
|
pa_stream_get_device_name(stream), device_source_callback, nullptr)};
|
|
|
|
wait_for_operation(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;
|
2010-05-30 21:05:05 -07:00
|
|
|
}
|
2019-04-27 12:25:49 -07:00
|
|
|
|
|
|
|
pa_operation *op{pa_context_get_source_info_list(context, device_source_callback, nullptr)};
|
|
|
|
wait_for_operation(op, plock);
|
|
|
|
|
|
|
|
pa_context_disconnect(context);
|
|
|
|
pa_context_unref(context);
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2012-03-01 04:37:40 -08:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
static void bufferAttrCallbackC(pa_stream *stream, void *pdata);
|
|
|
|
void bufferAttrCallback(pa_stream *stream);
|
|
|
|
|
|
|
|
static void contextStateCallbackC(pa_context *context, void *pdata);
|
|
|
|
void contextStateCallback(pa_context *context);
|
|
|
|
|
|
|
|
static void streamStateCallbackC(pa_stream *stream, void *pdata);
|
|
|
|
void streamStateCallback(pa_stream *stream);
|
|
|
|
|
|
|
|
static void streamWriteCallbackC(pa_stream *stream, size_t nbytes, void *pdata);
|
|
|
|
void streamWriteCallback(pa_stream *stream, size_t nbytes);
|
|
|
|
|
|
|
|
static void sinkInfoCallbackC(pa_context *context, const pa_sink_info *info, int eol, void *pdata);
|
|
|
|
void sinkInfoCallback(pa_context *context, const pa_sink_info *info, int eol);
|
|
|
|
|
|
|
|
static void sinkNameCallbackC(pa_context *context, const pa_sink_info *info, int eol, void *pdata);
|
|
|
|
void sinkNameCallback(pa_context *context, const pa_sink_info *info, int eol);
|
|
|
|
|
|
|
|
static void streamMovedCallbackC(pa_stream *stream, void *pdata);
|
|
|
|
void streamMovedCallback(pa_stream *stream);
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCenum open(const ALCchar *name) override;
|
|
|
|
ALCboolean reset() override;
|
|
|
|
ALCboolean start() override;
|
|
|
|
void stop() override;
|
|
|
|
ClockLatency getClockLatency() override;
|
2018-12-29 17:29:52 -08:00
|
|
|
void lock() override;
|
|
|
|
void unlock() override;
|
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 12:58:01 -08:00
|
|
|
static constexpr inline const char *CurrentPrefix() noexcept { return "PulsePlayback::"; }
|
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-04-27 12:25:49 -07:00
|
|
|
pulse_close(mContext, mStream);
|
2018-12-27 23:37:24 -08:00
|
|
|
mContext = nullptr;
|
|
|
|
mStream = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::bufferAttrCallbackC(pa_stream *stream, void *pdata)
|
|
|
|
{ static_cast<PulsePlayback*>(pdata)->bufferAttrCallback(stream); }
|
2012-03-01 04:37:40 -08:00
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::bufferAttrCallback(pa_stream *stream)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::contextStateCallbackC(pa_context *context, void *pdata)
|
|
|
|
{ static_cast<PulsePlayback*>(pdata)->contextStateCallback(context); }
|
|
|
|
|
|
|
|
void PulsePlayback::contextStateCallback(pa_context *context)
|
2012-03-01 04:37:40 -08:00
|
|
|
{
|
2013-10-29 14:44:07 -07:00
|
|
|
if(pa_context_get_state(context) == PA_CONTEXT_FAILED)
|
2012-03-01 04:37:40 -08:00
|
|
|
{
|
2013-10-29 14:44:07 -07:00
|
|
|
ERR("Received context failure!\n");
|
2018-12-28 12:58:01 -08:00
|
|
|
aluHandleDisconnect(mDevice, "Playback state failure");
|
2012-03-01 04:37:40 -08:00
|
|
|
}
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.notify_all();
|
2012-03-01 04:37:40 -08:00
|
|
|
}
|
2009-10-31 17:52:26 -07:00
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::streamStateCallbackC(pa_stream *stream, void *pdata)
|
|
|
|
{ static_cast<PulsePlayback*>(pdata)->streamStateCallback(stream); }
|
|
|
|
|
|
|
|
void PulsePlayback::streamStateCallback(pa_stream *stream)
|
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-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.notify_all();
|
2012-06-16 22:32:19 -07:00
|
|
|
}
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::streamWriteCallbackC(pa_stream *stream, size_t nbytes, void *pdata)
|
|
|
|
{ static_cast<PulsePlayback*>(pdata)->streamWriteCallback(stream, nbytes); }
|
2018-12-25 16:31:31 -08:00
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::streamWriteCallback(pa_stream *stream, size_t nbytes)
|
|
|
|
{
|
2018-12-25 16:31:31 -08:00
|
|
|
void *buf{pa_xmalloc(nbytes)};
|
2018-12-28 12:58:01 -08:00
|
|
|
aluMixData(mDevice, buf, nbytes/mFrameSize);
|
2018-12-25 16:31:31 -08:00
|
|
|
|
|
|
|
int ret{pa_stream_write(stream, buf, nbytes, pa_xfree, 0, PA_SEEK_RELATIVE)};
|
|
|
|
if(UNLIKELY(ret != PA_OK))
|
|
|
|
ERR("Failed to write to stream: %d, %s\n", ret, pa_strerror(ret));
|
2014-07-26 22:04:26 -07:00
|
|
|
}
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::sinkInfoCallbackC(pa_context *context, const pa_sink_info *info, int eol, void *pdata)
|
|
|
|
{ static_cast<PulsePlayback*>(pdata)->sinkInfoCallback(context, info, eol); }
|
|
|
|
|
|
|
|
void PulsePlayback::sinkInfoCallback(pa_context* UNUSED(context), const pa_sink_info *info, int eol)
|
2012-03-01 04:12:47 -08:00
|
|
|
{
|
2018-10-31 20:09:14 -07:00
|
|
|
struct ChannelMap {
|
|
|
|
DevFmtChannels chans;
|
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{{
|
2015-09-04 21:43:50 -07:00
|
|
|
{ DevFmtX71, { 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
|
|
|
|
} } },
|
|
|
|
{ DevFmtX61, { 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
|
|
|
|
} } },
|
|
|
|
{ DevFmtX51, { 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
|
|
|
|
} } },
|
|
|
|
{ DevFmtX51Rear, { 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
|
|
|
|
} } },
|
|
|
|
{ DevFmtQuad, { 4, {
|
|
|
|
PA_CHANNEL_POSITION_FRONT_LEFT, PA_CHANNEL_POSITION_FRONT_RIGHT,
|
|
|
|
PA_CHANNEL_POSITION_REAR_LEFT, PA_CHANNEL_POSITION_REAR_RIGHT
|
|
|
|
} } },
|
|
|
|
{ DevFmtStereo, { 2, {
|
|
|
|
PA_CHANNEL_POSITION_FRONT_LEFT, PA_CHANNEL_POSITION_FRONT_RIGHT
|
|
|
|
} } },
|
|
|
|
{ DevFmtMono, { 1, {PA_CHANNEL_POSITION_MONO} } }
|
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-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.notify_all();
|
2013-10-29 14:44:07 -07:00
|
|
|
return;
|
2012-03-01 04:12:47 -08:00
|
|
|
}
|
|
|
|
|
2018-11-01 08:04:21 -07:00
|
|
|
auto chanmap = 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
|
|
|
);
|
2018-10-31 20:09:14 -07:00
|
|
|
if(chanmap != chanmaps.cend())
|
2012-03-01 04:12:47 -08:00
|
|
|
{
|
2018-12-28 12:58:01 -08:00
|
|
|
if(!(mDevice->Flags&DEVICE_CHANNELS_REQUEST))
|
|
|
|
mDevice->FmtChans = chanmap->chans;
|
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
|
|
|
}
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::sinkNameCallbackC(pa_context *context, const pa_sink_info *info, int eol, void *pdata)
|
|
|
|
{ static_cast<PulsePlayback*>(pdata)->sinkNameCallback(context, info, eol); }
|
2010-05-27 22:12:54 -07:00
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::sinkNameCallback(pa_context* UNUSED(context), const pa_sink_info *info, int eol)
|
|
|
|
{
|
2013-10-29 14:44:07 -07:00
|
|
|
if(eol)
|
2010-05-27 22:12:54 -07:00
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.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
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::streamMovedCallbackC(pa_stream *stream, void *pdata)
|
|
|
|
{ static_cast<PulsePlayback*>(pdata)->streamMovedCallback(stream); }
|
2010-05-27 22:12:54 -07:00
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulsePlayback::streamMovedCallback(pa_stream *stream)
|
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
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCenum 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())
|
2018-12-27 23:37:24 -08:00
|
|
|
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(),
|
2018-10-31 20:09:14 -07:00
|
|
|
[name](const DevMap &entry) -> bool
|
|
|
|
{ return entry.name == name; }
|
2018-11-01 08:04:21 -07:00
|
|
|
);
|
2018-10-31 20:09:14 -07:00
|
|
|
if(iter == PlaybackDevices.cend())
|
2011-08-24 14:24:48 -07:00
|
|
|
return ALC_INVALID_VALUE;
|
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-04-27 12:25:49 -07:00
|
|
|
mContext = pulse_open(&PulsePlayback::contextStateCallbackC, this);
|
|
|
|
if(!mContext) return ALC_INVALID_VALUE;
|
2009-09-27 00:21:40 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
2012-03-01 04:37:40 -08:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_stream_flags_t flags{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;
|
|
|
|
|
2014-04-21 20:26:29 -07:00
|
|
|
TRACE("Connecting to \"%s\"\n", pulse_name ? pulse_name : "(default)");
|
2018-12-27 23:37:24 -08:00
|
|
|
if(!pulse_name)
|
|
|
|
{
|
|
|
|
pulse_name = getenv("ALSOFT_PULSE_DEFAULT");
|
|
|
|
if(pulse_name && !pulse_name[0]) pulse_name = nullptr;
|
|
|
|
}
|
2019-04-27 12:25:49 -07:00
|
|
|
mStream = pulse_connect_stream(pulse_name, plock, mContext, flags, nullptr, &spec, nullptr,
|
2018-12-29 01:38:26 -08:00
|
|
|
BackendType::Playback);
|
2018-12-28 22:56:20 -08:00
|
|
|
if(!mStream)
|
2012-03-01 04:37:40 -08:00
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
plock.unlock();
|
|
|
|
pulse_close(mContext, mStream);
|
2018-12-28 22:56:20 -08:00
|
|
|
mContext = nullptr;
|
2012-03-01 04:37:40 -08:00
|
|
|
return ALC_INVALID_VALUE;
|
|
|
|
}
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_set_moved_callback(mStream, &PulsePlayback::streamMovedCallbackC, this);
|
|
|
|
mFrameSize = 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-04-27 12:25:49 -07:00
|
|
|
wait_for_operation(op, plock);
|
2015-09-03 14:59:59 -07:00
|
|
|
}
|
|
|
|
else
|
2018-12-28 22:56:20 -08:00
|
|
|
mDevice->DeviceName = dev_name;
|
2012-06-16 22:32:19 -07:00
|
|
|
|
2011-08-24 14:24:48 -07:00
|
|
|
return ALC_NO_ERROR;
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-04-16 05:17:42 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCboolean PulsePlayback::reset()
|
2009-08-13 12:28:46 -07:00
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
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-04-27 12:25:49 -07:00
|
|
|
wait_for_operation(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) ||
|
|
|
|
!(mDevice->Flags&DEVICE_FREQUENCY_REQUEST))
|
2009-12-27 11:05:59 -08:00
|
|
|
flags |= PA_STREAM_FIX_RATE;
|
2009-08-13 17:08:47 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
switch(mDevice->FmtType)
|
2009-08-13 17:08:47 -07:00
|
|
|
{
|
2010-12-04 19:50:00 -08:00
|
|
|
case DevFmtByte:
|
2018-12-28 22:56:20 -08:00
|
|
|
mDevice->FmtType = DevFmtUByte;
|
2010-12-04 19:50:00 -08:00
|
|
|
/* fall-through */
|
|
|
|
case DevFmtUByte:
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.format = PA_SAMPLE_U8;
|
2009-08-13 17:08:47 -07:00
|
|
|
break;
|
2010-12-04 19:50:00 -08:00
|
|
|
case DevFmtUShort:
|
2018-12-28 22:56:20 -08:00
|
|
|
mDevice->FmtType = DevFmtShort;
|
2010-12-04 19:50:00 -08:00
|
|
|
/* fall-through */
|
|
|
|
case DevFmtShort:
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.format = PA_SAMPLE_S16NE;
|
2009-08-13 17:08:47 -07:00
|
|
|
break;
|
2012-02-14 11:44:57 -08:00
|
|
|
case DevFmtUInt:
|
2018-12-28 22:56:20 -08:00
|
|
|
mDevice->FmtType = DevFmtInt;
|
2012-02-14 11:44:57 -08:00
|
|
|
/* fall-through */
|
|
|
|
case DevFmtInt:
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.format = PA_SAMPLE_S32NE;
|
2012-02-14 11:44:57 -08:00
|
|
|
break;
|
2010-12-04 19:50:00 -08:00
|
|
|
case DevFmtFloat:
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.format = PA_SAMPLE_FLOAT32NE;
|
2009-08-15 13:20:35 -07:00
|
|
|
break;
|
2009-08-13 17:08:47 -07:00
|
|
|
}
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.rate = mDevice->Frequency;
|
|
|
|
mSpec.channels = mDevice->channelsFromFmt();
|
2009-08-13 17:08:47 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
if(pa_sample_spec_valid(&mSpec) == 0)
|
2009-08-13 17:08:47 -07:00
|
|
|
{
|
2011-07-13 01:43:00 -07:00
|
|
|
ERR("Invalid sample format\n");
|
2009-08-13 17:08:47 -07:00
|
|
|
return ALC_FALSE;
|
|
|
|
}
|
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
const char *mapname{nullptr};
|
|
|
|
pa_channel_map chanmap;
|
2018-12-28 22:56:20 -08:00
|
|
|
switch(mDevice->FmtChans)
|
2009-10-31 19:29:41 -07:00
|
|
|
{
|
2013-02-08 18:59:48 -08:00
|
|
|
case DevFmtMono:
|
|
|
|
mapname = "mono";
|
|
|
|
break;
|
2017-04-12 18:26:07 -07:00
|
|
|
case DevFmtAmbi3D:
|
2018-12-28 22:56:20 -08:00
|
|
|
mDevice->FmtChans = DevFmtStereo;
|
2014-11-25 22:20:00 -08:00
|
|
|
/*fall-through*/
|
2013-02-08 18:59:48 -08:00
|
|
|
case DevFmtStereo:
|
|
|
|
mapname = "front-left,front-right";
|
|
|
|
break;
|
|
|
|
case DevFmtQuad:
|
|
|
|
mapname = "front-left,front-right,rear-left,rear-right";
|
|
|
|
break;
|
|
|
|
case DevFmtX51:
|
|
|
|
mapname = "front-left,front-right,front-center,lfe,side-left,side-right";
|
|
|
|
break;
|
2014-11-07 00:54:16 -08:00
|
|
|
case DevFmtX51Rear:
|
|
|
|
mapname = "front-left,front-right,front-center,lfe,rear-left,rear-right";
|
|
|
|
break;
|
2013-02-08 18:59:48 -08:00
|
|
|
case DevFmtX61:
|
|
|
|
mapname = "front-left,front-right,front-center,lfe,rear-center,side-left,side-right";
|
|
|
|
break;
|
|
|
|
case DevFmtX71:
|
|
|
|
mapname = "front-left,front-right,front-center,lfe,rear-left,rear-right,side-left,side-right";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(!pa_channel_map_parse(&chanmap, mapname))
|
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
ERR("Failed to build channel map for %s\n", DevFmtChannelsString(mDevice->FmtChans));
|
2009-10-31 19:29:41 -07:00
|
|
|
return ALC_FALSE;
|
|
|
|
}
|
2018-12-28 22:56:20 -08:00
|
|
|
SetDefaultWFXChannelOrder(mDevice);
|
2009-10-31 19:29:41 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
mAttr.maxlength = -1;
|
2019-04-26 15:58:25 -07:00
|
|
|
mAttr.tlength = mDevice->BufferSize * pa_frame_size(&mSpec);
|
2018-12-28 22:56:20 -08:00
|
|
|
mAttr.prebuf = 0;
|
2019-04-26 15:58:25 -07:00
|
|
|
mAttr.minreq = mDevice->UpdateSize * pa_frame_size(&mSpec);
|
2018-12-28 22:56:20 -08:00
|
|
|
mAttr.fragsize = -1;
|
2012-02-29 06:51:21 -08:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
mStream = pulse_connect_stream(mDeviceName.c_str(), plock, mContext, flags, &mAttr, &mSpec,
|
2018-12-29 01:38:26 -08:00
|
|
|
&chanmap, BackendType::Playback);
|
2018-12-28 22:56:20 -08:00
|
|
|
if(!mStream) return ALC_FALSE;
|
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));
|
|
|
|
mFrameSize = 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
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
mAttr.maxlength = -1;
|
2019-04-26 18:04:22 -07:00
|
|
|
mAttr.tlength = buflen * mFrameSize;
|
2018-12-28 22:56:20 -08:00
|
|
|
mAttr.prebuf = 0;
|
2019-04-26 18:04:22 -07:00
|
|
|
mAttr.minreq = perlen * mFrameSize;
|
2009-12-24 15:35:22 -08:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
op = pa_stream_set_buffer_attr(mStream, &mAttr, stream_success_callback, nullptr);
|
|
|
|
wait_for_operation(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
|
|
|
|
2016-03-31 16:21:49 -07:00
|
|
|
/* HACK: prebuf should be 0 as that's what we set it to. However on some
|
|
|
|
* systems it comes back as non-0, so we have to make sure the device will
|
|
|
|
* write enough audio to start playback. The lack of manual start control
|
|
|
|
* may have unintended consequences, but it's better than not starting at
|
|
|
|
* all.
|
|
|
|
*/
|
2018-12-28 22:56:20 -08:00
|
|
|
if(mAttr.prebuf != 0)
|
2016-03-31 16:21:49 -07:00
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
ALuint len{mAttr.prebuf / mFrameSize};
|
2019-04-26 15:58:25 -07:00
|
|
|
if(len <= mDevice->BufferSize)
|
2016-03-31 16:21:49 -07:00
|
|
|
ERR("Non-0 prebuf, %u samples (%u bytes), device has %u samples\n",
|
2019-04-26 15:58:25 -07:00
|
|
|
len, mAttr.prebuf, mDevice->BufferSize);
|
2016-03-31 16:21:49 -07:00
|
|
|
}
|
|
|
|
|
2012-03-05 07:11:09 -08:00
|
|
|
return ALC_TRUE;
|
|
|
|
}
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCboolean PulsePlayback::start()
|
2012-03-05 07:11:09 -08:00
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
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-04-27 12:25:49 -07:00
|
|
|
pa_operation *op{pa_stream_cork(mStream, 0, stream_success_callback, nullptr)};
|
|
|
|
wait_for_operation(op, plock);
|
2018-12-25 16:31:31 -08:00
|
|
|
|
|
|
|
return ALC_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-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_set_write_callback(mStream, nullptr, nullptr);
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_operation *op{pa_stream_cork(mStream, 1, stream_success_callback, nullptr)};
|
|
|
|
wait_for_operation(op, plock);
|
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-04-27 12:25:49 -07:00
|
|
|
{ std::lock_guard<std::mutex> _{pulse_lock};
|
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
|
|
|
|
|
|
|
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
|
|
|
}
|
2018-03-14 23:48:46 -07:00
|
|
|
else if(UNLIKELY(neg))
|
|
|
|
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-29 17:29:52 -08:00
|
|
|
void PulsePlayback::lock()
|
2019-04-27 12:25:49 -07:00
|
|
|
{ pulse_lock.lock(); }
|
2014-04-23 03:52:05 -07:00
|
|
|
|
2018-12-29 17:29:52 -08:00
|
|
|
void PulsePlayback::unlock()
|
2019-04-27 12:25:49 -07:00
|
|
|
{ pulse_lock.unlock(); }
|
2013-10-29 14:44:07 -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;
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
static void contextStateCallbackC(pa_context *context, void *pdata);
|
|
|
|
void contextStateCallback(pa_context *context);
|
|
|
|
|
|
|
|
static void streamStateCallbackC(pa_stream *stream, void *pdata);
|
|
|
|
void streamStateCallback(pa_stream *stream);
|
|
|
|
|
|
|
|
static void sourceNameCallbackC(pa_context *context, const pa_source_info *info, int eol, void *pdata);
|
|
|
|
void sourceNameCallback(pa_context *context, const pa_source_info *info, int eol);
|
|
|
|
|
|
|
|
static void streamMovedCallbackC(pa_stream *stream, void *pdata);
|
|
|
|
void streamMovedCallback(pa_stream *stream);
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCenum open(const ALCchar *name) override;
|
|
|
|
ALCboolean start() override;
|
|
|
|
void stop() override;
|
|
|
|
ALCenum captureSamples(ALCvoid *buffer, ALCuint samples) override;
|
|
|
|
ALCuint availableSamples() override;
|
|
|
|
ClockLatency getClockLatency() override;
|
2018-12-29 17:29:52 -08:00
|
|
|
void lock() override;
|
|
|
|
void unlock() override;
|
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
|
|
|
const void *mCapStore{nullptr};
|
|
|
|
size_t mCapLen{0u};
|
|
|
|
size_t mCapRemain{0u};
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-12-27 17:09:14 -08:00
|
|
|
ALCuint mLastReadable{0u};
|
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 12:58:01 -08:00
|
|
|
static constexpr inline const char *CurrentPrefix() noexcept { return "PulseCapture::"; }
|
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
|
|
|
|
|
|
|
pulse_close(mContext, mStream);
|
2018-12-27 23:37:24 -08:00
|
|
|
mContext = nullptr;
|
|
|
|
mStream = nullptr;
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulseCapture::contextStateCallbackC(pa_context *context, void *pdata)
|
|
|
|
{ static_cast<PulseCapture*>(pdata)->contextStateCallback(context); }
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulseCapture::contextStateCallback(pa_context *context)
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
|
|
|
if(pa_context_get_state(context) == PA_CONTEXT_FAILED)
|
|
|
|
{
|
|
|
|
ERR("Received context failure!\n");
|
2018-12-28 12:58:01 -08:00
|
|
|
aluHandleDisconnect(mDevice, "Capture state failure");
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.notify_all();
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulseCapture::streamStateCallbackC(pa_stream *stream, void *pdata)
|
|
|
|
{ static_cast<PulseCapture*>(pdata)->streamStateCallback(stream); }
|
|
|
|
|
|
|
|
void PulseCapture::streamStateCallback(pa_stream *stream)
|
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-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.notify_all();
|
2013-10-29 14:44:07 -07:00
|
|
|
}
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulseCapture::sourceNameCallbackC(pa_context *context, const pa_source_info *info, int eol, void *pdata)
|
|
|
|
{ static_cast<PulseCapture*>(pdata)->sourceNameCallback(context, info, eol); }
|
2013-10-29 14:44:07 -07:00
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulseCapture::sourceNameCallback(pa_context* UNUSED(context), const pa_source_info *info, int eol)
|
2013-10-29 14:44:07 -07:00
|
|
|
{
|
|
|
|
if(eol)
|
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
pulse_condvar.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
|
|
|
}
|
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulseCapture::streamMovedCallbackC(pa_stream *stream, void *pdata)
|
|
|
|
{ static_cast<PulseCapture*>(pdata)->streamMovedCallback(stream); }
|
2009-08-13 17:08:47 -07:00
|
|
|
|
2018-12-28 12:58:01 -08:00
|
|
|
void PulseCapture::streamMovedCallback(pa_stream *stream)
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCenum 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())
|
2018-12-27 23:37:24 -08:00
|
|
|
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(),
|
|
|
|
[name](const DevMap &entry) -> bool
|
|
|
|
{ return entry.name == name; }
|
|
|
|
);
|
|
|
|
if(iter == CaptureDevices.cend())
|
2011-08-24 14:44:15 -07:00
|
|
|
return ALC_INVALID_VALUE;
|
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-04-27 12:25:49 -07:00
|
|
|
mContext = pulse_open(&PulseCapture::contextStateCallbackC, this);
|
|
|
|
if(!mContext) return ALC_INVALID_VALUE;
|
2009-08-13 17:08:47 -07:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
2009-08-13 17:08:47 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
switch(mDevice->FmtType)
|
2009-08-13 17:08:47 -07:00
|
|
|
{
|
2010-12-04 19:50:00 -08:00
|
|
|
case DevFmtUByte:
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.format = PA_SAMPLE_U8;
|
2009-08-13 17:08:47 -07:00
|
|
|
break;
|
2010-12-04 19:50:00 -08:00
|
|
|
case DevFmtShort:
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.format = PA_SAMPLE_S16NE;
|
2009-08-13 17:08:47 -07:00
|
|
|
break;
|
2012-02-14 11:44:57 -08:00
|
|
|
case DevFmtInt:
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.format = PA_SAMPLE_S32NE;
|
2012-02-14 11:44:57 -08:00
|
|
|
break;
|
2010-12-04 19:50:00 -08:00
|
|
|
case DevFmtFloat:
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.format = PA_SAMPLE_FLOAT32NE;
|
2009-09-21 02:31:33 -07:00
|
|
|
break;
|
2010-12-04 19:50:00 -08:00
|
|
|
case DevFmtByte:
|
|
|
|
case DevFmtUShort:
|
2012-02-14 11:44:57 -08:00
|
|
|
case DevFmtUInt:
|
2018-12-28 22:56:20 -08:00
|
|
|
ERR("%s capture samples not supported\n", DevFmtTypeString(mDevice->FmtType));
|
2018-10-31 20:09:14 -07:00
|
|
|
return ALC_INVALID_VALUE;
|
2009-08-13 17:08:47 -07:00
|
|
|
}
|
|
|
|
|
2018-10-31 20:09:14 -07:00
|
|
|
const char *mapname{nullptr};
|
|
|
|
pa_channel_map chanmap;
|
2018-12-28 22:56:20 -08:00
|
|
|
switch(mDevice->FmtChans)
|
2017-04-12 18:26:07 -07:00
|
|
|
{
|
|
|
|
case DevFmtMono:
|
|
|
|
mapname = "mono";
|
|
|
|
break;
|
|
|
|
case DevFmtStereo:
|
|
|
|
mapname = "front-left,front-right";
|
|
|
|
break;
|
|
|
|
case DevFmtQuad:
|
|
|
|
mapname = "front-left,front-right,rear-left,rear-right";
|
|
|
|
break;
|
|
|
|
case DevFmtX51:
|
|
|
|
mapname = "front-left,front-right,front-center,lfe,side-left,side-right";
|
|
|
|
break;
|
|
|
|
case DevFmtX51Rear:
|
|
|
|
mapname = "front-left,front-right,front-center,lfe,rear-left,rear-right";
|
|
|
|
break;
|
|
|
|
case DevFmtX61:
|
|
|
|
mapname = "front-left,front-right,front-center,lfe,rear-center,side-left,side-right";
|
|
|
|
break;
|
|
|
|
case DevFmtX71:
|
|
|
|
mapname = "front-left,front-right,front-center,lfe,rear-left,rear-right,side-left,side-right";
|
|
|
|
break;
|
|
|
|
case DevFmtAmbi3D:
|
2018-12-28 22:56:20 -08:00
|
|
|
ERR("%s capture samples not supported\n", DevFmtChannelsString(mDevice->FmtChans));
|
2018-10-31 20:09:14 -07:00
|
|
|
return ALC_INVALID_VALUE;
|
2017-04-12 18:26:07 -07:00
|
|
|
}
|
|
|
|
if(!pa_channel_map_parse(&chanmap, mapname))
|
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
ERR("Failed to build channel map for %s\n", DevFmtChannelsString(mDevice->FmtChans));
|
2018-10-31 20:09:14 -07:00
|
|
|
return ALC_INVALID_VALUE;
|
2017-04-12 18:26:07 -07:00
|
|
|
}
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
mSpec.rate = mDevice->Frequency;
|
|
|
|
mSpec.channels = mDevice->channelsFromFmt();
|
2017-04-12 18:26:07 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
if(pa_sample_spec_valid(&mSpec) == 0)
|
2009-08-13 17:08:47 -07:00
|
|
|
{
|
2011-07-13 01:43:00 -07:00
|
|
|
ERR("Invalid sample format\n");
|
2018-10-31 20:09:14 -07:00
|
|
|
return ALC_INVALID_VALUE;
|
2009-08-13 17:08:47 -07:00
|
|
|
}
|
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
if(!pa_channel_map_init_auto(&chanmap, mSpec.channels, PA_CHANNEL_MAP_WAVEEX))
|
2009-12-26 09:17:03 -08:00
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
ERR("Couldn't build map for channel count (%d)!\n", mSpec.channels);
|
2018-10-31 20:09:14 -07:00
|
|
|
return ALC_INVALID_VALUE;
|
2009-12-26 09:17:03 -08:00
|
|
|
}
|
|
|
|
|
2019-04-26 15:58:25 -07:00
|
|
|
ALuint samples{mDevice->BufferSize};
|
2018-12-28 22:56:20 -08:00
|
|
|
samples = maxu(samples, 100 * mDevice->Frequency / 1000);
|
2012-02-29 06:51:21 -08:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
mAttr.minreq = -1;
|
|
|
|
mAttr.prebuf = -1;
|
|
|
|
mAttr.maxlength = samples * pa_frame_size(&mSpec);
|
|
|
|
mAttr.tlength = -1;
|
|
|
|
mAttr.fragsize = minu(samples, 50*mDevice->Frequency/1000) * pa_frame_size(&mSpec);
|
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-04-27 12:25:49 -07:00
|
|
|
mStream = pulse_connect_stream(pulse_name, plock, mContext, flags, &mAttr, &mSpec, &chanmap,
|
2018-12-29 01:38:26 -08:00
|
|
|
BackendType::Capture);
|
2018-12-28 22:56:20 -08:00
|
|
|
if(!mStream) return ALC_INVALID_VALUE;
|
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-04-27 12:25:49 -07:00
|
|
|
wait_for_operation(op, plock);
|
2015-09-03 14:59:59 -07:00
|
|
|
}
|
2012-03-01 04:37:40 -08:00
|
|
|
|
2011-08-24 14:44:15 -07:00
|
|
|
return ALC_NO_ERROR;
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-04-16 05:17:42 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCboolean PulseCapture::start()
|
2009-04-16 05:17:42 -07:00
|
|
|
{
|
2019-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
|
|
|
pa_operation *op{pa_stream_cork(mStream, 0, stream_success_callback, nullptr)};
|
|
|
|
wait_for_operation(op, plock);
|
2013-10-29 14:44:07 -07:00
|
|
|
return ALC_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-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
|
|
|
pa_operation *op{pa_stream_cork(mStream, 1, stream_success_callback, nullptr)};
|
|
|
|
wait_for_operation(op, plock);
|
2012-03-02 09:08:17 -08:00
|
|
|
}
|
2009-04-16 05:17:42 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCenum PulseCapture::captureSamples(ALCvoid *buffer, ALCuint samples)
|
2011-09-18 20:27:34 -07:00
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
ALCuint todo{samples * static_cast<ALCuint>(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 */
|
2018-12-28 22:56:20 -08:00
|
|
|
mLastReadable -= todo;
|
2019-04-27 12:25:49 -07:00
|
|
|
std::lock_guard<std::mutex> _{pulse_lock};
|
2012-02-29 05:57:54 -08:00
|
|
|
while(todo > 0)
|
2009-12-25 17:56:57 -08:00
|
|
|
{
|
2018-11-01 08:04:21 -07:00
|
|
|
size_t rem{todo};
|
2010-06-04 00:27:31 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
if(mCapLen == 0)
|
2009-12-25 17:56:57 -08:00
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_state_t state{pa_stream_get_state(mStream)};
|
2012-02-29 05:57:54 -08:00
|
|
|
if(!PA_STREAM_IS_GOOD(state))
|
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
aluHandleDisconnect(mDevice, "Bad capture state: %u", state);
|
2018-10-31 20:09:14 -07:00
|
|
|
return ALC_INVALID_DEVICE;
|
2012-02-29 05:57:54 -08:00
|
|
|
}
|
2018-12-28 22:56:20 -08:00
|
|
|
if(pa_stream_peek(mStream, &mCapStore, &mCapLen) < 0)
|
2012-02-29 05:57:54 -08:00
|
|
|
{
|
|
|
|
ERR("pa_stream_peek() failed: %s\n",
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_strerror(pa_context_errno(mContext)));
|
|
|
|
aluHandleDisconnect(mDevice, "Failed retrieving capture samples: %s",
|
|
|
|
pa_strerror(pa_context_errno(mContext)));
|
2018-10-31 20:09:14 -07:00
|
|
|
return ALC_INVALID_DEVICE;
|
2012-02-29 05:57:54 -08:00
|
|
|
}
|
2018-12-28 22:56:20 -08:00
|
|
|
mCapRemain = mCapLen;
|
2009-12-25 17:56:57 -08:00
|
|
|
}
|
2018-12-28 22:56:20 -08:00
|
|
|
rem = minz(rem, mCapRemain);
|
2012-02-29 05:57:54 -08:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
memcpy(buffer, mCapStore, rem);
|
2012-02-29 05:57:54 -08:00
|
|
|
|
2019-01-08 19:42:44 +01:00
|
|
|
buffer = static_cast<ALbyte*>(buffer) + rem;
|
2012-02-29 05:57:54 -08:00
|
|
|
todo -= rem;
|
|
|
|
|
2019-01-08 19:42:44 +01:00
|
|
|
mCapStore = reinterpret_cast<const ALbyte*>(mCapStore) + rem;
|
2018-12-28 22:56:20 -08:00
|
|
|
mCapRemain -= rem;
|
|
|
|
if(mCapRemain == 0)
|
2012-02-29 05:57:54 -08:00
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
pa_stream_drop(mStream);
|
|
|
|
mCapLen = 0;
|
2012-02-29 05:57:54 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(todo > 0)
|
2018-12-28 22:56:20 -08:00
|
|
|
memset(buffer, ((mDevice->FmtType==DevFmtUByte) ? 0x80 : 0), todo);
|
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
|
|
|
{
|
2018-12-28 22:56:20 -08:00
|
|
|
size_t readable{mCapRemain};
|
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-04-27 12:25:49 -07:00
|
|
|
std::lock_guard<std::mutex> _{pulse_lock};
|
2018-12-28 22:56:20 -08:00
|
|
|
size_t got{pa_stream_readable_size(mStream)};
|
2018-11-01 08:04:21 -07:00
|
|
|
if(static_cast<ssize_t>(got) < 0)
|
2012-03-05 00:11:28 -08:00
|
|
|
{
|
|
|
|
ERR("pa_stream_readable_size() failed: %s\n", pa_strerror(got));
|
2018-12-28 22:56:20 -08:00
|
|
|
aluHandleDisconnect(mDevice, "Failed getting readable size: %s", pa_strerror(got));
|
2012-03-05 00:11:28 -08:00
|
|
|
}
|
2018-12-28 22:56:20 -08:00
|
|
|
else if(got > mCapLen)
|
|
|
|
readable += got - mCapLen;
|
2009-12-25 17:56:57 -08:00
|
|
|
}
|
2010-06-04 00:27:31 -07:00
|
|
|
|
2018-12-28 22:56:20 -08:00
|
|
|
if(mLastReadable < readable)
|
|
|
|
mLastReadable = readable;
|
|
|
|
return mLastReadable / 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-04-27 12:25:49 -07:00
|
|
|
{ std::lock_guard<std::mutex> _{pulse_lock};
|
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
|
|
|
|
|
|
|
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
|
|
|
}
|
2018-03-14 23:48:46 -07:00
|
|
|
else if(UNLIKELY(neg))
|
|
|
|
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-29 17:29:52 -08:00
|
|
|
void PulseCapture::lock()
|
2019-04-27 12:25:49 -07:00
|
|
|
{ pulse_lock.lock(); }
|
2014-04-23 03:52:05 -07:00
|
|
|
|
2018-12-29 17:29:52 -08:00
|
|
|
void PulseCapture::unlock()
|
2019-04-27 12:25:49 -07:00
|
|
|
{ pulse_lock.unlock(); }
|
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-04-27 12:25:49 -07:00
|
|
|
std::unique_lock<std::mutex> plock{pulse_lock};
|
2012-03-05 13:00:51 -08:00
|
|
|
|
2019-04-27 12:25:49 -07:00
|
|
|
pa_context *context{connect_context(plock, AL_TRUE)};
|
|
|
|
if(!context) return false;
|
|
|
|
|
|
|
|
pa_context_disconnect(context);
|
|
|
|
pa_context_unref(context);
|
|
|
|
|
|
|
|
return true;
|
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
|
|
|
};
|
2011-06-14 04:02:58 -07:00
|
|
|
switch(type)
|
2010-08-04 04:21:39 -07:00
|
|
|
{
|
2019-03-19 00:24:54 -07:00
|
|
|
case DevProbe::Playback:
|
2018-12-27 23:37:24 -08:00
|
|
|
probePlaybackDevices();
|
2018-10-31 20:09:14 -07:00
|
|
|
std::for_each(PlaybackDevices.cbegin(), PlaybackDevices.cend(), add_device);
|
2011-06-14 04:02:58 -07:00
|
|
|
break;
|
2010-05-30 21:05:05 -07:00
|
|
|
|
2019-03-19 00:24:54 -07:00
|
|
|
case DevProbe::Capture:
|
2018-12-27 23:37:24 -08:00
|
|
|
probeCaptureDevices();
|
2018-10-31 20:09:14 -07:00
|
|
|
std::for_each(CaptureDevices.cbegin(), CaptureDevices.cend(), add_device);
|
2011-06-14 04:02:58 -07:00
|
|
|
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
|
|
|
}
|