#ifndef TGCALLS_DESKTOP_INTERFACE_H #define TGCALLS_DESKTOP_INTERFACE_H #include "platform/PlatformInterface.h" #include "VideoCapturerInterface.h" namespace tgcalls { class DesktopInterface : public PlatformInterface { public: std::unique_ptr makeVideoEncoderFactory() override; std::unique_ptr makeVideoDecoderFactory() override; bool supportsEncoding(const std::string &codecName) override; rtc::scoped_refptr makeVideoSource(rtc::Thread *signalingThread, rtc::Thread *workerThread) override; std::unique_ptr makeVideoCapturer(rtc::scoped_refptr source, bool useFrontCamera, std::function stateUpdated, std::shared_ptr platformContext) override; }; } // namespace tgcalls #endif // TGCALLS_DESKTOP_INTERFACE_H