interface ICallFeedOpts {
    audioMuted: boolean;
    call?: MatrixCall;
    client: MatrixClient;
    deviceId: undefined | string;
    purpose: SDPStreamMetadataPurpose;
    roomId?: string;
    stream: MediaStream;
    userId: string;
    videoMuted: boolean;
}

Properties

audioMuted: boolean

Whether or not the remote SDPStreamMetadata says audio is muted

call?: MatrixCall

The MatrixCall which is the source of this CallFeed

client: MatrixClient
deviceId: undefined | string
roomId?: string
stream: MediaStream
userId: string
videoMuted: boolean

Whether or not the remote SDPStreamMetadata says video is muted