60 lines
2.0 KiB
C++
60 lines
2.0 KiB
C++
#ifndef TGCALLS_INSTANCE_IMPL_LEGACY_H
|
|
#define TGCALLS_INSTANCE_IMPL_LEGACY_H
|
|
|
|
#include "Instance.h"
|
|
|
|
#include "VoIPController.h"
|
|
#include "VoIPServerConfig.h"
|
|
|
|
namespace tgcalls {
|
|
|
|
class InstanceImplLegacy : public Instance {
|
|
public:
|
|
explicit InstanceImplLegacy(Descriptor &&descriptor);
|
|
~InstanceImplLegacy();
|
|
|
|
static int GetConnectionMaxLayer();
|
|
static std::vector<std::string> GetVersions();
|
|
|
|
void receiveSignalingData(const std::vector<uint8_t> &data) override;
|
|
void setNetworkType(NetworkType networkType) override;
|
|
void setMuteMicrophone(bool muteMicrophone) override;
|
|
void setVideoCapture(std::shared_ptr<VideoCaptureInterface> videoCapture) override;
|
|
void sendVideoDeviceUpdated() override;
|
|
void setRequestedVideoAspect(float aspect) override;
|
|
bool supportsVideo() override {
|
|
return false;
|
|
}
|
|
void setIncomingVideoOutput(std::shared_ptr<rtc::VideoSinkInterface<webrtc::VideoFrame>> sink) override;
|
|
void setAudioOutputGainControlEnabled(bool enabled) override;
|
|
void setEchoCancellationStrength(int strength) override;
|
|
void setAudioInputDevice(std::string id) override;
|
|
void setAudioOutputDevice(std::string id) override;
|
|
void setInputVolume(float level) override;
|
|
void setOutputVolume(float level) override;
|
|
void setAudioOutputDuckingEnabled(bool enabled) override;
|
|
void setIsLowBatteryLevel(bool isLowBatteryLevel) override;
|
|
|
|
std::string getLastError() override;
|
|
std::string getDebugInfo() override;
|
|
int64_t getPreferredRelayId() override;
|
|
TrafficStats getTrafficStats() override;
|
|
PersistentState getPersistentState() override;
|
|
void stop(std::function<void(FinalState)> completion) override;
|
|
|
|
private:
|
|
tgvoip::VoIPController *controller_;
|
|
std::function<void(State)> onStateUpdated_;
|
|
std::function<void(int)> onSignalBarsUpdated_;
|
|
|
|
static void ControllerStateCallback(tgvoip::VoIPController *controller, int state);
|
|
static void SignalBarsCallback(tgvoip::VoIPController *controller, int signalBars);
|
|
|
|
};
|
|
|
|
void SetLegacyGlobalServerConfig(const std::string &serverConfig);
|
|
|
|
} // namespace tgcalls
|
|
|
|
#endif
|