2020-12-02 01:52:01 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-12-02 18:14:03 +00:00
|
|
|
import { GroupCallVideoRequest } from '../../types/Calling';
|
2020-12-02 01:52:01 +00:00
|
|
|
|
|
|
|
export const nonRenderedRemoteParticipant = ({
|
|
|
|
demuxId,
|
|
|
|
}: Readonly<{ demuxId: number }>): GroupCallVideoRequest => ({
|
|
|
|
demuxId,
|
|
|
|
width: 0,
|
|
|
|
height: 0,
|
|
|
|
});
|