mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Group calling: tell RingRTC about our rendered resolutions for perf
This commit is contained in:
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,
|
||||
});
|
||||
Reference in New Issue
Block a user