Repo created
This commit is contained in:
parent
81b91f4139
commit
f8c34fa5ee
22732 changed files with 4815320 additions and 2 deletions
97
TMessagesProj/jni/voip/libtgvoip/audio/AudioInput.cpp
Normal file
97
TMessagesProj/jni/voip/libtgvoip/audio/AudioInput.cpp
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
//
|
||||
// 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 "AudioInput.h"
|
||||
#include "../logging.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#if defined(TGVOIP_USE_CALLBACK_AUDIO_IO)
|
||||
// nothing
|
||||
#elif defined(__ANDROID__)
|
||||
#include "../os/android/AudioInputAndroid.h"
|
||||
#elif defined(__APPLE__)
|
||||
#include <TargetConditionals.h>
|
||||
#include "../os/darwin/AudioInputAudioUnit.h"
|
||||
#if TARGET_OS_OSX
|
||||
#include "../os/darwin/AudioInputAudioUnitOSX.h"
|
||||
#endif
|
||||
#elif defined(_WIN32)
|
||||
#ifdef TGVOIP_WINXP_COMPAT
|
||||
#include "../os/windows/AudioInputWave.h"
|
||||
#endif
|
||||
#include "../os/windows/AudioInputWASAPI.h"
|
||||
#elif defined(__linux__) || defined(__FreeBSD_kernel__) || defined(__gnu_hurd__)
|
||||
#ifndef WITHOUT_ALSA
|
||||
#include "../os/linux/AudioInputALSA.h"
|
||||
#endif
|
||||
#ifndef WITHOUT_PULSE
|
||||
#include "../os/linux/AudioPulse.h"
|
||||
#endif
|
||||
#else
|
||||
#error "Unsupported operating system"
|
||||
#endif
|
||||
|
||||
using namespace tgvoip;
|
||||
using namespace tgvoip::audio;
|
||||
|
||||
int32_t AudioInput::estimatedDelay=60;
|
||||
|
||||
AudioInput::AudioInput() : currentDevice("default"){
|
||||
failed=false;
|
||||
}
|
||||
|
||||
AudioInput::AudioInput(std::string deviceID) : currentDevice(deviceID){
|
||||
failed=false;
|
||||
}
|
||||
|
||||
|
||||
AudioInput::~AudioInput(){
|
||||
|
||||
}
|
||||
|
||||
bool AudioInput::IsInitialized(){
|
||||
return !failed;
|
||||
}
|
||||
|
||||
void AudioInput::EnumerateDevices(std::vector<AudioInputDevice>& devs){
|
||||
#if defined(TGVOIP_USE_CALLBACK_AUDIO_IO)
|
||||
// not supported
|
||||
#elif defined(__APPLE__) && TARGET_OS_OSX
|
||||
AudioInputAudioUnitLegacy::EnumerateDevices(devs);
|
||||
#elif defined(_WIN32)
|
||||
#ifdef TGVOIP_WINXP_COMPAT
|
||||
if(LOBYTE(LOWORD(GetVersion()))<6){
|
||||
AudioInputWave::EnumerateDevices(devs);
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
AudioInputWASAPI::EnumerateDevices(devs);
|
||||
#elif defined(__linux__) && !defined(__ANDROID__)
|
||||
#if !defined(WITHOUT_PULSE) && !defined(WITHOUT_ALSA)
|
||||
if(!AudioInputPulse::EnumerateDevices(devs))
|
||||
AudioInputALSA::EnumerateDevices(devs);
|
||||
#elif defined(WITHOUT_PULSE)
|
||||
AudioInputALSA::EnumerateDevices(devs);
|
||||
#else
|
||||
AudioInputPulse::EnumerateDevices(devs)
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
std::string AudioInput::GetCurrentDevice(){
|
||||
return currentDevice;
|
||||
}
|
||||
|
||||
void AudioInput::SetCurrentDevice(std::string deviceID){
|
||||
|
||||
}
|
||||
|
||||
int32_t AudioInput::GetEstimatedDelay(){
|
||||
return estimatedDelay;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue