Group Calls: Fix sdp (#4130)
This commit is contained in:
parent
cc1fb8d1cd
commit
2d72f93989
@ -47,7 +47,7 @@ export interface P2PPayloadType {
|
||||
}
|
||||
|
||||
type P2pSsrcGroup = {
|
||||
semantics: string;
|
||||
semantics?: string;
|
||||
ssrcs: number[];
|
||||
};
|
||||
|
||||
|
||||
@ -472,7 +472,6 @@ export async function handleUpdateGroupCallParticipants(updatedParticipants: Gro
|
||||
endpoint: `audio${participant.source}`,
|
||||
isVideo: false,
|
||||
sourceGroups: [{
|
||||
semantics: 'FID',
|
||||
sources: [participant.source],
|
||||
}],
|
||||
mid: state!.lastMid.toString()
|
||||
@ -757,7 +756,6 @@ function initializeConnection(
|
||||
userId: '',
|
||||
sourceGroups: [
|
||||
{
|
||||
semantics: 'FID',
|
||||
sources: [sdp.ssrc || 0],
|
||||
},
|
||||
],
|
||||
|
||||
@ -43,7 +43,7 @@ export type Fingerprint = {
|
||||
};
|
||||
|
||||
export type SsrcGroup = {
|
||||
semantics: string;
|
||||
semantics?: string;
|
||||
sources: number[];
|
||||
};
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user