mumble/src/mumble/PulseAudio.cpp
2008-05-09 23:48:45 +00:00

649 lines
20 KiB
C++

/* Copyright (C) 2005-2008, Thorvald Natvig <thorvald@natvig.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
- Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
- Neither the name of the Mumble Developers nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "PulseAudio.h"
#include "Player.h"
#include "Global.h"
#include "MainWindow.h"
#include "Timer.h"
#include <sys/soundcard.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/ioctl.h>
static PulseAudioSystem *pasys = NULL;
#define NBLOCKS 8
class PulseAudioInputRegistrar : public AudioInputRegistrar {
public:
PulseAudioInputRegistrar();
virtual AudioInput *create();
virtual const QList<audioDevice> getDeviceChoices();
virtual void setDeviceChoice(const QVariant &, Settings &);
virtual bool canEcho(const QString &);
};
class PulseAudioOutputRegistrar : public AudioOutputRegistrar {
public:
PulseAudioOutputRegistrar();
virtual AudioOutput *create();
virtual const QList<audioDevice> getDeviceChoices();
virtual void setDeviceChoice(const QVariant &, Settings &);
};
class PulseAudioInit : public DeferInit {
public:
PulseAudioInputRegistrar *airPulseAudio;
PulseAudioOutputRegistrar *aorPulseAudio;
void initialize() {
pasys = new PulseAudioSystem();
pasys->qmWait.lock();
pasys->start(QThread::TimeCriticalPriority);
pasys->qwcWait.wait(&pasys->qmWait, 1000);
if (pasys->bPulseIsGood) {
airPulseAudio = new PulseAudioInputRegistrar();
aorPulseAudio = new PulseAudioOutputRegistrar();
} else {
airPulseAudio = NULL;
aorPulseAudio = NULL;
}
qWarning("Pulse Done! %d", pasys->bPulseIsGood);
};
void destroy() {
if (airPulseAudio)
delete airPulseAudio;
if (aorPulseAudio)
delete aorPulseAudio;
delete pasys;
pasys = NULL;
};
};
static PulseAudioInit pulseinit;
PulseAudioSystem::PulseAudioSystem() {
pasInput = pasOutput = pasSpeaker = NULL;
bSourceDone=bSinkDone=bServerDone = false;
iDelayCache = 0;
bPositionalCache = false;
bPulseIsGood = false;
pam = pa_mainloop_new();
pa_mainloop_api *api = pa_mainloop_get_api(pam);
pacContext = pa_context_new(api, "Mumble");
pa_context_set_subscribe_callback(pacContext, subscribe_callback, this);
pa_context_set_state_callback(pacContext, context_state_callback, this);
pa_context_connect(pacContext, NULL, PA_CONTEXT_NOAUTOSPAWN, NULL);
pade = api->defer_new(api, defer_event_callback, this);
api->defer_enable(pade, false);
}
PulseAudioSystem::~PulseAudioSystem() {
pa_mainloop_quit(pam, 0);
wait();
pa_context_disconnect(pacContext);
pa_context_unref(pacContext);
pa_mainloop_free(pam);
}
void PulseAudioSystem::wakeup() {
pa_mainloop_api *api = pa_mainloop_get_api(pam);
api->defer_enable(pade, true);
pa_mainloop_wakeup(pam);
}
void PulseAudioSystem::run() {
// Make sure we don't exit too early.
qmWait.lock();
qmWait.unlock();
int rv;
pa_mainloop_run(pam, &rv);
if (rv != 0)
qWarning("PulseAudio: Mainloop quit with retval %d", rv);
}
void PulseAudioSystem::defer_event_callback(pa_mainloop_api *a, pa_defer_event *e, void *userdata) {
PulseAudioSystem *pas = reinterpret_cast<PulseAudioSystem *>(userdata);
pas->eventCallback(a, e);
}
void PulseAudioSystem::eventCallback(pa_mainloop_api *api, pa_defer_event *) {
api->defer_enable(pade, false);
if (! bSourceDone || ! bSinkDone || ! bServerDone)
return;
AudioInputPtr ai = g.ai;
AudioOutputPtr ao = g.ao;
AudioInput *raw_ai = ai.get();
AudioOutput *raw_ao = ao.get();
PulseAudioInput *pai = dynamic_cast<PulseAudioInput *>(raw_ai);
PulseAudioOutput *pao = dynamic_cast<PulseAudioOutput *>(raw_ao);
if (raw_ao) {
QString odev = g.s.qsPulseAudioOutput.isEmpty() ? qsDefaultOutput : g.s.qsPulseAudioOutput;
pa_stream_state ost = pasOutput ? pa_stream_get_state(pasOutput) : PA_STREAM_TERMINATED;
bool do_stop = false;
bool do_start = false;
if (! pao && (ost == PA_STREAM_READY)) {
do_stop = true;
} else if (pao) {
switch (ost) {
case PA_STREAM_TERMINATED: {
if (pasOutput)
pa_stream_unref(pasOutput);
pa_sample_spec pss = qhSpecMap.value(odev);
if (pss.rate == 0)
pss.rate = SAMPLE_RATE;
if ((pss.channels == 0) || (! g.s.doPositionalAudio()))
pss.channels = 1;
if ((pss.format != PA_SAMPLE_FLOAT32NE) && (pss.format != PA_SAMPLE_S16NE))
pss.format = PA_SAMPLE_FLOAT32NE;
pasOutput = pa_stream_new(pacContext, "Mumble Speakers", &pss, NULL);
pa_stream_set_state_callback(pasOutput, stream_callback, this);
pa_stream_set_write_callback(pasOutput, write_callback, this);
}
case PA_STREAM_UNCONNECTED:
do_start = true;
break;
case PA_STREAM_READY: {
if (g.s.iOutputDelay != iDelayCache) {
do_stop = true;
} else if (g.s.doPositionalAudio() != bPositionalCache) {
do_stop = true;
} else if (odev != qsOutputCache) {
do_stop = true;
}
break;
}
default:
break;
}
}
if (do_stop) {
qWarning("PulseAudio: Stopping output");
pa_stream_disconnect(pasOutput);
} else if (do_start) {
qWarning("PulseAudio: Starting output: %s", qPrintable(odev));
pa_buffer_attr buff;
const pa_sample_spec *pss = pa_stream_get_sample_spec(pasOutput);
const unsigned int iBlockLen = ((pao->iFrameSize * pss->rate) / SAMPLE_RATE) * pss->channels * ((pss->format == PA_SAMPLE_FLOAT32NE) ? sizeof(float) : sizeof(short));
buff.maxlength = iBlockLen * NBLOCKS;
buff.tlength = g.s.iOutputDelay * iBlockLen;
buff.prebuf = buff.tlength;
buff.minreq = iBlockLen;
iDelayCache = g.s.iOutputDelay;
bPositionalCache = g.s.doPositionalAudio();
qsOutputCache = odev;
pa_stream_connect_playback(pasOutput, qPrintable(odev), &buff, PA_STREAM_INTERPOLATE_TIMING, NULL, NULL);
}
}
if (raw_ai) {
QString idev = g.s.qsPulseAudioInput.isEmpty() ? qsDefaultInput : g.s.qsPulseAudioInput;
pa_stream_state ist = pasInput ? pa_stream_get_state(pasInput) : PA_STREAM_TERMINATED;
bool do_stop = false;
bool do_start = false;
if (! pai && (ist == PA_STREAM_READY)) {
do_stop = true;
} else if (pai) {
switch (ist) {
case PA_STREAM_TERMINATED: {
if (pasInput)
pa_stream_unref(pasInput);
pa_sample_spec pss = qhSpecMap.value(idev);
if (pss.rate == 0)
pss.rate = SAMPLE_RATE;
pss.channels = 1;
if ((pss.format != PA_SAMPLE_FLOAT32NE) && (pss.format != PA_SAMPLE_S16NE))
pss.format = PA_SAMPLE_FLOAT32NE;
pasInput = pa_stream_new(pacContext, "Mumble Microphone", &pss, NULL);
pa_stream_set_state_callback(pasInput, stream_callback, this);
pa_stream_set_read_callback(pasInput, read_callback, this);
}
case PA_STREAM_UNCONNECTED:
do_start = true;
break;
case PA_STREAM_READY: {
if (idev != qsInputCache) {
do_stop = true;
}
break;
}
default:
break;
}
}
if (do_stop) {
qWarning("PulseAudio: Stopping input");
pa_stream_disconnect(pasInput);
} else if (do_start) {
qWarning("PulseAudio: Starting input %s",qPrintable(idev));
pa_buffer_attr buff;
const pa_sample_spec *pss = pa_stream_get_sample_spec(pasInput);
const unsigned int iBlockLen = ((pai->iFrameSize * pss->rate) / SAMPLE_RATE) * pss->channels * ((pss->format == PA_SAMPLE_FLOAT32NE) ? sizeof(float) : sizeof(short));
buff.maxlength = iBlockLen * NBLOCKS;
buff.fragsize = iBlockLen;
qsInputCache = idev;
pa_stream_connect_record(pasInput, qPrintable(idev), &buff, PA_STREAM_INTERPOLATE_TIMING);
}
}
if (raw_ai) {
QString odev = g.s.qsPulseAudioOutput.isEmpty() ? qsDefaultOutput : g.s.qsPulseAudioOutput;
QString edev = qhEchoMap.value(odev);
pa_stream_state est = pasSpeaker ? pa_stream_get_state(pasSpeaker) : PA_STREAM_TERMINATED;
bool do_stop = false;
bool do_start = false;
if ((! pai || ! g.s.doEcho()) && (est == PA_STREAM_READY)) {
do_stop = true;
} else if (pai && g.s.doEcho()) {
switch (est) {
case PA_STREAM_TERMINATED: {
if (pasSpeaker)
pa_stream_unref(pasSpeaker);
pa_sample_spec pss = qhSpecMap.value(edev);
if (pss.rate == 0)
pss.rate = SAMPLE_RATE;
pss.channels = 1;
if ((pss.format != PA_SAMPLE_FLOAT32NE) && (pss.format != PA_SAMPLE_S16NE))
pss.format = PA_SAMPLE_FLOAT32NE;
pasSpeaker = pa_stream_new(pacContext, "Mumble Speakers (Echo)", &pss, NULL);
pa_stream_set_state_callback(pasSpeaker, stream_callback, this);
pa_stream_set_read_callback(pasSpeaker, read_callback, this);
}
case PA_STREAM_UNCONNECTED:
do_start = true;
break;
case PA_STREAM_READY: {
if (edev != qsEchoCache) {
do_stop = true;
}
break;
}
default:
break;
}
}
if (do_stop) {
qWarning("PulseAudio: Stopping echo");
pa_stream_disconnect(pasSpeaker);
} else if (do_start) {
qWarning("PulseAudio: Starting echo: %s", qPrintable(edev));
pa_buffer_attr buff;
const pa_sample_spec *pss = pa_stream_get_sample_spec(pasSpeaker);
const unsigned int iBlockLen = ((pai->iFrameSize * pss->rate) / SAMPLE_RATE) * pss->channels * ((pss->format == PA_SAMPLE_FLOAT32NE) ? sizeof(float) : sizeof(short));
buff.maxlength = iBlockLen * NBLOCKS;
buff.fragsize = iBlockLen;
qsEchoCache = edev;
pa_stream_connect_record(pasSpeaker, qPrintable(edev), &buff, PA_STREAM_INTERPOLATE_TIMING);
}
}
}
void PulseAudioSystem::context_state_callback(pa_context *c, void *userdata) {
PulseAudioSystem *pas = reinterpret_cast<PulseAudioSystem *>(userdata);
pas->contextCallback(c);
}
void PulseAudioSystem::subscribe_callback(pa_context *, pa_subscription_event_type, unsigned int, void *userdata) {
PulseAudioSystem *pas = reinterpret_cast<PulseAudioSystem *>(userdata);
qWarning("PulseAudio: Sinks or inputs changed (inserted or removed sound card)");
pas->query();
}
void PulseAudioSystem::sink_callback(pa_context *, const pa_sink_info *i, int eol, void *userdata) {
PulseAudioSystem *pas = reinterpret_cast<PulseAudioSystem *>(userdata);
if (!i || eol) {
pas->bSinkDone = true;
pas->wakeup();
return;
}
const QString name = QLatin1String(i->name);
pas->qhIndexMap.insert(name, i->index);
pas->qhSpecMap.insert(name, i->sample_spec);
pas->qhOutput.insert(name, QLatin1String(i->description));
pas->qhEchoMap.insert(name, QLatin1String(i->monitor_source_name));
}
void PulseAudioSystem::source_callback(pa_context *, const pa_source_info *i, int eol, void *userdata) {
PulseAudioSystem *pas = reinterpret_cast<PulseAudioSystem *>(userdata);
if (!i || eol) {
pas->bSourceDone = true;
pas->wakeup();
return;
}
const QString name = QLatin1String(i->name);
pas->qhIndexMap.insert(name, i->index);
pas->qhSpecMap.insert(name, i->sample_spec);
if (i->monitor_of_sink == PA_INVALID_INDEX)
pas->qhInput.insert(QLatin1String(i->name), QLatin1String(i->description));
}
void PulseAudioSystem::server_callback(pa_context *, const pa_server_info *i, void *userdata) {
PulseAudioSystem *pas = reinterpret_cast<PulseAudioSystem *>(userdata);
pas->qsDefaultInput = QLatin1String(i->default_source_name);
pas->qsDefaultOutput = QLatin1String(i->default_sink_name);
pas->bServerDone = true;
pas->wakeup();
}
void PulseAudioSystem::stream_callback(pa_stream *s, void *userdata) {
PulseAudioSystem *pas = reinterpret_cast<PulseAudioSystem *>(userdata);
switch (pa_stream_get_state(s)) {
case PA_STREAM_FAILED:
qWarning("PulseAudio: Stream error: %s", pa_strerror(pa_context_errno(pa_stream_get_context(s))));
break;
default:
break;
}
pas->wakeup();
}
void PulseAudioSystem::read_callback(pa_stream *s, size_t bytes, void *userdata) {
PulseAudioSystem *pas = reinterpret_cast<PulseAudioSystem *>(userdata);
size_t length = bytes;
const void *data;
pa_stream_peek(s, &data, &length);
AudioInputPtr ai = g.ai;
PulseAudioInput *pai = dynamic_cast<PulseAudioInput *>(ai.get());
if (! pai) {
pa_stream_drop(s);
pas->wakeup();
return;
}
const pa_sample_spec *pss = pa_stream_get_sample_spec(s);
if (s == pas->pasInput) {
if (!pa_sample_spec_equal(pss, &pai->pssMic)) {
pai->pssMic = *pss;
pai->iMicFreq = pss->rate;
pai->iMicChannels = pss->channels;
if (pss->format == PA_SAMPLE_FLOAT32NE)
pai->eMicFormat = AudioInput::SampleFloat;
else
pai->eMicFormat = AudioInput::SampleShort;
pai->initializeMixer();
}
pai->addMic(data, length / pai->iMicSampleSize);
} else if (s == pas->pasSpeaker) {
if (!pa_sample_spec_equal(pss, &pai->pssEcho)) {
pai->pssEcho = *pss;
pai->iEchoFreq = pss->rate;
pai->iEchoChannels = pss->channels;
if (pss->format == PA_SAMPLE_FLOAT32NE)
pai->eEchoFormat = AudioInput::SampleFloat;
else
pai->eEchoFormat = AudioInput::SampleShort;
pai->initializeMixer();
}
pai->addEcho(data, length / pai->iEchoSampleSize);
}
pa_stream_drop(s);
}
void PulseAudioSystem::write_callback(pa_stream *s, size_t bytes, void *userdata) {
PulseAudioSystem *pas = reinterpret_cast<PulseAudioSystem *>(userdata);
Q_ASSERT(s == pas->pasOutput);
AudioOutputPtr ao = g.ao;
PulseAudioOutput *pao = dynamic_cast<PulseAudioOutput *>(ao.get());
int samples = bytes / sizeof(float);
float buffer[samples];
if (! pao) {
// Transitioning, but most likely transitions back, so just zero.
memset(buffer, 0, bytes);
pa_stream_write(s, buffer, bytes, NULL, 0, PA_SEEK_RELATIVE);
pas->wakeup();
return;
}
const pa_sample_spec *pss = pa_stream_get_sample_spec(s);
const pa_channel_map *pcm = pa_stream_get_channel_map(pas->pasOutput);
if (!pa_sample_spec_equal(pss, &pao->pss) || !pa_channel_map_equal(pcm, &pao->pcm)) {
pao->pss = *pss;
pao->pcm = *pcm;
if (pss->format == PA_SAMPLE_FLOAT32NE)
pao->eSampleFormat = AudioOutput::SampleFloat;
else
pao->eSampleFormat = AudioOutput::SampleShort;
pao->iMixerFreq = pss->rate;
pao->iChannels = pss->channels;
unsigned int chanmasks[pss->channels];
for (int i=0;i<pss->channels;++i) {
unsigned int cm = 0;
switch (pcm->map[i]) {
case PA_CHANNEL_POSITION_LEFT:
cm = SPEAKER_FRONT_LEFT;
break;
case PA_CHANNEL_POSITION_RIGHT:
cm = SPEAKER_FRONT_RIGHT;
break;
case PA_CHANNEL_POSITION_CENTER:
cm = SPEAKER_FRONT_CENTER;
break;
case PA_CHANNEL_POSITION_REAR_LEFT:
cm = SPEAKER_BACK_LEFT;
break;
case PA_CHANNEL_POSITION_REAR_RIGHT:
cm = SPEAKER_BACK_RIGHT;
break;
case PA_CHANNEL_POSITION_REAR_CENTER:
cm = SPEAKER_BACK_CENTER;
break;
case PA_CHANNEL_POSITION_LFE:
cm = SPEAKER_LOW_FREQUENCY;
break;
case PA_CHANNEL_POSITION_SIDE_LEFT:
cm = SPEAKER_SIDE_LEFT;
break;
case PA_CHANNEL_POSITION_SIDE_RIGHT:
cm = SPEAKER_SIDE_RIGHT;
break;
case PA_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER:
cm = SPEAKER_FRONT_LEFT_OF_CENTER;
break;
case PA_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER:
cm = SPEAKER_FRONT_RIGHT_OF_CENTER;
break;
default:
cm = 0;
break;
}
chanmasks[i] = cm;
}
pao->initializeMixer(chanmasks);
}
const unsigned int iSampleSize = pao->iSampleSize;
samples = bytes / iSampleSize;
if (! pao->mix(buffer, samples))
memset(buffer, 0, samples * iSampleSize);
pa_stream_write(s, buffer, iSampleSize * samples, NULL, 0, PA_SEEK_RELATIVE);
}
void PulseAudioSystem::query() {
bSourceDone=bSinkDone=bServerDone = false;
qhInput.clear();
qhOutput.clear();
qhEchoMap.clear();
qhInput.insert(QString(), tr("Default Input"));
qhOutput.insert(QString(), tr("Default Output"));
pa_operation_unref(pa_context_get_server_info(pacContext, server_callback, this));
pa_operation_unref(pa_context_get_sink_info_list(pacContext, sink_callback, this));
pa_operation_unref(pa_context_get_source_info_list(pacContext, source_callback, this));
wakeup();
}
void PulseAudioSystem::contextCallback(pa_context *c) {
Q_ASSERT(c == pacContext);
switch (pa_context_get_state(c)) {
case PA_CONTEXT_READY:
bPulseIsGood = true;
pa_operation_unref(pa_context_subscribe(pacContext, PA_SUBSCRIPTION_MASK_SOURCE, NULL, this));
pa_operation_unref(pa_context_subscribe(pacContext, PA_SUBSCRIPTION_MASK_SINK, NULL, this));
query();
break;
case PA_CONTEXT_TERMINATED:
qWarning("PulseAudio: Forcibly disconnected from PulseAudio");
break;
case PA_CONTEXT_FAILED:
qWarning("PulseAudio: Connection failure: %s", pa_strerror(pa_context_errno(c)));
break;
default:
return;
}
qwcWait.wakeAll();
}
PulseAudioInputRegistrar::PulseAudioInputRegistrar() : AudioInputRegistrar(QLatin1String("PulseAudio"), 10) {
}
AudioInput *PulseAudioInputRegistrar::create() {
return new PulseAudioInput();
}
const QList<audioDevice> PulseAudioInputRegistrar::getDeviceChoices() {
QList<audioDevice> qlReturn;
QStringList qlInputDevs = pasys->qhInput.keys();
qSort(qlInputDevs);
if (qlInputDevs.contains(g.s.qsPulseAudioInput)) {
qlInputDevs.removeAll(g.s.qsPulseAudioInput);
qlInputDevs.prepend(g.s.qsPulseAudioInput);
}
foreach(const QString &dev, qlInputDevs) {
qlReturn << audioDevice(pasys->qhInput.value(dev), dev);
}
return qlReturn;
}
void PulseAudioInputRegistrar::setDeviceChoice(const QVariant &choice, Settings &s) {
s.qsPulseAudioInput = choice.toString();
}
bool PulseAudioInputRegistrar::canEcho(const QString &osys) {
return (osys == name);
}
PulseAudioOutputRegistrar::PulseAudioOutputRegistrar() : AudioOutputRegistrar(QLatin1String("PulseAudio"), 10) {
}
AudioOutput *PulseAudioOutputRegistrar::create() {
return new PulseAudioOutput();
}
const QList<audioDevice> PulseAudioOutputRegistrar::getDeviceChoices() {
QList<audioDevice> qlReturn;
QStringList qlOutputDevs = pasys->qhOutput.keys();
qSort(qlOutputDevs);
if (qlOutputDevs.contains(g.s.qsPulseAudioOutput)) {
qlOutputDevs.removeAll(g.s.qsPulseAudioOutput);
qlOutputDevs.prepend(g.s.qsPulseAudioOutput);
}
foreach(const QString &dev, qlOutputDevs) {
qlReturn << audioDevice(pasys->qhOutput.value(dev), dev);
}
return qlReturn;
}
void PulseAudioOutputRegistrar::setDeviceChoice(const QVariant &choice, Settings &s) {
s.qsPulseAudioOutput = choice.toString();
}
PulseAudioInput::PulseAudioInput() {
pssMic.rate = 0;
pssEcho.rate = 0;
bRunning = true;
if (pasys)
pasys->wakeup();
};
PulseAudioInput::~PulseAudioInput() {
bRunning = false;
if (pasys)
pasys->wakeup();
}
PulseAudioOutput::PulseAudioOutput() {
pss.rate = 0;
pcm.channels = 0;
bRunning = true;
if (pasys)
pasys->wakeup();
}
PulseAudioOutput::~PulseAudioOutput() {
bRunning = false;
if (pasys)
pasys->wakeup();
}