signal-desktop/ts/util/ringrtc/nonRenderedRemoteParticipant.ts
2021-10-26 14:15:33 -05:00

12 lines
311 B
TypeScript

// 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,
});