23 lines
926 B
C++
23 lines
926 B
C++
#ifndef TGCALLS_DARWIN_INTERFACE_H
|
|
#define TGCALLS_DARWIN_INTERFACE_H
|
|
|
|
#include "platform/PlatformInterface.h"
|
|
|
|
namespace tgcalls {
|
|
|
|
class DarwinInterface : public PlatformInterface {
|
|
public:
|
|
void configurePlatformAudio() override;
|
|
float getDisplayAspectRatio() override;
|
|
std::unique_ptr<webrtc::VideoEncoderFactory> makeVideoEncoderFactory() override;
|
|
std::unique_ptr<webrtc::VideoDecoderFactory> makeVideoDecoderFactory() override;
|
|
bool supportsEncoding(const std::string &codecName) override;
|
|
rtc::scoped_refptr<webrtc::VideoTrackSourceInterface> makeVideoSource(rtc::Thread *signalingThread, rtc::Thread *workerThread) override;
|
|
std::unique_ptr<VideoCapturerInterface> makeVideoCapturer(rtc::scoped_refptr<webrtc::VideoTrackSourceInterface> source, bool useFrontCamera, std::function<void(VideoState)> stateUpdated, std::shared_ptr<PlatformContext> platformContext) override;
|
|
|
|
};
|
|
|
|
} // namespace tgcalls
|
|
|
|
#endif
|