| 167 | } |
| 168 | |
| 169 | VideoCaptureInterfaceImpl::VideoCaptureInterfaceImpl(std::string deviceId, bool isScreenCapture, std::shared_ptr<PlatformContext> platformContext, std::shared_ptr<Threads> threads) : |
| 170 | _impl(threads->getMediaThread(), [deviceId, isScreenCapture, platformContext, threads]() { |
| 171 | return std::make_shared<VideoCaptureInterfaceObject>(deviceId, isScreenCapture, platformContext, *threads); |
| 172 | }) { |
| 173 | } |
| 174 | |
| 175 | VideoCaptureInterfaceImpl::~VideoCaptureInterfaceImpl() = default; |
| 176 |
nothing calls this directly
no test coverage detected