2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2005-03-13 20:23:09 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2005-03-13 20:23:09 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-29 16:59:21 +01:00
|
|
|
#include "OSXOutputPlugin.hxx"
|
2014-01-23 23:49:50 +01:00
|
|
|
#include "../OutputAPI.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
|
|
|
#include "util/Domain.hxx"
|
2013-01-29 16:59:21 +01:00
|
|
|
#include "thread/Mutex.hxx"
|
|
|
|
#include "thread/Cond.hxx"
|
2013-10-16 21:09:19 +02:00
|
|
|
#include "system/ByteOrder.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2005-03-16 05:46:41 +01:00
|
|
|
|
2016-07-02 23:35:44 +02:00
|
|
|
#include <CoreAudio/CoreAudio.h>
|
2008-10-26 21:58:37 +01:00
|
|
|
#include <AudioUnit/AudioUnit.h>
|
2009-09-20 23:30:37 +02:00
|
|
|
#include <CoreServices/CoreServices.h>
|
2008-10-26 21:58:37 +01:00
|
|
|
|
2016-08-05 23:42:25 +02:00
|
|
|
#include<boost/lockfree/spsc_queue.hpp>
|
|
|
|
|
2013-01-29 16:59:21 +01:00
|
|
|
struct OSXOutput {
|
2014-01-28 11:34:09 +01:00
|
|
|
AudioOutput base;
|
2011-09-16 23:31:48 +02:00
|
|
|
|
2010-12-21 04:21:46 +01:00
|
|
|
/* configuration settings */
|
|
|
|
OSType component_subtype;
|
|
|
|
/* only applicable with kAudioUnitSubType_HALOutput */
|
|
|
|
const char *device_name;
|
2016-07-09 13:03:41 +02:00
|
|
|
const char *channel_map;
|
2010-12-21 04:21:46 +01:00
|
|
|
|
2016-07-02 23:35:44 +02:00
|
|
|
AudioComponentInstance au;
|
2016-07-07 23:53:05 +02:00
|
|
|
AudioStreamBasicDescription asbd;
|
2016-08-05 23:42:25 +02:00
|
|
|
|
2013-01-29 16:59:21 +01:00
|
|
|
Mutex mutex;
|
|
|
|
Cond condition;
|
2012-04-05 00:45:39 +02:00
|
|
|
|
2016-08-05 23:42:25 +02:00
|
|
|
boost::lockfree::spsc_queue<uint8_t> *ring_buffer;
|
|
|
|
size_t render_buffer_size;
|
|
|
|
uint8_t *render_buffer;
|
2014-01-28 23:39:48 +01:00
|
|
|
|
|
|
|
OSXOutput()
|
|
|
|
:base(osx_output_plugin) {}
|
2009-02-26 21:03:06 +01:00
|
|
|
};
|
2005-03-13 20:23:09 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
static constexpr Domain osx_output_domain("osx_output");
|
2009-02-26 22:04:59 +01:00
|
|
|
|
2016-07-03 14:06:53 +02:00
|
|
|
static void
|
|
|
|
osx_os_status_to_cstring(OSStatus status, char *str, size_t size) {
|
|
|
|
CFErrorRef cferr = CFErrorCreate(nullptr, kCFErrorDomainOSStatus, status, nullptr);
|
|
|
|
CFStringRef cfstr = CFErrorCopyDescription(cferr);
|
|
|
|
if (!CFStringGetCString(cfstr, str, size, kCFStringEncodingUTF8)) {
|
|
|
|
/* conversion failed, return empty string */
|
|
|
|
*str = '\0';
|
|
|
|
}
|
|
|
|
if (cferr)
|
|
|
|
CFRelease(cferr);
|
|
|
|
if (cfstr)
|
|
|
|
CFRelease(cfstr);
|
|
|
|
}
|
|
|
|
|
2009-02-26 21:03:06 +01:00
|
|
|
static bool
|
|
|
|
osx_output_test_default_device(void)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-02-26 21:33:13 +01:00
|
|
|
/* on a Mac, this is always the default plugin, if nothing
|
|
|
|
else is configured */
|
2008-10-29 20:40:27 +01:00
|
|
|
return true;
|
2005-03-13 22:33:55 +01:00
|
|
|
}
|
|
|
|
|
2010-12-21 04:21:46 +01:00
|
|
|
static void
|
2015-01-21 22:13:44 +01:00
|
|
|
osx_output_configure(OSXOutput *oo, const ConfigBlock &block)
|
2010-12-21 04:21:46 +01:00
|
|
|
{
|
2015-01-21 22:13:44 +01:00
|
|
|
const char *device = block.GetBlockValue("device");
|
2010-12-21 04:21:46 +01:00
|
|
|
|
2014-12-31 11:47:27 +01:00
|
|
|
if (device == nullptr || 0 == strcmp(device, "default")) {
|
2010-12-21 04:21:46 +01:00
|
|
|
oo->component_subtype = kAudioUnitSubType_DefaultOutput;
|
2014-12-31 11:47:27 +01:00
|
|
|
oo->device_name = nullptr;
|
2010-12-21 04:21:46 +01:00
|
|
|
}
|
|
|
|
else if (0 == strcmp(device, "system")) {
|
|
|
|
oo->component_subtype = kAudioUnitSubType_SystemOutput;
|
2014-12-31 11:47:27 +01:00
|
|
|
oo->device_name = nullptr;
|
2010-12-21 04:21:46 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
oo->component_subtype = kAudioUnitSubType_HALOutput;
|
2014-01-07 23:33:46 +01:00
|
|
|
/* XXX am I supposed to strdup() this? */
|
2010-12-21 04:21:46 +01:00
|
|
|
oo->device_name = device;
|
|
|
|
}
|
2016-07-09 13:03:41 +02:00
|
|
|
|
|
|
|
oo->channel_map = block.GetBlockValue("channel_map");
|
2010-12-21 04:21:46 +01:00
|
|
|
}
|
|
|
|
|
2014-01-28 11:34:09 +01:00
|
|
|
static AudioOutput *
|
2015-01-21 22:13:44 +01:00
|
|
|
osx_output_init(const ConfigBlock &block, Error &error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-01-29 16:59:21 +01:00
|
|
|
OSXOutput *oo = new OSXOutput();
|
2015-01-21 22:13:44 +01:00
|
|
|
if (!oo->base.Configure(block, error)) {
|
2013-01-29 16:59:21 +01:00
|
|
|
delete oo;
|
2014-12-31 11:47:27 +01:00
|
|
|
return nullptr;
|
2011-09-16 23:31:48 +02:00
|
|
|
}
|
2009-02-26 21:03:06 +01:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
osx_output_configure(oo, block);
|
2009-02-26 21:03:06 +01:00
|
|
|
|
2011-09-16 23:31:48 +02:00
|
|
|
return &oo->base;
|
2005-03-13 20:23:09 +01:00
|
|
|
}
|
|
|
|
|
2011-09-16 23:31:48 +02:00
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
osx_output_finish(AudioOutput *ao)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-01-29 16:59:21 +01:00
|
|
|
OSXOutput *oo = (OSXOutput *)ao;
|
2009-02-26 21:03:06 +01:00
|
|
|
|
2013-01-29 16:59:21 +01:00
|
|
|
delete oo;
|
2005-03-13 20:23:09 +01:00
|
|
|
}
|
|
|
|
|
2016-07-09 13:03:41 +02:00
|
|
|
static bool
|
|
|
|
osx_output_parse_channel_map(
|
|
|
|
const char *device_name,
|
|
|
|
const char *channel_map_str,
|
|
|
|
SInt32 channel_map[],
|
|
|
|
UInt32 num_channels,
|
|
|
|
Error &error)
|
|
|
|
{
|
|
|
|
char *endptr;
|
|
|
|
unsigned int inserted_channels = 0;
|
|
|
|
bool want_number = true;
|
|
|
|
|
|
|
|
while (*channel_map_str) {
|
|
|
|
if (inserted_channels >= num_channels) {
|
|
|
|
error.Format(osx_output_domain,
|
|
|
|
"%s: channel map contains more than %u entries or trailing garbage",
|
|
|
|
device_name, num_channels);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!want_number && *channel_map_str == ',') {
|
|
|
|
++channel_map_str;
|
|
|
|
want_number = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (want_number &&
|
|
|
|
(isdigit(*channel_map_str) || *channel_map_str == '-')
|
|
|
|
) {
|
|
|
|
channel_map[inserted_channels] = strtol(channel_map_str, &endptr, 10);
|
|
|
|
if (channel_map[inserted_channels] < -1) {
|
|
|
|
error.Format(osx_output_domain,
|
|
|
|
"%s: channel map value %d not allowed (must be -1 or greater)",
|
|
|
|
device_name, channel_map[inserted_channels]);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
channel_map_str = endptr;
|
|
|
|
want_number = false;
|
|
|
|
FormatDebug(osx_output_domain,
|
|
|
|
"%s: channel_map[%u] = %d",
|
|
|
|
device_name, inserted_channels, channel_map[inserted_channels]);
|
|
|
|
++inserted_channels;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
error.Format(osx_output_domain,
|
|
|
|
"%s: invalid character '%c' in channel map",
|
|
|
|
device_name, *channel_map_str);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inserted_channels < num_channels) {
|
|
|
|
error.Format(osx_output_domain,
|
|
|
|
"%s: channel map contains less than %u entries",
|
|
|
|
device_name, num_channels);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
osx_output_set_channel_map(OSXOutput *oo, Error &error)
|
|
|
|
{
|
|
|
|
AudioStreamBasicDescription desc;
|
|
|
|
OSStatus status;
|
|
|
|
SInt32 *channel_map = nullptr;
|
|
|
|
UInt32 size, num_channels;
|
|
|
|
char errormsg[1024];
|
|
|
|
bool ret = true;
|
|
|
|
|
|
|
|
size = sizeof(desc);
|
|
|
|
memset(&desc, 0, size);
|
|
|
|
status = AudioUnitGetProperty(oo->au,
|
|
|
|
kAudioUnitProperty_StreamFormat,
|
|
|
|
kAudioUnitScope_Output,
|
|
|
|
0,
|
|
|
|
&desc,
|
|
|
|
&size);
|
|
|
|
if (status != noErr) {
|
|
|
|
osx_os_status_to_cstring(status, errormsg, sizeof(errormsg));
|
|
|
|
error.Format(osx_output_domain, status,
|
|
|
|
"%s: unable to get number of output device channels: %s",
|
|
|
|
oo->device_name, errormsg);
|
|
|
|
ret = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
num_channels = desc.mChannelsPerFrame;
|
|
|
|
channel_map = new SInt32[num_channels];
|
|
|
|
if (!osx_output_parse_channel_map(oo->device_name,
|
|
|
|
oo->channel_map,
|
|
|
|
channel_map,
|
|
|
|
num_channels,
|
|
|
|
error)
|
|
|
|
) {
|
|
|
|
ret = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = num_channels * sizeof(SInt32);
|
|
|
|
status = AudioUnitSetProperty(oo->au,
|
|
|
|
kAudioOutputUnitProperty_ChannelMap,
|
|
|
|
kAudioUnitScope_Input,
|
|
|
|
0,
|
|
|
|
channel_map,
|
|
|
|
size);
|
|
|
|
if (status != noErr) {
|
|
|
|
osx_os_status_to_cstring(status, errormsg, sizeof(errormsg));
|
|
|
|
error.Format(osx_output_domain, status,
|
|
|
|
"%s: unable to set channel map: %s", oo->device_name, errormsg);
|
|
|
|
ret = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
delete[] channel_map;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-12-21 04:21:46 +01:00
|
|
|
static bool
|
2013-08-10 18:02:44 +02:00
|
|
|
osx_output_set_device(OSXOutput *oo, Error &error)
|
2010-12-21 04:21:46 +01:00
|
|
|
{
|
|
|
|
bool ret = true;
|
|
|
|
OSStatus status;
|
|
|
|
UInt32 size, numdevices;
|
2014-12-31 11:47:27 +01:00
|
|
|
AudioDeviceID *deviceids = nullptr;
|
2016-07-02 23:35:44 +02:00
|
|
|
AudioObjectPropertyAddress propaddr;
|
2016-07-03 12:59:19 +02:00
|
|
|
CFStringRef cfname = nullptr;
|
2016-07-03 14:06:53 +02:00
|
|
|
char errormsg[1024];
|
2010-12-21 04:21:46 +01:00
|
|
|
char name[256];
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (oo->component_subtype != kAudioUnitSubType_HALOutput)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
/* how many audio devices are there? */
|
2016-07-02 23:35:44 +02:00
|
|
|
propaddr = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };
|
|
|
|
status = AudioObjectGetPropertyDataSize(kAudioObjectSystemObject, &propaddr, 0, nullptr, &size);
|
2010-12-21 04:21:46 +01:00
|
|
|
if (status != noErr) {
|
2016-07-03 14:06:53 +02:00
|
|
|
osx_os_status_to_cstring(status, errormsg, sizeof(errormsg));
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(osx_output_domain, status,
|
|
|
|
"Unable to determine number of OS X audio devices: %s",
|
2016-07-03 14:06:53 +02:00
|
|
|
errormsg);
|
2010-12-21 04:21:46 +01:00
|
|
|
ret = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* what are the available audio device IDs? */
|
|
|
|
numdevices = size / sizeof(AudioDeviceID);
|
2013-01-29 16:59:21 +01:00
|
|
|
deviceids = new AudioDeviceID[numdevices];
|
2016-07-02 23:35:44 +02:00
|
|
|
status = AudioObjectGetPropertyData(kAudioObjectSystemObject, &propaddr, 0, nullptr, &size, deviceids);
|
2010-12-21 04:21:46 +01:00
|
|
|
if (status != noErr) {
|
2016-07-03 14:06:53 +02:00
|
|
|
osx_os_status_to_cstring(status, errormsg, sizeof(errormsg));
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(osx_output_domain, status,
|
|
|
|
"Unable to determine OS X audio device IDs: %s",
|
2016-07-03 14:06:53 +02:00
|
|
|
errormsg);
|
2010-12-21 04:21:46 +01:00
|
|
|
ret = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* which audio device matches oo->device_name? */
|
2016-07-02 23:35:44 +02:00
|
|
|
propaddr = { kAudioObjectPropertyName, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };
|
2016-07-03 13:18:44 +02:00
|
|
|
size = sizeof(CFStringRef);
|
2010-12-21 04:21:46 +01:00
|
|
|
for (i = 0; i < numdevices; i++) {
|
2016-07-03 12:59:19 +02:00
|
|
|
status = AudioObjectGetPropertyData(deviceids[i], &propaddr, 0, nullptr, &size, &cfname);
|
2010-12-21 04:21:46 +01:00
|
|
|
if (status != noErr) {
|
2016-07-03 14:06:53 +02:00
|
|
|
osx_os_status_to_cstring(status, errormsg, sizeof(errormsg));
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(osx_output_domain, status,
|
|
|
|
"Unable to determine OS X device name "
|
|
|
|
"(device %u): %s",
|
|
|
|
(unsigned int) deviceids[i],
|
2016-07-03 14:06:53 +02:00
|
|
|
errormsg);
|
2010-12-21 04:21:46 +01:00
|
|
|
ret = false;
|
|
|
|
goto done;
|
|
|
|
}
|
2016-07-03 13:18:44 +02:00
|
|
|
|
2016-07-03 12:59:19 +02:00
|
|
|
if (!CFStringGetCString(cfname, name, sizeof(name), kCFStringEncodingUTF8)) {
|
2016-07-03 13:36:35 +02:00
|
|
|
error.Set(osx_output_domain, "Unable to convert device name from CFStringRef to char*");
|
2016-07-03 12:59:19 +02:00
|
|
|
ret = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2010-12-21 04:21:46 +01:00
|
|
|
if (strcmp(oo->device_name, name) == 0) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(osx_output_domain,
|
|
|
|
"found matching device: ID=%u, name=%s",
|
|
|
|
(unsigned)deviceids[i], name);
|
2010-12-21 04:21:46 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == numdevices) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatWarning(osx_output_domain,
|
|
|
|
"Found no audio device with name '%s' "
|
|
|
|
"(will use default audio device)",
|
|
|
|
oo->device_name);
|
2010-12-21 04:21:46 +01:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = AudioUnitSetProperty(oo->au,
|
|
|
|
kAudioOutputUnitProperty_CurrentDevice,
|
|
|
|
kAudioUnitScope_Global,
|
|
|
|
0,
|
|
|
|
&(deviceids[i]),
|
|
|
|
sizeof(AudioDeviceID));
|
|
|
|
if (status != noErr) {
|
2016-07-03 14:06:53 +02:00
|
|
|
osx_os_status_to_cstring(status, errormsg, sizeof(errormsg));
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(osx_output_domain, status,
|
|
|
|
"Unable to set OS X audio output device: %s",
|
2016-07-03 14:06:53 +02:00
|
|
|
errormsg);
|
2010-12-21 04:21:46 +01:00
|
|
|
ret = false;
|
|
|
|
goto done;
|
|
|
|
}
|
2013-09-27 22:31:24 +02:00
|
|
|
|
|
|
|
FormatDebug(osx_output_domain,
|
|
|
|
"set OS X audio output device ID=%u, name=%s",
|
|
|
|
(unsigned)deviceids[i], name);
|
2010-12-21 04:21:46 +01:00
|
|
|
|
2016-07-09 13:03:41 +02:00
|
|
|
if (oo->channel_map && !osx_output_set_channel_map(oo, error)) {
|
|
|
|
ret = false;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2010-12-21 04:21:46 +01:00
|
|
|
done:
|
2013-01-29 16:59:21 +01:00
|
|
|
delete[] deviceids;
|
2016-07-03 16:45:23 +02:00
|
|
|
if (cfname)
|
2016-07-03 12:59:19 +02:00
|
|
|
CFRelease(cfname);
|
2010-12-21 04:21:46 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-07-07 23:53:05 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
This function (the 'render callback' osx_render) is called by the
|
|
|
|
OS X audio subsystem (CoreAudio) to request audio data that will be
|
|
|
|
played by the audio hardware. This function has hard time constraints
|
|
|
|
so it cannot do IO (debug statements) or memory allocations.
|
|
|
|
|
|
|
|
The caller (i.e. CoreAudio) requests a specific number of
|
|
|
|
audio frames (in_number_frames) to be rendered into a
|
|
|
|
collection of output buffers (buffer_list). Depending on the
|
|
|
|
number of output buffers the render callback has to interleave
|
|
|
|
or de-interleave audio data to match the layout of the output
|
|
|
|
buffers. The intput buffer is always interleaved. In practice,
|
|
|
|
it seems this callback always gets a single output buffer
|
|
|
|
meaning that no de-interleaving actually takes place. For the
|
|
|
|
sake of correctness this callback allows for de-interleaving
|
|
|
|
anyway, and calculates the expected output layout by examining
|
|
|
|
the output buffers.
|
|
|
|
*/
|
|
|
|
|
2011-12-24 15:55:35 +01:00
|
|
|
static OSStatus
|
|
|
|
osx_render(void *vdata,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused AudioUnitRenderActionFlags *io_action_flags,
|
|
|
|
gcc_unused const AudioTimeStamp *in_timestamp,
|
|
|
|
gcc_unused UInt32 in_bus_number,
|
2016-07-07 23:53:05 +02:00
|
|
|
UInt32 in_number_frames,
|
2011-12-24 15:55:35 +01:00
|
|
|
AudioBufferList *buffer_list)
|
|
|
|
{
|
2016-07-07 23:53:05 +02:00
|
|
|
AudioBuffer *output_buffer = nullptr;
|
2016-08-05 23:42:25 +02:00
|
|
|
size_t output_buffer_frame_size;
|
2016-07-07 23:53:05 +02:00
|
|
|
|
2013-01-29 16:59:21 +01:00
|
|
|
OSXOutput *od = (OSXOutput *) vdata;
|
2016-07-07 23:53:05 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
By convention when interfacing with audio hardware in CoreAudio,
|
|
|
|
in_bus_number equals 0 for output and 1 for input. Because this is an
|
|
|
|
audio output plugin our in_bus_number should always be 0.
|
|
|
|
*/
|
|
|
|
assert(in_bus_number == 0);
|
|
|
|
|
|
|
|
unsigned int input_channel_count = od->asbd.mChannelsPerFrame;
|
|
|
|
unsigned int output_channel_count = 0;
|
|
|
|
for (unsigned int i = 0 ; i < buffer_list->mNumberBuffers; ++i) {
|
|
|
|
output_buffer = &buffer_list->mBuffers[i];
|
|
|
|
assert(output_buffer->mData != nullptr);
|
|
|
|
output_channel_count += output_buffer->mNumberChannels;
|
|
|
|
}
|
|
|
|
assert(output_channel_count == input_channel_count);
|
2011-12-24 15:55:35 +01:00
|
|
|
|
2016-07-07 23:53:05 +02:00
|
|
|
size_t input_buffer_frame_size = od->asbd.mBytesPerFrame;
|
|
|
|
size_t sample_size = input_buffer_frame_size / input_channel_count;
|
2011-12-24 15:55:35 +01:00
|
|
|
|
2016-08-05 23:42:25 +02:00
|
|
|
size_t requested_bytes = in_number_frames * input_buffer_frame_size;
|
|
|
|
if (requested_bytes > od->render_buffer_size)
|
|
|
|
requested_bytes = od->render_buffer_size;
|
|
|
|
|
|
|
|
size_t available_bytes = od->ring_buffer->pop(od->render_buffer, requested_bytes);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Maybe this is paranoid but we have no way of knowing
|
|
|
|
if the 'pop' above ended at a frame boundary. In case
|
2016-08-06 15:19:10 +02:00
|
|
|
of an incomplete last frame, keep popping until the
|
|
|
|
last frame is complete.
|
2016-08-05 23:42:25 +02:00
|
|
|
*/
|
2016-08-06 15:19:10 +02:00
|
|
|
size_t remainder;
|
|
|
|
while ((remainder = available_bytes % input_buffer_frame_size) > 0)
|
2016-08-05 23:42:25 +02:00
|
|
|
available_bytes += od->ring_buffer->pop(
|
|
|
|
od->render_buffer + available_bytes,
|
2016-08-06 15:19:10 +02:00
|
|
|
input_buffer_frame_size - remainder
|
2016-08-05 23:42:25 +02:00
|
|
|
);
|
2011-12-24 15:55:35 +01:00
|
|
|
|
2016-08-05 23:42:25 +02:00
|
|
|
od->condition.signal(); // We are done consuming from ring_buffer
|
2016-07-07 23:53:05 +02:00
|
|
|
|
2016-08-05 23:42:25 +02:00
|
|
|
UInt32 available_frames = available_bytes / input_buffer_frame_size;
|
2016-07-07 23:53:05 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
To de-interleave the data in the input buffer so that it fits in
|
|
|
|
the output buffers we divide the input buffer frames into 'sub frames'
|
|
|
|
that fit into the output buffers.
|
|
|
|
*/
|
|
|
|
size_t sub_frame_offset = 0;
|
|
|
|
for (unsigned int i = 0 ; i < buffer_list->mNumberBuffers; ++i) {
|
|
|
|
output_buffer = &buffer_list->mBuffers[i];
|
|
|
|
output_buffer_frame_size = output_buffer->mNumberChannels * sample_size;
|
2016-07-22 20:58:37 +02:00
|
|
|
output_buffer->mDataByteSize = 0; // Record how much data we actually rendered
|
2016-07-07 23:53:05 +02:00
|
|
|
for (UInt32 current_frame = 0; current_frame < available_frames; ++current_frame) {
|
|
|
|
memcpy(
|
2016-08-05 23:42:25 +02:00
|
|
|
(uint8_t *) output_buffer->mData + current_frame * output_buffer_frame_size,
|
|
|
|
od->render_buffer + current_frame * input_buffer_frame_size + sub_frame_offset,
|
2016-07-07 23:53:05 +02:00
|
|
|
output_buffer_frame_size
|
|
|
|
);
|
2016-07-22 20:58:37 +02:00
|
|
|
output_buffer->mDataByteSize += output_buffer_frame_size;
|
2016-07-07 23:53:05 +02:00
|
|
|
}
|
|
|
|
sub_frame_offset += output_buffer_frame_size;
|
2013-12-19 10:49:31 +01:00
|
|
|
}
|
2011-12-24 15:55:35 +01:00
|
|
|
|
2016-07-07 23:53:05 +02:00
|
|
|
return noErr;
|
2011-12-24 15:55:35 +01:00
|
|
|
}
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
static bool
|
2014-01-28 11:34:09 +01:00
|
|
|
osx_output_enable(AudioOutput *ao, Error &error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2016-07-03 14:06:53 +02:00
|
|
|
char errormsg[1024];
|
2013-01-29 16:59:21 +01:00
|
|
|
OSXOutput *oo = (OSXOutput *)ao;
|
2005-03-16 05:46:41 +01:00
|
|
|
|
2016-07-02 23:35:44 +02:00
|
|
|
AudioComponentDescription desc;
|
2005-03-16 05:46:41 +01:00
|
|
|
desc.componentType = kAudioUnitType_Output;
|
2011-12-24 15:55:35 +01:00
|
|
|
desc.componentSubType = oo->component_subtype;
|
2005-03-16 05:46:41 +01:00
|
|
|
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
|
|
|
|
desc.componentFlags = 0;
|
|
|
|
desc.componentFlagsMask = 0;
|
|
|
|
|
2016-07-02 23:35:44 +02:00
|
|
|
AudioComponent comp = AudioComponentFindNext(nullptr, &desc);
|
2006-07-20 18:02:40 +02:00
|
|
|
if (comp == 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(osx_output_domain,
|
|
|
|
"Error finding OS X component");
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2005-03-14 05:30:32 +01:00
|
|
|
}
|
|
|
|
|
2016-07-02 23:35:44 +02:00
|
|
|
OSStatus status = AudioComponentInstanceNew(comp, &oo->au);
|
2009-02-26 22:01:42 +01:00
|
|
|
if (status != noErr) {
|
2016-07-03 14:06:53 +02:00
|
|
|
osx_os_status_to_cstring(status, errormsg, sizeof(errormsg));
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(osx_output_domain, status,
|
|
|
|
"Unable to open OS X component: %s",
|
2016-07-03 14:06:53 +02:00
|
|
|
errormsg);
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2005-03-14 05:30:32 +01:00
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!osx_output_set_device(oo, error)) {
|
2016-07-02 23:35:44 +02:00
|
|
|
AudioComponentInstanceDispose(oo->au);
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2005-03-16 05:46:41 +01:00
|
|
|
}
|
|
|
|
|
2011-12-24 15:55:35 +01:00
|
|
|
AURenderCallbackStruct callback;
|
2005-03-16 05:46:41 +01:00
|
|
|
callback.inputProc = osx_render;
|
2011-12-24 15:55:35 +01:00
|
|
|
callback.inputProcRefCon = oo;
|
2005-03-16 05:46:41 +01:00
|
|
|
|
2016-07-02 23:35:44 +02:00
|
|
|
status =
|
2011-12-24 15:55:35 +01:00
|
|
|
AudioUnitSetProperty(oo->au,
|
|
|
|
kAudioUnitProperty_SetRenderCallback,
|
|
|
|
kAudioUnitScope_Input, 0,
|
|
|
|
&callback, sizeof(callback));
|
2016-07-02 23:35:44 +02:00
|
|
|
if (status != noErr) {
|
|
|
|
AudioComponentInstanceDispose(oo->au);
|
|
|
|
error.Set(osx_output_domain, status,
|
2013-08-10 18:02:44 +02:00
|
|
|
"unable to set callback for OS X audio unit");
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2005-03-16 05:46:41 +01:00
|
|
|
}
|
2005-03-14 05:30:32 +01:00
|
|
|
|
2011-12-24 15:55:35 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
osx_output_disable(AudioOutput *ao)
|
2011-12-24 15:55:35 +01:00
|
|
|
{
|
2013-01-29 16:59:21 +01:00
|
|
|
OSXOutput *oo = (OSXOutput *)ao;
|
2011-12-24 15:55:35 +01:00
|
|
|
|
2016-07-02 23:35:44 +02:00
|
|
|
AudioComponentInstanceDispose(oo->au);
|
2011-12-24 15:55:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
osx_output_close(AudioOutput *ao)
|
2011-12-24 15:55:35 +01:00
|
|
|
{
|
2013-01-29 16:59:21 +01:00
|
|
|
OSXOutput *od = (OSXOutput *)ao;
|
2011-12-24 15:55:35 +01:00
|
|
|
|
|
|
|
AudioOutputUnitStop(od->au);
|
|
|
|
AudioUnitUninitialize(od->au);
|
2012-04-05 00:45:39 +02:00
|
|
|
|
2016-08-05 23:42:25 +02:00
|
|
|
delete od->ring_buffer;
|
|
|
|
delete[] od->render_buffer;
|
2011-12-24 15:55:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2014-01-28 11:34:09 +01:00
|
|
|
osx_output_open(AudioOutput *ao, AudioFormat &audio_format,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error)
|
2011-12-24 15:55:35 +01:00
|
|
|
{
|
2016-07-03 14:06:53 +02:00
|
|
|
char errormsg[1024];
|
2013-01-29 16:59:21 +01:00
|
|
|
OSXOutput *od = (OSXOutput *)ao;
|
2011-12-24 15:55:35 +01:00
|
|
|
|
2016-07-07 23:53:05 +02:00
|
|
|
memset(&od->asbd, 0, sizeof(od->asbd));
|
|
|
|
od->asbd.mSampleRate = audio_format.sample_rate;
|
|
|
|
od->asbd.mFormatID = kAudioFormatLinearPCM;
|
|
|
|
od->asbd.mFormatFlags = kLinearPCMFormatFlagIsSignedInteger;
|
2009-11-10 17:11:34 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
switch (audio_format.format) {
|
|
|
|
case SampleFormat::S8:
|
2016-07-07 23:53:05 +02:00
|
|
|
od->asbd.mBitsPerChannel = 8;
|
2009-11-10 17:11:34 +01:00
|
|
|
break;
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
case SampleFormat::S16:
|
2016-07-07 23:53:05 +02:00
|
|
|
od->asbd.mBitsPerChannel = 16;
|
2009-11-10 17:11:34 +01:00
|
|
|
break;
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
case SampleFormat::S32:
|
2016-07-07 23:53:05 +02:00
|
|
|
od->asbd.mBitsPerChannel = 32;
|
2011-12-24 18:18:42 +01:00
|
|
|
break;
|
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
default:
|
2013-08-03 21:00:50 +02:00
|
|
|
audio_format.format = SampleFormat::S32;
|
2016-07-07 23:53:05 +02:00
|
|
|
od->asbd.mBitsPerChannel = 32;
|
2009-11-10 17:11:34 +01:00
|
|
|
break;
|
|
|
|
}
|
2005-03-16 05:46:41 +01:00
|
|
|
|
2013-10-16 21:09:19 +02:00
|
|
|
if (IsBigEndian())
|
2016-07-07 23:53:05 +02:00
|
|
|
od->asbd.mFormatFlags |= kLinearPCMFormatFlagIsBigEndian;
|
2011-01-07 17:15:37 +01:00
|
|
|
|
2016-07-07 23:53:05 +02:00
|
|
|
od->asbd.mBytesPerPacket = audio_format.GetFrameSize();
|
|
|
|
od->asbd.mFramesPerPacket = 1;
|
|
|
|
od->asbd.mBytesPerFrame = od->asbd.mBytesPerPacket;
|
|
|
|
od->asbd.mChannelsPerFrame = audio_format.channels;
|
2011-01-07 17:15:37 +01:00
|
|
|
|
2016-07-02 23:35:44 +02:00
|
|
|
OSStatus status =
|
2011-12-24 15:55:35 +01:00
|
|
|
AudioUnitSetProperty(od->au, kAudioUnitProperty_StreamFormat,
|
|
|
|
kAudioUnitScope_Input, 0,
|
2016-07-07 23:53:05 +02:00
|
|
|
&od->asbd,
|
|
|
|
sizeof(od->asbd));
|
2016-07-02 23:35:44 +02:00
|
|
|
if (status != noErr) {
|
|
|
|
error.Set(osx_output_domain, status,
|
2013-08-10 18:02:44 +02:00
|
|
|
"Unable to set format on OS X device");
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2005-03-16 05:46:41 +01:00
|
|
|
}
|
|
|
|
|
2016-07-02 23:35:44 +02:00
|
|
|
status = AudioUnitInitialize(od->au);
|
2011-12-24 15:55:35 +01:00
|
|
|
if (status != noErr) {
|
2016-07-03 14:06:53 +02:00
|
|
|
osx_os_status_to_cstring(status, errormsg, sizeof(errormsg));
|
2013-12-10 19:16:37 +01:00
|
|
|
error.Format(osx_output_domain, status,
|
|
|
|
"Unable to initialize OS X audio unit: %s",
|
2016-07-03 14:06:53 +02:00
|
|
|
errormsg);
|
2011-12-24 15:55:35 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-08-05 23:42:25 +02:00
|
|
|
/* create a ring buffer of 1s */
|
|
|
|
od->ring_buffer = new boost::lockfree::spsc_queue<uint8_t>(audio_format.sample_rate * audio_format.GetFrameSize());
|
|
|
|
|
|
|
|
/*
|
|
|
|
od->render_buffer_size is the maximum amount of data we
|
|
|
|
render in the render callback. Allocate enough space
|
|
|
|
for 0.1 s of frames.
|
|
|
|
*/
|
|
|
|
od->render_buffer_size = (audio_format.sample_rate/10) * audio_format.GetFrameSize();
|
|
|
|
od->render_buffer = new uint8_t[od->render_buffer_size];
|
2005-03-13 20:23:09 +01:00
|
|
|
|
2009-02-26 22:01:42 +01:00
|
|
|
status = AudioOutputUnitStart(od->au);
|
|
|
|
if (status != 0) {
|
2011-12-24 15:55:35 +01:00
|
|
|
AudioUnitUninitialize(od->au);
|
2016-07-03 14:06:53 +02:00
|
|
|
osx_os_status_to_cstring(status, errormsg, sizeof(errormsg));
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(osx_output_domain, status,
|
|
|
|
"unable to start audio output: %s",
|
2016-07-03 14:06:53 +02:00
|
|
|
errormsg);
|
2009-02-26 21:40:22 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
return true;
|
2005-03-13 20:23:09 +01:00
|
|
|
}
|
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
static size_t
|
2014-01-28 11:34:09 +01:00
|
|
|
osx_output_play(AudioOutput *ao, const void *chunk, size_t size,
|
2013-08-10 18:02:44 +02:00
|
|
|
gcc_unused Error &error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-01-29 16:59:21 +01:00
|
|
|
OSXOutput *od = (OSXOutput *)ao;
|
2005-03-14 05:30:32 +01:00
|
|
|
|
2016-08-06 15:25:58 +02:00
|
|
|
od->mutex.lock();
|
2012-04-05 00:45:39 +02:00
|
|
|
while (true) {
|
2016-08-05 23:42:25 +02:00
|
|
|
if (od->ring_buffer->write_available() > 0)
|
2012-04-05 00:45:39 +02:00
|
|
|
break;
|
2005-03-14 05:30:32 +01:00
|
|
|
|
2012-04-05 00:45:39 +02:00
|
|
|
/* wait for some free space in the buffer */
|
2013-01-29 16:59:21 +01:00
|
|
|
od->condition.wait(od->mutex);
|
2012-04-05 00:45:39 +02:00
|
|
|
}
|
2016-08-06 15:25:58 +02:00
|
|
|
od->mutex.unlock();
|
2005-03-16 05:46:41 +01:00
|
|
|
|
2016-08-05 23:42:25 +02:00
|
|
|
return od->ring_buffer->push((uint8_t *) chunk, size);
|
2005-03-13 20:23:09 +01:00
|
|
|
}
|
|
|
|
|
2014-01-28 11:22:27 +01:00
|
|
|
const struct AudioOutputPlugin osx_output_plugin = {
|
2013-01-29 16:59:21 +01:00
|
|
|
"osx",
|
|
|
|
osx_output_test_default_device,
|
|
|
|
osx_output_init,
|
|
|
|
osx_output_finish,
|
|
|
|
osx_output_enable,
|
|
|
|
osx_output_disable,
|
|
|
|
osx_output_open,
|
|
|
|
osx_output_close,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
osx_output_play,
|
|
|
|
nullptr,
|
2016-08-05 23:42:25 +02:00
|
|
|
nullptr,
|
2013-01-29 16:59:21 +01:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2005-03-13 20:23:09 +01:00
|
|
|
};
|