Group calling: tell RingRTC about our rendered resolutions for perf
This commit is contained in:
parent
b30b83ed57
commit
d1866a0e5d
16 changed files with 211 additions and 7 deletions
12
ts/util/ringrtc/nonRenderedRemoteParticipant.ts
Normal file
12
ts/util/ringrtc/nonRenderedRemoteParticipant.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
// Copyright 2020 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { GroupCallVideoRequest } from '../../types/Calling';
|
||||
|
||||
export const nonRenderedRemoteParticipant = ({
|
||||
demuxId,
|
||||
}: Readonly<{ demuxId: number }>): GroupCallVideoRequest => ({
|
||||
demuxId,
|
||||
width: 0,
|
||||
height: 0,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue