From b885ced90d6b062a49a3abaa4933b8a765f3eac2 Mon Sep 17 00:00:00 2001 From: Rashad Sookram Date: Mon, 25 Sep 2023 12:50:12 -0400 Subject: [PATCH] Increase max video receive resolution for group calls --- ts/calling/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/calling/constants.ts b/ts/calling/constants.ts index 41452bd977..ad8a2490c5 100644 --- a/ts/calling/constants.ts +++ b/ts/calling/constants.ts @@ -8,6 +8,6 @@ export const REQUESTED_VIDEO_WIDTH = 960; export const REQUESTED_VIDEO_HEIGHT = 720; export const REQUESTED_VIDEO_FRAMERATE = 30; -export const MAX_FRAME_WIDTH = 1920; -export const MAX_FRAME_HEIGHT = 1080; +export const MAX_FRAME_WIDTH = 2880; +export const MAX_FRAME_HEIGHT = 1800; export const FRAME_BUFFER_SIZE = MAX_FRAME_WIDTH * MAX_FRAME_HEIGHT * 4;