2017-02-02 17:24:40 +01:00
|
|
|
//
|
|
|
|
// libtgvoip is free and unencumbered public domain software.
|
|
|
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
|
|
|
// you should have received with this source code distribution.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "AudioOutput.h"
|
2017-05-17 15:52:42 +02:00
|
|
|
#include "../logging.h"
|
2017-06-19 23:37:10 +02:00
|
|
|
|
2017-07-04 11:30:21 +02:00
|
|
|
#ifdef LIBTGVOIP_CUSTOM
|
2017-07-04 15:49:09 +02:00
|
|
|
#include "../../audio/AudioOutputModule.h"
|
2017-07-04 11:30:21 +02:00
|
|
|
#elif defined(__ANDROID__)
|
2017-02-02 17:24:40 +01:00
|
|
|
#include "../os/android/AudioOutputOpenSLES.h"
|
|
|
|
#include "../os/android/AudioOutputAndroid.h"
|
|
|
|
#elif defined(__APPLE__)
|
2017-04-09 18:14:33 +02:00
|
|
|
#include <TargetConditionals.h>
|
2017-02-02 17:24:40 +01:00
|
|
|
#include "../os/darwin/AudioOutputAudioUnit.h"
|
2017-08-01 19:17:44 +02:00
|
|
|
#if TARGET_OS_OSX
|
2017-04-09 18:14:33 +02:00
|
|
|
#include "../os/darwin/AudioOutputAudioUnitOSX.h"
|
|
|
|
#endif
|
2017-04-17 20:57:07 +02:00
|
|
|
#elif defined(_WIN32)
|
2017-05-11 05:21:04 +02:00
|
|
|
#ifdef TGVOIP_WINXP_COMPAT
|
2017-04-17 20:57:07 +02:00
|
|
|
#include "../os/windows/AudioOutputWave.h"
|
2017-05-11 05:21:04 +02:00
|
|
|
#endif
|
2017-05-04 23:44:23 +02:00
|
|
|
#include "../os/windows/AudioOutputWASAPI.h"
|
2017-04-17 20:57:07 +02:00
|
|
|
#elif defined(__linux__)
|
|
|
|
#include "../os/linux/AudioOutputALSA.h"
|
2017-05-12 18:29:35 +02:00
|
|
|
#include "../os/linux/AudioOutputPulse.h"
|
2017-02-02 17:24:40 +01:00
|
|
|
#else
|
|
|
|
#error "Unsupported operating system"
|
|
|
|
#endif
|
|
|
|
|
2017-04-28 13:17:56 +02:00
|
|
|
using namespace tgvoip;
|
|
|
|
using namespace tgvoip::audio;
|
|
|
|
|
2017-02-02 17:24:40 +01:00
|
|
|
#if defined(__ANDROID__)
|
2017-04-28 13:17:56 +02:00
|
|
|
int AudioOutput::systemVersion;
|
2017-02-02 17:24:40 +01:00
|
|
|
#endif
|
2017-05-06 01:18:34 +02:00
|
|
|
int32_t AudioOutput::estimatedDelay=60;
|
2017-02-02 17:24:40 +01:00
|
|
|
|
2017-07-13 17:43:13 +02:00
|
|
|
AudioOutput *AudioOutput::Create(std::string deviceID, VoIPController* controller){
|
2017-07-04 11:30:21 +02:00
|
|
|
#ifdef LIBTGVOIP_CUSTOM
|
2017-07-04 15:49:09 +02:00
|
|
|
return new AudioOutputModule(deviceID, controller);
|
2017-07-04 11:30:21 +02:00
|
|
|
#elif defined(__ANDROID__)
|
2018-03-26 15:51:04 +02:00
|
|
|
return new AudioOutputAndroid();
|
2017-02-02 17:24:40 +01:00
|
|
|
#elif defined(__APPLE__)
|
2017-04-28 13:17:56 +02:00
|
|
|
#if TARGET_OS_OSX
|
2017-08-01 19:17:44 +02:00
|
|
|
if(kCFCoreFoundationVersionNumber<kCFCoreFoundationVersionNumber10_7)
|
|
|
|
return new AudioOutputAudioUnitLegacy(deviceID);
|
2017-04-28 13:17:56 +02:00
|
|
|
#endif
|
2017-08-01 19:17:44 +02:00
|
|
|
return new AudioOutputAudioUnit(deviceID);
|
2017-04-17 20:57:07 +02:00
|
|
|
#elif defined(_WIN32)
|
2017-05-04 23:44:23 +02:00
|
|
|
#ifdef TGVOIP_WINXP_COMPAT
|
|
|
|
if(LOBYTE(LOWORD(GetVersion()))<6)
|
|
|
|
return new AudioOutputWave(deviceID);
|
|
|
|
#endif
|
|
|
|
return new AudioOutputWASAPI(deviceID);
|
2017-04-17 20:57:07 +02:00
|
|
|
#elif defined(__linux__)
|
2017-05-12 18:29:35 +02:00
|
|
|
if(AudioOutputPulse::IsAvailable()){
|
|
|
|
AudioOutputPulse* aop=new AudioOutputPulse(deviceID);
|
|
|
|
if(!aop->IsInitialized())
|
|
|
|
delete aop;
|
|
|
|
else
|
|
|
|
return aop;
|
2017-05-17 13:30:14 +02:00
|
|
|
LOGW("out: PulseAudio available but not working; trying ALSA");
|
2017-05-12 18:29:35 +02:00
|
|
|
}
|
2017-05-04 23:44:23 +02:00
|
|
|
return new AudioOutputALSA(deviceID);
|
2017-02-02 17:24:40 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-04-28 13:17:56 +02:00
|
|
|
AudioOutput::AudioOutput() : currentDevice("default"){
|
2017-04-17 20:57:07 +02:00
|
|
|
failed=false;
|
|
|
|
}
|
2017-02-02 17:24:40 +01:00
|
|
|
|
2017-04-28 13:17:56 +02:00
|
|
|
AudioOutput::AudioOutput(std::string deviceID) : currentDevice(deviceID){
|
|
|
|
failed=false;
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioOutput::~AudioOutput(){
|
2017-04-09 18:14:33 +02:00
|
|
|
|
2017-02-02 17:24:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-28 13:17:56 +02:00
|
|
|
int32_t AudioOutput::GetEstimatedDelay(){
|
2017-02-02 17:24:40 +01:00
|
|
|
#if defined(__ANDROID__)
|
|
|
|
return systemVersion<21 ? 150 : 50;
|
|
|
|
#endif
|
2017-05-06 01:18:34 +02:00
|
|
|
return estimatedDelay;
|
2017-02-02 17:24:40 +01:00
|
|
|
}
|
|
|
|
|
2017-04-28 13:17:56 +02:00
|
|
|
float AudioOutput::GetLevel(){
|
2017-04-09 18:14:33 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2017-04-28 13:17:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
void AudioOutput::EnumerateDevices(std::vector<AudioOutputDevice>& devs){
|
2017-07-04 11:30:21 +02:00
|
|
|
#ifdef LIBTGVOIP_CUSTOM
|
2017-07-04 15:49:09 +02:00
|
|
|
AudioOutputModule::EnumerateDevices(devs);
|
2017-07-04 11:30:21 +02:00
|
|
|
#elif defined(__APPLE__) && TARGET_OS_OSX
|
2017-08-01 19:17:44 +02:00
|
|
|
AudioOutputAudioUnitLegacy::EnumerateDevices(devs);
|
2017-04-28 13:17:56 +02:00
|
|
|
#elif defined(_WIN32)
|
2017-05-04 23:44:23 +02:00
|
|
|
#ifdef TGVOIP_WINXP_COMPAT
|
|
|
|
if(LOBYTE(LOWORD(GetVersion()))<6){
|
|
|
|
AudioOutputWave::EnumerateDevices(devs);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
AudioOutputWASAPI::EnumerateDevices(devs);
|
2017-04-28 13:17:56 +02:00
|
|
|
#elif defined(__linux__) && !defined(__ANDROID__)
|
2017-05-24 02:31:35 +02:00
|
|
|
if(!AudioOutputPulse::IsAvailable() || !AudioOutputPulse::EnumerateDevices(devs))
|
2017-05-12 18:29:35 +02:00
|
|
|
AudioOutputALSA::EnumerateDevices(devs);
|
2017-04-28 13:17:56 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string AudioOutput::GetCurrentDevice(){
|
|
|
|
return currentDevice;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioOutput::SetCurrentDevice(std::string deviceID){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioOutput::IsInitialized(){
|
|
|
|
return !failed;
|
|
|
|
}
|