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