Improvements to group calling video requests
This commit is contained in:
parent
5c72c785a0
commit
3f0ed541f6
6 changed files with 95 additions and 32 deletions
|
@ -8,5 +8,6 @@ export const REQUESTED_VIDEO_WIDTH = 640;
|
|||
export const REQUESTED_VIDEO_HEIGHT = 480;
|
||||
export const REQUESTED_VIDEO_FRAMERATE = 30;
|
||||
|
||||
export const MAX_FRAME_SIZE = 1920 * 1080;
|
||||
export const FRAME_BUFFER_SIZE = MAX_FRAME_SIZE * 4;
|
||||
export const MAX_FRAME_WIDTH = 1920;
|
||||
export const MAX_FRAME_HEIGHT = 1080;
|
||||
export const FRAME_BUFFER_SIZE = MAX_FRAME_WIDTH * MAX_FRAME_HEIGHT * 4;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue