mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-02 09:37:52 +01:00
6dcf281d24
Fixes on WinRT
123 lines
2.8 KiB
C++
123 lines
2.8 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)
|
|
#ifdef TGVOIP_WINXP_COMPAT
|
|
#include "../os/windows/AudioOutputWave.h"
|
|
#endif
|
|
#include "../os/windows/AudioOutputWASAPI.h"
|
|
#elif defined(__linux__)
|
|
#include "../os/linux/AudioOutputALSA.h"
|
|
#include "../os/linux/AudioOutputPulse.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__)
|
|
if(AudioOutputPulse::IsAvailable()){
|
|
AudioOutputPulse* aop=new AudioOutputPulse(deviceID);
|
|
if(!aop->IsInitialized())
|
|
delete aop;
|
|
else
|
|
return aop;
|
|
}
|
|
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__)
|
|
if(AudioOutputPulse::IsAvailable())
|
|
AudioOutputPulse::EnumerateDevices(devs);
|
|
else
|
|
AudioOutputALSA::EnumerateDevices(devs);
|
|
#endif
|
|
}
|
|
|
|
|
|
std::string AudioOutput::GetCurrentDevice(){
|
|
return currentDevice;
|
|
}
|
|
|
|
void AudioOutput::SetCurrentDevice(std::string deviceID){
|
|
|
|
}
|
|
|
|
bool AudioOutput::IsInitialized(){
|
|
return !failed;
|
|
}
|