From 004de60c69a76a26705b765b7dc6b8bfc92caf3f Mon Sep 17 00:00:00 2001 From: Tobias Ollmann Date: Tue, 28 Jan 2025 14:39:06 +0100 Subject: [PATCH] feat: expose RTCVideoValue on Renderer It looks like the video track is sometimes rotated internally. Without access to rotation or the computed aspectRatio, it's difficult to know the actual size of the video --- lib/src/rtc_video_renderer.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/rtc_video_renderer.dart b/lib/src/rtc_video_renderer.dart index aef68b4..6d6cc4f 100644 --- a/lib/src/rtc_video_renderer.dart +++ b/lib/src/rtc_video_renderer.dart @@ -54,6 +54,8 @@ abstract class VideoRenderer { int get videoHeight; + RTCVideoValue get videoValue; + bool get muted; set muted(bool mute);