mirror of
https://github.com/DrKLO/Telegram.git
synced 2025-01-10 20:12:39 +01:00
13 lines
406 B
C++
13 lines
406 B
C++
#include "VideoCaptureInterface.h"
|
|
|
|
#include "VideoCaptureInterfaceImpl.h"
|
|
|
|
namespace tgcalls {
|
|
|
|
std::unique_ptr<VideoCaptureInterface> VideoCaptureInterface::Create(std::string deviceId, std::shared_ptr<PlatformContext> platformContext) {
|
|
return std::make_unique<VideoCaptureInterfaceImpl>(deviceId, platformContext);
|
|
}
|
|
|
|
VideoCaptureInterface::~VideoCaptureInterface() = default;
|
|
|
|
} // namespace tgcalls
|