2014-11-17 03:49:20 +08:00
|
|
|
/*
|
2015-06-06 09:40:08 +08:00
|
|
|
Copyright © 2014-2015 by The qTox Project
|
|
|
|
|
2014-11-17 03:49:20 +08:00
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
2014-11-17 03:49:20 +08:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2015-06-06 09:40:08 +08:00
|
|
|
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
2014-11-17 03:49:20 +08:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-06-06 09:40:08 +08:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-11-17 03:49:20 +08:00
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
2014-11-17 03:49:20 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-11-17 02:04:45 +08:00
|
|
|
#ifndef AUDIO_H
|
|
|
|
#define AUDIO_H
|
|
|
|
|
2014-11-20 05:26:04 +08:00
|
|
|
#include <QObject>
|
2015-10-18 21:23:33 +08:00
|
|
|
#include <QMutexLocker>
|
2014-11-17 02:04:45 +08:00
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
#if defined(__APPLE__) && defined(__MACH__)
|
|
|
|
#include <OpenAL/al.h>
|
|
|
|
#include <OpenAL/alc.h>
|
|
|
|
#else
|
|
|
|
#include <AL/al.h>
|
|
|
|
#include <AL/alc.h>
|
|
|
|
#endif
|
|
|
|
|
2014-11-20 05:26:04 +08:00
|
|
|
class QTimer;
|
|
|
|
struct Tox;
|
2015-02-18 14:25:25 +08:00
|
|
|
class AudioFilterer;
|
2014-11-17 02:04:45 +08:00
|
|
|
|
2015-08-19 01:40:11 +08:00
|
|
|
class Audio : public QObject
|
2014-11-17 02:04:45 +08:00
|
|
|
{
|
2014-11-20 05:26:04 +08:00
|
|
|
Q_OBJECT
|
|
|
|
|
2014-11-17 02:04:45 +08:00
|
|
|
public:
|
2015-10-18 21:51:38 +08:00
|
|
|
static Audio& getInstance();
|
2014-11-20 05:26:04 +08:00
|
|
|
|
2015-10-18 21:23:33 +08:00
|
|
|
public:
|
|
|
|
void startAudioThread();
|
|
|
|
|
2015-10-20 09:46:44 +08:00
|
|
|
qreal getOutputVolume();
|
|
|
|
void setOutputVolume(qreal volume);
|
|
|
|
|
|
|
|
void setInputVolume(qreal volume);
|
|
|
|
|
|
|
|
void subscribeInput();
|
|
|
|
void unsubscribeInput();
|
|
|
|
void openInput(const QString& inDevDescr);
|
|
|
|
bool openOutput(const QString& outDevDescr);
|
|
|
|
|
|
|
|
bool isInputReady();
|
|
|
|
bool isOutputClosed();
|
|
|
|
|
|
|
|
void playMono16Sound(const QByteArray& data);
|
|
|
|
bool tryCaptureSamples(uint8_t* buf, int framesize);
|
2014-11-17 02:04:45 +08:00
|
|
|
|
2014-11-20 05:26:04 +08:00
|
|
|
static void playGroupAudioQueued(Tox*, int group, int peer, const int16_t* data,
|
|
|
|
unsigned samples, uint8_t channels, unsigned sample_rate, void*);
|
|
|
|
|
2015-02-18 14:25:25 +08:00
|
|
|
#ifdef QTOX_FILTER_AUDIO
|
|
|
|
static void getEchoesToFilter(AudioFilterer* filter, int framesize);
|
|
|
|
// is a null op #ifndef ALC_LOOPBACK_CAPTURE_SAMPLES
|
|
|
|
#endif
|
|
|
|
|
2014-11-20 05:26:04 +08:00
|
|
|
public slots:
|
2015-10-20 09:46:44 +08:00
|
|
|
void closeInput();
|
|
|
|
void closeOutput();
|
2014-11-20 05:26:04 +08:00
|
|
|
void playGroupAudio(int group, int peer, const int16_t* data,
|
|
|
|
unsigned samples, uint8_t channels, unsigned sample_rate);
|
|
|
|
|
2015-08-19 01:40:11 +08:00
|
|
|
signals:
|
|
|
|
void groupAudioPlayed(int group, int peer, unsigned short volume);
|
|
|
|
|
2014-11-17 02:04:45 +08:00
|
|
|
private:
|
2015-10-18 21:23:33 +08:00
|
|
|
Audio();
|
2015-01-24 22:31:11 +08:00
|
|
|
~Audio();
|
2015-10-18 21:23:33 +08:00
|
|
|
|
|
|
|
void playAudioBuffer(ALuint alSource, const int16_t *data, int samples, unsigned channels, int sampleRate);
|
2014-11-17 02:04:45 +08:00
|
|
|
|
|
|
|
private:
|
2014-11-20 05:26:04 +08:00
|
|
|
static Audio* instance;
|
2015-10-18 21:23:33 +08:00
|
|
|
|
2015-10-18 21:51:38 +08:00
|
|
|
private:
|
2015-10-18 21:23:33 +08:00
|
|
|
QThread* audioThread;
|
|
|
|
QMutex audioInLock;
|
|
|
|
QMutex audioOutLock;
|
2015-10-19 03:19:33 +08:00
|
|
|
std::atomic<int> inputSubscriptions;
|
2015-10-18 21:23:33 +08:00
|
|
|
ALCdevice* alOutDev;
|
|
|
|
ALCdevice* alInDev;
|
|
|
|
qreal outputVolume;
|
|
|
|
qreal inputVolume;
|
|
|
|
ALuint alMainSource;
|
|
|
|
ALCcontext* alContext;
|
|
|
|
QTimer* timer;
|
2014-11-17 02:04:45 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // AUDIO_H
|