mirror of
https://github.com/danog/libtgvoip.git
synced 2024-11-27 04:34:42 +01:00
5109903e02
On OS X, audio now plays only out of the right speaker on MacBook Pro's to avoid insane echo when using built-in speakers Fixed crash on Linux
110 lines
2.5 KiB
C++
110 lines
2.5 KiB
C++
//
|
|
// 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"
|
|
#if defined(__ANDROID__)
|
|
#include "../os/android/AudioOutputOpenSLES.h"
|
|
#include "../os/android/AudioOutputAndroid.h"
|
|
#elif defined(__APPLE__)
|
|
#include <TargetConditionals.h>
|
|
#if TARGET_OS_IPHONE
|
|
#include "../os/darwin/AudioOutputAudioUnit.h"
|
|
#else
|
|
#include "../os/darwin/AudioOutputAudioUnitOSX.h"
|
|
#endif
|
|
#elif defined(_WIN32)
|
|
#include "../os/windows/AudioOutputWave.h"
|
|
#include "../os/windows/AudioOutputWASAPI.h"
|
|
#elif defined(__linux__)
|
|
#include "../os/linux/AudioOutputALSA.h"
|
|
#else
|
|
#error "Unsupported operating system"
|
|
#endif
|
|
|
|
using namespace tgvoip;
|
|
using namespace tgvoip::audio;
|
|
|
|
#if defined(__ANDROID__)
|
|
int AudioOutput::systemVersion;
|
|
#endif
|
|
int32_t AudioOutput::estimatedDelay=60;
|
|
|
|
AudioOutput *AudioOutput::Create(std::string deviceID){
|
|
#if defined(__ANDROID__)
|
|
if(systemVersion<21)
|
|
return new AudioOutputAndroid();
|
|
return new AudioOutputOpenSLES();
|
|
#elif defined(__APPLE__)
|
|
#if TARGET_OS_OSX
|
|
return new AudioOutputAudioUnit(deviceID);
|
|
#else
|
|
return new AudioOutputAudioUnit();
|
|
#endif
|
|
#elif defined(_WIN32)
|
|
#ifdef TGVOIP_WINXP_COMPAT
|
|
if(LOBYTE(LOWORD(GetVersion()))<6)
|
|
return new AudioOutputWave(deviceID);
|
|
#endif
|
|
return new AudioOutputWASAPI(deviceID);
|
|
#elif defined(__linux__)
|
|
return new AudioOutputALSA(deviceID);
|
|
#endif
|
|
}
|
|
|
|
AudioOutput::AudioOutput() : currentDevice("default"){
|
|
failed=false;
|
|
}
|
|
|
|
AudioOutput::AudioOutput(std::string deviceID) : currentDevice(deviceID){
|
|
failed=false;
|
|
}
|
|
|
|
AudioOutput::~AudioOutput(){
|
|
|
|
}
|
|
|
|
|
|
int32_t AudioOutput::GetEstimatedDelay(){
|
|
#if defined(__ANDROID__)
|
|
return systemVersion<21 ? 150 : 50;
|
|
#endif
|
|
return estimatedDelay;
|
|
}
|
|
|
|
float AudioOutput::GetLevel(){
|
|
return 0;
|
|
}
|
|
|
|
|
|
void AudioOutput::EnumerateDevices(std::vector<AudioOutputDevice>& devs){
|
|
#if defined(__APPLE__) && TARGET_OS_OSX
|
|
AudioOutputAudioUnit::EnumerateDevices(devs);
|
|
#elif defined(_WIN32)
|
|
#ifdef TGVOIP_WINXP_COMPAT
|
|
if(LOBYTE(LOWORD(GetVersion()))<6){
|
|
AudioOutputWave::EnumerateDevices(devs);
|
|
return;
|
|
}
|
|
#endif
|
|
AudioOutputWASAPI::EnumerateDevices(devs);
|
|
#elif defined(__linux__) && !defined(__ANDROID__)
|
|
AudioOutputALSA::EnumerateDevices(devs);
|
|
#endif
|
|
}
|
|
|
|
|
|
std::string AudioOutput::GetCurrentDevice(){
|
|
return currentDevice;
|
|
}
|
|
|
|
void AudioOutput::SetCurrentDevice(std::string deviceID){
|
|
|
|
}
|
|
|
|
bool AudioOutput::IsInitialized(){
|
|
return !failed;
|
|
}
|