#include "VideoCaptureInterface.h" #include "VideoCaptureInterfaceImpl.h" namespace tgcalls { std::unique_ptr VideoCaptureInterface::Create( std::shared_ptr threads, std::string deviceId, bool isScreenCapture, std::shared_ptr platformContext) { return std::make_unique(deviceId, isScreenCapture, platformContext, std::move(threads)); } VideoCaptureInterface::~VideoCaptureInterface() = default; } // namespace tgcalls