1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
/* Copyright 2016, Ableton AG, Berlin. All rights reserved.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* If you would like to incorporate Link into a proprietary software application,
* please contact <link-devs@ableton.com>.
*/
#include "AudioPlatform_CoreAudio.hpp"
#include <chrono>
#include <iostream>
#include <mach/mach_time.h>
namespace ableton
{
namespace linkaudio
{
AudioPlatform::AudioPlatform(Link& link)
: mEngine(link)
{
initialize();
start();
}
AudioPlatform::~AudioPlatform()
{
stop();
uninitialize();
}
OSStatus AudioPlatform::audioCallback(void* inRefCon,
AudioUnitRenderActionFlags*,
const AudioTimeStamp* inTimeStamp,
UInt32,
UInt32 inNumberFrames,
AudioBufferList* ioData)
{
AudioEngine* engine = static_cast<AudioEngine*>(inRefCon);
const auto bufferBeginAtOutput =
engine->mLink.clock().ticksToMicros(inTimeStamp->mHostTime) + engine->mOutputLatency;
engine->audioCallback(bufferBeginAtOutput, inNumberFrames);
for (std::size_t i = 0; i < inNumberFrames; ++i)
{
for (UInt32 j = 0; j < ioData->mNumberBuffers; ++j)
{
SInt16* bufData = static_cast<SInt16*>(ioData->mBuffers[j].mData);
bufData[i] = static_cast<SInt16>(32761. * engine->mBuffer[i]);
}
}
return noErr;
}
void AudioPlatform::initialize()
{
AudioComponentDescription cd = {};
cd.componentManufacturer = kAudioUnitManufacturer_Apple;
cd.componentFlags = 0;
cd.componentFlagsMask = 0;
cd.componentType = kAudioUnitType_Output;
cd.componentSubType = kAudioUnitSubType_DefaultOutput;
AudioComponent component = AudioComponentFindNext(nullptr, &cd);
OSStatus result = AudioComponentInstanceNew(component, &mIoUnit);
if (result)
{
std::cerr << "Could not get Audio Unit. " << result << std::endl;
std::terminate();
}
UInt32 size = sizeof(mEngine.mSampleRate);
result = AudioUnitGetProperty(mIoUnit, kAudioUnitProperty_SampleRate,
kAudioUnitScope_Output, 0, &mEngine.mSampleRate, &size);
if (result)
{
std::cerr << "Could not get sample rate. " << result << std::endl;
std::terminate();
}
std::clog << "SAMPLE RATE: " << mEngine.mSampleRate << std::endl;
AudioStreamBasicDescription asbd = {};
asbd.mFormatID = kAudioFormatLinearPCM;
asbd.mFormatFlags = kAudioFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked
| kAudioFormatFlagsNativeEndian | kAudioFormatFlagIsNonInterleaved;
asbd.mChannelsPerFrame = 2;
asbd.mBytesPerPacket = sizeof(SInt16);
asbd.mFramesPerPacket = 1;
asbd.mBytesPerFrame = sizeof(SInt16);
asbd.mBitsPerChannel = 8 * sizeof(SInt16);
asbd.mSampleRate = mEngine.mSampleRate;
result = AudioUnitSetProperty(mIoUnit, kAudioUnitProperty_StreamFormat,
kAudioUnitScope_Input, 0, &asbd, sizeof(asbd));
if (result)
{
std::cerr << "Could not set stream format. " << result << std::endl;
}
char deviceName[512];
size = sizeof(deviceName);
result = AudioUnitGetProperty(mIoUnit, kAudioDevicePropertyDeviceName,
kAudioUnitScope_Global, 0, &deviceName, &size);
if (result)
{
std::cerr << "Could not get device name. " << result << std::endl;
std::terminate();
}
std::clog << "DEVICE NAME: " << deviceName << std::endl;
UInt32 bufferSize = 512;
size = sizeof(bufferSize);
result = AudioUnitSetProperty(mIoUnit, kAudioDevicePropertyBufferFrameSize,
kAudioUnitScope_Global, 0, &bufferSize, size);
if (result)
{
std::cerr << "Could not set buffer size. " << result << std::endl;
std::terminate();
}
mEngine.setBufferSize(bufferSize);
UInt32 propertyResult = 0;
size = sizeof(propertyResult);
result = AudioUnitGetProperty(mIoUnit, kAudioDevicePropertyBufferFrameSize,
kAudioUnitScope_Global, 0, &propertyResult, &size);
if (result)
{
std::cerr << "Could not get buffer size. " << result << std::endl;
std::terminate();
}
std::clog << "BUFFER SIZE: " << propertyResult << " samples, "
<< propertyResult / mEngine.mSampleRate * 1e3 << " ms." << std::endl;
// the buffer, stream and safety-offset latencies are part of inTimeStamp->mHostTime
// within the audio callback.
UInt32 deviceLatency = 0;
size = sizeof(deviceLatency);
result = AudioUnitGetProperty(mIoUnit, kAudioDevicePropertyLatency,
kAudioUnitScope_Output, 0, &deviceLatency, &size);
if (result)
{
std::cerr << "Could not get output device latency. " << result << std::endl;
std::terminate();
}
std::clog << "OUTPUT DEVICE LATENCY: " << deviceLatency << " samples, "
<< deviceLatency / mEngine.mSampleRate * 1e3 << " ms." << std::endl;
using namespace std::chrono;
const double latency = static_cast<double>(deviceLatency) / mEngine.mSampleRate;
mEngine.mOutputLatency = duration_cast<microseconds>(duration<double>{latency});
AURenderCallbackStruct ioRemoteInput;
ioRemoteInput.inputProc = audioCallback;
ioRemoteInput.inputProcRefCon = &mEngine;
result = AudioUnitSetProperty(mIoUnit, kAudioUnitProperty_SetRenderCallback,
kAudioUnitScope_Input, 0, &ioRemoteInput, sizeof(ioRemoteInput));
if (result)
{
std::cerr << "Could not set render callback. " << result << std::endl;
}
result = AudioUnitInitialize(mIoUnit);
if (result)
{
std::cerr << "Could not initialize audio unit. " << result << std::endl;
}
}
void AudioPlatform::uninitialize()
{
OSStatus result = AudioUnitUninitialize(mIoUnit);
if (result)
{
std::cerr << "Could not uninitialize Audio Unit. " << result << std::endl;
}
}
void AudioPlatform::start()
{
OSStatus result = AudioOutputUnitStart(mIoUnit);
if (result)
{
std::cerr << "Could not start Audio Unit. " << result << std::endl;
std::terminate();
}
}
void AudioPlatform::stop()
{
OSStatus result = AudioOutputUnitStop(mIoUnit);
if (result)
{
std::cerr << "Could not stop Audio Unit. " << result << std::endl;
}
}
} // namespace linkaudio
} // namespace ableton
|