52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
#ifndef TGCALLS_VIDEO_CAPTURE_INTERFACE_H
|
|
#define TGCALLS_VIDEO_CAPTURE_INTERFACE_H
|
|
|
|
#include <string>
|
|
#include <memory>
|
|
|
|
namespace rtc {
|
|
template <typename VideoFrameT>
|
|
class VideoSinkInterface;
|
|
} // namespace rtc
|
|
|
|
namespace webrtc {
|
|
class VideoFrame;
|
|
} // namespace webrtc
|
|
|
|
namespace tgcalls {
|
|
|
|
class PlatformContext;
|
|
class Threads;
|
|
|
|
enum class VideoState {
|
|
Inactive,
|
|
Paused,
|
|
Active,
|
|
};
|
|
|
|
class VideoCaptureInterface {
|
|
protected:
|
|
VideoCaptureInterface() = default;
|
|
|
|
public:
|
|
static std::unique_ptr<VideoCaptureInterface> Create(
|
|
std::shared_ptr<Threads> threads,
|
|
std::string deviceId = std::string(),
|
|
std::shared_ptr<PlatformContext> platformContext = nullptr);
|
|
|
|
virtual ~VideoCaptureInterface();
|
|
|
|
virtual void switchToDevice(std::string deviceId) = 0;
|
|
virtual void setState(VideoState state) = 0;
|
|
virtual void setPreferredAspectRatio(float aspectRatio) = 0;
|
|
virtual void setOutput(std::shared_ptr<rtc::VideoSinkInterface<webrtc::VideoFrame>> sink) = 0;
|
|
virtual std::shared_ptr<PlatformContext> getPlatformContext() {
|
|
return nullptr;
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace tgcalls
|
|
|
|
#endif
|