From 791456170d5356764874b156dfdc9a76d64361c2 Mon Sep 17 00:00:00 2001 From: Charles Ewert Date: Wed, 6 Dec 2023 21:08:56 -0500 Subject: [PATCH] set video MaxVideoDecodeResolution to TV res --- components/video/VideoPlayerView.bs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/video/VideoPlayerView.bs b/components/video/VideoPlayerView.bs index 1aa96ba96..b9fccef22 100644 --- a/components/video/VideoPlayerView.bs +++ b/components/video/VideoPlayerView.bs @@ -63,6 +63,9 @@ sub init() m.top.retrievingBar.filledBarBlendColor = m.global.constants.colors.blue m.top.bufferingBar.filledBarBlendColor = m.global.constants.colors.blue m.top.trickPlayBar.filledBarBlendColor = m.global.constants.colors.blue + + ' set MaxVideoDecodeResolution to our TVs video resolution + m.top.MaxVideoDecodeResolution = [m.global.device.videoWidth, m.global.device.videoHeight] end sub ' handleChapterSkipAction: Handles user command to skip chapters in playing video