22#include "livekit/ffi_handle.h"
23#include "livekit/visibility.h"
34 VIDEO_ROTATION_90 = 90,
35 VIDEO_ROTATION_180 = 180,
36 VIDEO_ROTATION_270 = 270,
44 std::optional<std::uint64_t> user_timestamp_us;
45 std::optional<std::uint32_t> frame_id;
50 std::int64_t timestamp_us = 0;
76 int width() const noexcept {
return width_; }
77 int height() const noexcept {
return height_; }
80 std::uint64_t
ffiHandleId() const noexcept {
return handle_.get(); }
RAII wrapper for an FFI handle (uintptr_t) coming from Rust.
Definition ffi_handle.h:29
Public SDK representation of a video frame.
Definition video_frame.h:48
Represents a real-time video source that can accept frames from the application and feed them into th...
Definition video_source.h:58
void captureFrame(const VideoFrame &frame, const VideoCaptureOptions &options)
Push a VideoFrame into the FFI video source.
std::uint64_t ffiHandleId() const noexcept
Underlying FFI handle ID (0 if invalid).
Definition video_source.h:80
VideoSource(int width, int height)
Create a new native video source with a fixed resolution.
void captureFrame(const VideoFrame &frame, std::int64_t timestamp_us=0, VideoRotation rotation=VideoRotation::VIDEO_ROTATION_0)
Backward-compatible convenience overload for timestamp + rotation only.
Public API for the LiveKit C++ Client SDK.
Definition audio_frame.h:25
VideoRotation
Rotation of a video frame.
Definition video_source.h:32
Capture options for a single outbound video frame.
Definition video_source.h:49
std::optional< VideoFrameMetadata > metadata
Populate meta data when you want to send user timestamps or frame IDs.
Definition video_source.h:53