Repo created
This commit is contained in:
parent
81b91f4139
commit
f8c34fa5ee
22732 changed files with 4815320 additions and 2 deletions
54
TMessagesProj/jni/voip/tgcalls/FakeAudioDeviceModule.h
Normal file
54
TMessagesProj/jni/voip/tgcalls/FakeAudioDeviceModule.h
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
#pragma once
|
||||
|
||||
#include <functional>
|
||||
#include <memory>
|
||||
|
||||
#include "AudioFrame.h"
|
||||
|
||||
namespace webrtc {
|
||||
class AudioDeviceModule;
|
||||
class TaskQueueFactory;
|
||||
} // namespace webrtc
|
||||
|
||||
namespace webrtc {
|
||||
template <class T>
|
||||
class scoped_refptr;
|
||||
}
|
||||
|
||||
namespace tgcalls {
|
||||
class FakeAudioDeviceModule {
|
||||
public:
|
||||
class Renderer {
|
||||
public:
|
||||
virtual ~Renderer() = default;
|
||||
virtual bool Render(const AudioFrame &samples) = 0;
|
||||
virtual void BeginFrame(double timestamp) {
|
||||
}
|
||||
virtual void AddFrameChannel(uint32_t ssrc, const tgcalls::AudioFrame &frame) {
|
||||
}
|
||||
virtual void EndFrame() {
|
||||
}
|
||||
virtual int32_t WaitForUs() {
|
||||
return 10000;
|
||||
}
|
||||
};
|
||||
class Recorder {
|
||||
public:
|
||||
virtual ~Recorder() = default;
|
||||
virtual AudioFrame Record() = 0;
|
||||
virtual int32_t WaitForUs() {
|
||||
return 10000;
|
||||
}
|
||||
};
|
||||
using Task = std::function<double()>;
|
||||
struct Options {
|
||||
uint32_t samples_per_sec{48000};
|
||||
uint32_t num_channels{2};
|
||||
std::function<void(Task)> scheduler_;
|
||||
};
|
||||
static std::function<webrtc::scoped_refptr<webrtc::AudioDeviceModule>(webrtc::TaskQueueFactory *)> Creator(
|
||||
std::shared_ptr<Renderer> renderer,
|
||||
std::shared_ptr<Recorder> recorder,
|
||||
Options options);
|
||||
};
|
||||
} // namespace tgcalls
|
||||
Loading…
Add table
Add a link
Reference in a new issue