You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TraceablePeerConnection.js 106KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964
  1. import { getLogger } from '@jitsi/logger';
  2. import { Interop } from '@jitsi/sdp-interop';
  3. import transform from 'sdp-transform';
  4. import * as CodecMimeType from '../../service/RTC/CodecMimeType';
  5. import MediaDirection from '../../service/RTC/MediaDirection';
  6. import * as MediaType from '../../service/RTC/MediaType';
  7. import RTCEvents from '../../service/RTC/RTCEvents';
  8. import * as SignalingEvents from '../../service/RTC/SignalingEvents';
  9. import { getSourceNameForJitsiTrack } from '../../service/RTC/SignalingLayer';
  10. import * as VideoType from '../../service/RTC/VideoType';
  11. import { SS_DEFAULT_FRAME_RATE } from '../RTC/ScreenObtainer';
  12. import browser from '../browser';
  13. import FeatureFlags from '../flags/FeatureFlags';
  14. import LocalSdpMunger from '../sdp/LocalSdpMunger';
  15. import RtxModifier from '../sdp/RtxModifier';
  16. import SDP from '../sdp/SDP';
  17. import SDPUtil from '../sdp/SDPUtil';
  18. import SdpConsistency from '../sdp/SdpConsistency';
  19. import SdpSimulcast from '../sdp/SdpSimulcast.ts';
  20. import { SdpTransformWrap } from '../sdp/SdpTransformUtil';
  21. import * as GlobalOnErrorHandler from '../util/GlobalOnErrorHandler';
  22. import JitsiRemoteTrack from './JitsiRemoteTrack';
  23. import RTC from './RTC';
  24. import RTCUtils from './RTCUtils';
  25. import {
  26. HD_BITRATE,
  27. HD_SCALE_FACTOR,
  28. SIM_LAYER_RIDS,
  29. TPCUtils
  30. } from './TPCUtils';
  31. // FIXME SDP tools should end up in some kind of util module
  32. const logger = getLogger(__filename);
  33. const DEGRADATION_PREFERENCE_CAMERA = 'maintain-framerate';
  34. const DEGRADATION_PREFERENCE_DESKTOP = 'maintain-resolution';
  35. /* eslint-disable max-params */
  36. /**
  37. * Creates new instance of 'TraceablePeerConnection'.
  38. *
  39. * @param {RTC} rtc the instance of <tt>RTC</tt> service
  40. * @param {number} id the peer connection id assigned by the parent RTC module.
  41. * @param {SignalingLayer} signalingLayer the signaling layer instance
  42. * @param {object} pcConfig The {@code RTCConfiguration} to use for the WebRTC peer connection.
  43. * @param {object} constraints WebRTC 'PeerConnection' constraints
  44. * @param {boolean} isP2P indicates whether or not the new instance will be used in a peer to peer connection.
  45. * @param {object} options <tt>TracablePeerConnection</tt> config options.
  46. * @param {boolean} options.disableSimulcast if set to 'true' will disable the simulcast.
  47. * @param {boolean} options.disableRtx if set to 'true' will disable the RTX.
  48. * @param {string} options.disabledCodec the mime type of the code that should not be negotiated on the peerconnection.
  49. * @param {string} options.preferredCodec the mime type of the codec that needs to be made the preferred codec for the
  50. * peerconnection.
  51. * @param {boolean} options.startSilent If set to 'true' no audio will be sent or received.
  52. * @param {boolean} options.usesUnifiedPlan Indicates if the browser is running in unified plan mode.
  53. *
  54. * FIXME: initially the purpose of TraceablePeerConnection was to be able to
  55. * debug the peer connection. Since many other responsibilities have been added
  56. * it would make sense to extract a separate class from it and come up with
  57. * a more suitable name.
  58. *
  59. * @constructor
  60. */
  61. export default function TraceablePeerConnection(
  62. rtc,
  63. id,
  64. signalingLayer,
  65. pcConfig,
  66. constraints,
  67. isP2P,
  68. options) {
  69. /**
  70. * Indicates whether or not this peer connection instance is actively
  71. * sending/receiving audio media. When set to <tt>false</tt> the SDP audio
  72. * media direction will be adjusted to 'inactive' in order to suspend
  73. * the transmission.
  74. * @type {boolean}
  75. * @private
  76. */
  77. this.audioTransferActive = !(options.startSilent === true);
  78. /**
  79. * The DTMF sender instance used to send DTMF tones.
  80. *
  81. * @type {RTCDTMFSender|undefined}
  82. * @private
  83. */
  84. this._dtmfSender = undefined;
  85. /**
  86. * @typedef {Object} TouchToneRequest
  87. * @property {string} tones - The DTMF tones string as defined by
  88. * {@code RTCDTMFSender.insertDTMF}, 'tones' argument.
  89. * @property {number} duration - The amount of time in milliseconds that
  90. * each DTMF should last.
  91. * @property {string} interToneGap - The length of time in miliseconds to
  92. * wait between tones.
  93. */
  94. /**
  95. * TouchToneRequests which are waiting to be played. This queue is filled
  96. * if there are touch tones currently being played.
  97. *
  98. * @type {Array<TouchToneRequest>}
  99. * @private
  100. */
  101. this._dtmfTonesQueue = [];
  102. /**
  103. * Indicates whether or not this peer connection instance is actively
  104. * sending/receiving video media. When set to <tt>false</tt> the SDP video
  105. * media direction will be adjusted to 'inactive' in order to suspend
  106. * the transmission.
  107. * @type {boolean}
  108. * @private
  109. */
  110. this.videoTransferActive = true;
  111. /**
  112. * The parent instance of RTC service which created this
  113. * <tt>TracablePeerConnection</tt>.
  114. * @type {RTC}
  115. */
  116. this.rtc = rtc;
  117. /**
  118. * The peer connection identifier assigned by the RTC module.
  119. * @type {number}
  120. */
  121. this.id = id;
  122. /**
  123. * Indicates whether or not this instance is used in a peer to peer
  124. * connection.
  125. * @type {boolean}
  126. */
  127. this.isP2P = isP2P;
  128. /**
  129. * The map holds remote tracks associated with this peer connection. It maps user's JID to media type and a set of
  130. * remote tracks.
  131. * @type {Map<string, Map<MediaType, Set<JitsiRemoteTrack>>>}
  132. */
  133. this.remoteTracks = new Map();
  134. /**
  135. * A map which stores local tracks mapped by {@link JitsiLocalTrack.rtcId}
  136. * @type {Map<number, JitsiLocalTrack>}
  137. */
  138. this.localTracks = new Map();
  139. /**
  140. * Keeps tracks of the WebRTC <tt>MediaStream</tt>s that have been added to
  141. * the underlying WebRTC PeerConnection.
  142. * @type {Array}
  143. * @private
  144. */
  145. this._addedStreams = [];
  146. /**
  147. * @typedef {Object} TPCGroupInfo
  148. * @property {string} semantics the SSRC groups semantics
  149. * @property {Array<number>} ssrcs group's SSRCs in order where the first
  150. * one is group's primary SSRC, the second one is secondary (RTX) and so
  151. * on...
  152. */
  153. /**
  154. * @typedef {Object} TPCSSRCInfo
  155. * @property {Array<number>} ssrcs an array which holds all track's SSRCs
  156. * @property {Array<TPCGroupInfo>} groups an array stores all track's SSRC
  157. * groups
  158. */
  159. /**
  160. * Holds the info about local track's SSRCs mapped per their
  161. * {@link JitsiLocalTrack.rtcId}
  162. * @type {Map<number, TPCSSRCInfo>}
  163. */
  164. this.localSSRCs = new Map();
  165. /**
  166. * The local ICE username fragment for this session.
  167. */
  168. this.localUfrag = null;
  169. /**
  170. * The remote ICE username fragment for this session.
  171. */
  172. this.remoteUfrag = null;
  173. /**
  174. * The DTLS transport object for the PeerConnection.
  175. * Note: this assume only one shared transport exists because we bundled
  176. * all streams on the same underlying transport.
  177. */
  178. this._dtlsTransport = null;
  179. /**
  180. * The signaling layer which operates this peer connection.
  181. * @type {SignalingLayer}
  182. */
  183. this.signalingLayer = signalingLayer;
  184. // SignalingLayer listeners
  185. this._peerVideoTypeChanged = this._peerVideoTypeChanged.bind(this);
  186. this.signalingLayer.on(
  187. SignalingEvents.PEER_VIDEO_TYPE_CHANGED,
  188. this._peerVideoTypeChanged);
  189. this._peerMutedChanged = this._peerMutedChanged.bind(this);
  190. this.signalingLayer.on(
  191. SignalingEvents.PEER_MUTED_CHANGED,
  192. this._peerMutedChanged);
  193. this.options = options;
  194. // Make sure constraints is properly formatted in order to provide information about whether or not this
  195. // connection is P2P to rtcstats.
  196. const safeConstraints = constraints || {};
  197. safeConstraints.optional = safeConstraints.optional || [];
  198. // The `optional` parameter needs to be of type array, otherwise chrome will throw an error.
  199. // Firefox and Safari just ignore it.
  200. if (Array.isArray(safeConstraints.optional)) {
  201. safeConstraints.optional.push({ rtcStatsSFUP2P: this.isP2P });
  202. } else {
  203. logger.warn('Optional param is not an array, rtcstats p2p data is omitted.');
  204. }
  205. this.peerconnection = new RTCUtils.RTCPeerConnectionType(pcConfig, safeConstraints);
  206. this.tpcUtils = new TPCUtils(this);
  207. this.updateLog = [];
  208. this.stats = {};
  209. this.statsinterval = null;
  210. /**
  211. * Flag used to indicate if simulcast is turned off and a cap of 500 Kbps is applied on screensharing.
  212. */
  213. this._capScreenshareBitrate = this.options.capScreenshareBitrate;
  214. /**
  215. * Flag used to indicate if the browser is running in unified plan mode.
  216. */
  217. this._usesUnifiedPlan = options.usesUnifiedPlan;
  218. /**
  219. * Flag used to indicate if RTCRtpTransceiver#setCodecPreferences is to be used instead of SDP
  220. * munging for codec selection.
  221. */
  222. this._usesTransceiverCodecPreferences = browser.supportsCodecPreferences() && this._usesUnifiedPlan;
  223. this._usesTransceiverCodecPreferences
  224. && logger.info('Using RTCRtpTransceiver#setCodecPreferences for codec selection');
  225. /**
  226. * @type {number} The max number of stats to keep in this.stats. Limit to
  227. * 300 values, i.e. 5 minutes; set to 0 to disable
  228. */
  229. this.maxstats = options.maxstats;
  230. this.interop = new Interop();
  231. if (this._usesUnifiedPlan) {
  232. this.simulcast = new SdpSimulcast({ numOfLayers: SIM_LAYER_RIDS.length });
  233. } else {
  234. const Simulcast = require('@jitsi/sdp-simulcast');
  235. this.simulcast = new Simulcast(
  236. {
  237. numOfLayers: SIM_LAYER_RIDS.length,
  238. explodeRemoteSimulcast: false,
  239. usesUnifiedPlan: false
  240. });
  241. }
  242. this.sdpConsistency = new SdpConsistency(this.toString());
  243. /**
  244. * Munges local SDP provided to the Jingle Session in order to prevent from
  245. * sending SSRC updates on attach/detach and mute/unmute (for video).
  246. * @type {LocalSdpMunger}
  247. */
  248. this.localSdpMunger = new LocalSdpMunger(this, this.rtc.getLocalEndpointId());
  249. /**
  250. * TracablePeerConnection uses RTC's eventEmitter
  251. * @type {EventEmitter}
  252. */
  253. this.eventEmitter = rtc.eventEmitter;
  254. this.rtxModifier = new RtxModifier();
  255. /**
  256. * The height constraint applied on the video sender. The default value is 2160 (4K) when layer suspension is
  257. * explicitly disabled.
  258. */
  259. this._senderVideoMaxHeight = 2160;
  260. // override as desired
  261. this.trace = (what, info) => {
  262. logger.debug(what, info);
  263. this.updateLog.push({
  264. time: new Date(),
  265. type: what,
  266. value: info || ''
  267. });
  268. };
  269. this.onicecandidate = null;
  270. this.peerconnection.onicecandidate = event => {
  271. this.trace(
  272. 'onicecandidate',
  273. JSON.stringify(event.candidate, null, ' '));
  274. if (this.onicecandidate !== null) {
  275. this.onicecandidate(event);
  276. }
  277. };
  278. // Use track events when browser is running in unified plan mode and stream events in plan-b mode.
  279. if (this._usesUnifiedPlan) {
  280. this.onTrack = evt => {
  281. const stream = evt.streams[0];
  282. this._remoteTrackAdded(stream, evt.track, evt.transceiver);
  283. stream.addEventListener('removetrack', e => {
  284. this._remoteTrackRemoved(stream, e.track);
  285. });
  286. };
  287. this.peerconnection.addEventListener('track', this.onTrack);
  288. } else {
  289. this.peerconnection.onaddstream = event => this._remoteStreamAdded(event.stream);
  290. this.peerconnection.onremovestream = event => this._remoteStreamRemoved(event.stream);
  291. }
  292. this.onsignalingstatechange = null;
  293. this.peerconnection.onsignalingstatechange = event => {
  294. this.trace('onsignalingstatechange', this.signalingState);
  295. if (this.onsignalingstatechange !== null) {
  296. this.onsignalingstatechange(event);
  297. }
  298. };
  299. this.oniceconnectionstatechange = null;
  300. this.peerconnection.oniceconnectionstatechange = event => {
  301. this.trace('oniceconnectionstatechange', this.iceConnectionState);
  302. if (this.oniceconnectionstatechange !== null) {
  303. this.oniceconnectionstatechange(event);
  304. }
  305. };
  306. this.onnegotiationneeded = null;
  307. this.peerconnection.onnegotiationneeded = event => {
  308. this.trace('onnegotiationneeded');
  309. if (this.onnegotiationneeded !== null) {
  310. this.onnegotiationneeded(event);
  311. }
  312. };
  313. this.onconnectionstatechange = null;
  314. this.peerconnection.onconnectionstatechange = event => {
  315. this.trace('onconnectionstatechange', this.connectionState);
  316. if (this.onconnectionstatechange !== null) {
  317. this.onconnectionstatechange(event);
  318. }
  319. };
  320. this.ondatachannel = null;
  321. this.peerconnection.ondatachannel = event => {
  322. this.trace('ondatachannel');
  323. if (this.ondatachannel !== null) {
  324. this.ondatachannel(event);
  325. }
  326. };
  327. if (this.maxstats) {
  328. this.statsinterval = window.setInterval(() => {
  329. this.getStats().then(stats => {
  330. if (typeof stats?.result === 'function') {
  331. const results = stats.result();
  332. for (let i = 0; i < results.length; ++i) {
  333. const res = results[i];
  334. res.names().forEach(name => {
  335. this._processStat(res, name, res.stat(name));
  336. });
  337. }
  338. } else {
  339. stats.forEach(r => this._processStat(r, '', r));
  340. }
  341. });
  342. }, 1000);
  343. }
  344. logger.info(`Create new ${this}`);
  345. }
  346. /* eslint-enable max-params */
  347. /**
  348. * Process stat and adds it to the array of stats we store.
  349. * @param report the current stats report.
  350. * @param name the name of the report, if available
  351. * @param statValue the value to add.
  352. * @private
  353. */
  354. TraceablePeerConnection.prototype._processStat
  355. = function(report, name, statValue) {
  356. const id = `${report.id}-${name}`;
  357. let s = this.stats[id];
  358. const now = new Date();
  359. if (!s) {
  360. this.stats[id] = s = {
  361. startTime: now,
  362. endTime: now,
  363. values: [],
  364. times: []
  365. };
  366. }
  367. s.values.push(statValue);
  368. s.times.push(now.getTime());
  369. if (s.values.length > this.maxstats) {
  370. s.values.shift();
  371. s.times.shift();
  372. }
  373. s.endTime = now;
  374. };
  375. /**
  376. * Returns a string representation of a SessionDescription object.
  377. */
  378. const dumpSDP = function(description) {
  379. if (typeof description === 'undefined' || description === null) {
  380. return '';
  381. }
  382. return `type: ${description.type}\r\n${description.sdp}`;
  383. };
  384. /**
  385. * Forwards the {@link peerconnection.iceConnectionState} state except that it
  386. * will convert "completed" into "connected" where both mean that the ICE has
  387. * succeeded and is up and running. We never see "completed" state for
  388. * the JVB connection, but it started appearing for the P2P one. This method
  389. * allows to adapt old logic to this new situation.
  390. * @return {string}
  391. */
  392. TraceablePeerConnection.prototype.getConnectionState = function() {
  393. const state = this.peerconnection.iceConnectionState;
  394. if (state === 'completed') {
  395. return 'connected';
  396. }
  397. return state;
  398. };
  399. /**
  400. * Obtains the media direction for given {@link MediaType}. The method takes
  401. * into account whether or not there are any local tracks for media and
  402. * the {@link audioTransferActive} and {@link videoTransferActive} flags.
  403. * @param {MediaType} mediaType
  404. * @param {boolean} isAddOperation whether the direction is to be calculated after a source-add action.
  405. * @return {string} one of the SDP direction constants ('sendrecv, 'recvonly'
  406. * etc.) which should be used when setting local description on the peer
  407. * connection.
  408. * @private
  409. */
  410. TraceablePeerConnection.prototype.getDesiredMediaDirection = function(mediaType, isAddOperation = false) {
  411. const hasLocalSource = this.hasAnyTracksOfType(mediaType);
  412. if (this._usesUnifiedPlan) {
  413. return isAddOperation
  414. ? hasLocalSource ? MediaDirection.SENDRECV : MediaDirection.SENDONLY
  415. : hasLocalSource ? MediaDirection.RECVONLY : MediaDirection.INACTIVE;
  416. }
  417. const mediaTransferActive = mediaType === MediaType.AUDIO ? this.audioTransferActive : this.videoTransferActive;
  418. if (mediaTransferActive) {
  419. return hasLocalSource ? MediaDirection.SENDRECV : MediaDirection.RECVONLY;
  420. }
  421. return MediaDirection.INACTIVE;
  422. };
  423. /**
  424. * Returns the list of RTCRtpReceivers created for the source of the given media type associated with
  425. * the set of remote endpoints specified.
  426. * @param {Array<string>} endpoints list of the endpoints
  427. * @param {string} mediaType 'audio' or 'video'
  428. * @returns {Array<RTCRtpReceiver>} list of receivers created by the peerconnection.
  429. */
  430. TraceablePeerConnection.prototype._getReceiversByEndpointIds = function(endpoints, mediaType) {
  431. let remoteTracks = [];
  432. let receivers = [];
  433. for (const endpoint of endpoints) {
  434. remoteTracks = remoteTracks.concat(this.getRemoteTracks(endpoint, mediaType));
  435. }
  436. // Get the ids of the MediaStreamTracks associated with each of these remote tracks.
  437. const remoteTrackIds = remoteTracks.map(remote => remote.track?.id);
  438. receivers = this.peerconnection.getReceivers()
  439. .filter(receiver => receiver.track
  440. && receiver.track.kind === mediaType
  441. && remoteTrackIds.find(trackId => trackId === receiver.track.id));
  442. return receivers;
  443. };
  444. /**
  445. * Tells whether or not this TPC instance is using Simulcast.
  446. * @return {boolean} <tt>true</tt> if simulcast is enabled and active or
  447. * <tt>false</tt> if it's turned off.
  448. */
  449. TraceablePeerConnection.prototype.isSimulcastOn = function() {
  450. return !this.options.disableSimulcast;
  451. };
  452. /**
  453. * Handles {@link SignalingEvents.PEER_VIDEO_TYPE_CHANGED}
  454. * @param {string} endpointId the video owner's ID (MUC nickname)
  455. * @param {VideoType} videoType the new value
  456. * @private
  457. */
  458. TraceablePeerConnection.prototype._peerVideoTypeChanged = function(
  459. endpointId,
  460. videoType) {
  461. // Check if endpointId has a value to avoid action on random track
  462. if (!endpointId) {
  463. logger.error(`${this} No endpointID on peerVideoTypeChanged`);
  464. return;
  465. }
  466. const videoTrack = this.getRemoteTracks(endpointId, MediaType.VIDEO);
  467. if (videoTrack.length) {
  468. // NOTE 1 track per media type is assumed
  469. videoTrack[0]._setVideoType(videoType);
  470. }
  471. };
  472. /**
  473. * Handles remote track mute / unmute events.
  474. * @param {string} endpointId the track owner's identifier (MUC nickname)
  475. * @param {MediaType} mediaType "audio" or "video"
  476. * @param {boolean} isMuted the new mute state
  477. * @private
  478. */
  479. TraceablePeerConnection.prototype._peerMutedChanged = function(
  480. endpointId,
  481. mediaType,
  482. isMuted) {
  483. // Check if endpointId is a value to avoid doing action on all remote tracks
  484. if (!endpointId) {
  485. logger.error(`${this} On peerMuteChanged - no endpoint ID`);
  486. return;
  487. }
  488. const track = this.getRemoteTracks(endpointId, mediaType);
  489. if (track.length) {
  490. // NOTE 1 track per media type is assumed
  491. track[0].setMute(isMuted);
  492. }
  493. };
  494. /**
  495. * Obtains audio levels of the remote audio tracks by getting the source information on the RTCRtpReceivers.
  496. * The information relevant to the ssrc is updated each time a RTP packet constaining the ssrc is received.
  497. * @param {Array<string>} speakerList list of endpoint ids for which audio levels are to be gathered.
  498. * @returns {Object} containing ssrc and audio level information as a key-value pair.
  499. */
  500. TraceablePeerConnection.prototype.getAudioLevels = function(speakerList = []) {
  501. const audioLevels = {};
  502. const audioReceivers = speakerList.length
  503. ? this._getReceiversByEndpointIds(speakerList, MediaType.AUDIO)
  504. : this.peerconnection.getReceivers()
  505. .filter(receiver => receiver.track && receiver.track.kind === MediaType.AUDIO && receiver.track.enabled);
  506. audioReceivers.forEach(remote => {
  507. const ssrc = remote.getSynchronizationSources();
  508. if (ssrc && ssrc.length) {
  509. // As per spec, this audiolevel is a value between 0..1 (linear), where 1.0
  510. // represents 0 dBov, 0 represents silence, and 0.5 represents approximately
  511. // 6 dBSPL change in the sound pressure level from 0 dBov.
  512. // https://www.w3.org/TR/webrtc/#dom-rtcrtpcontributingsource-audiolevel
  513. audioLevels[ssrc[0].source] = ssrc[0].audioLevel;
  514. }
  515. });
  516. return audioLevels;
  517. };
  518. /**
  519. * Obtains local tracks for given {@link MediaType}. If the <tt>mediaType</tt>
  520. * argument is omitted the list of all local tracks will be returned.
  521. * @param {MediaType} [mediaType]
  522. * @return {Array<JitsiLocalTrack>}
  523. */
  524. TraceablePeerConnection.prototype.getLocalTracks = function(mediaType) {
  525. let tracks = Array.from(this.localTracks.values());
  526. if (mediaType !== undefined) {
  527. tracks = tracks.filter(track => track.getType() === mediaType);
  528. }
  529. return tracks;
  530. };
  531. /**
  532. * Retrieves the local video tracks.
  533. *
  534. * @returns {JitsiLocalTrack|undefined} - local video tracks.
  535. */
  536. TraceablePeerConnection.prototype.getLocalVideoTracks = function() {
  537. return this.getLocalTracks(MediaType.VIDEO);
  538. };
  539. /**
  540. * Checks whether or not this {@link TraceablePeerConnection} instance contains any local tracks for given
  541. * <tt>mediaType</tt>.
  542. *
  543. * @param {MediaType} mediaType - The media type.
  544. * @return {boolean}
  545. */
  546. TraceablePeerConnection.prototype.hasAnyTracksOfType = function(mediaType) {
  547. if (!mediaType) {
  548. throw new Error('"mediaType" is required');
  549. }
  550. return this.getLocalTracks(mediaType).length > 0;
  551. };
  552. /**
  553. * Obtains all remote tracks currently known to this PeerConnection instance.
  554. *
  555. * @param {string} [endpointId] - The track owner's identifier (MUC nickname)
  556. * @param {MediaType} [mediaType] - The remote tracks will be filtered by their media type if this argument is
  557. * specified.
  558. * @return {Array<JitsiRemoteTrack>}
  559. */
  560. TraceablePeerConnection.prototype.getRemoteTracks = function(endpointId, mediaType) {
  561. let remoteTracks = [];
  562. const endpoints = endpointId ? [ endpointId ] : this.remoteTracks.keys();
  563. for (const endpoint of endpoints) {
  564. const endpointTracksByMediaType = this.remoteTracks.get(endpoint);
  565. if (endpointTracksByMediaType) {
  566. for (const trackMediaType of endpointTracksByMediaType.keys()) {
  567. // per media type filtering
  568. if (!mediaType || mediaType === trackMediaType) {
  569. remoteTracks = remoteTracks.concat(Array.from(endpointTracksByMediaType.get(trackMediaType)));
  570. }
  571. }
  572. }
  573. }
  574. return remoteTracks;
  575. };
  576. /**
  577. * Parses the remote description and returns the sdp lines of the sources associated with a remote participant.
  578. *
  579. * @param {string} id Endpoint id of the remote participant.
  580. * @returns {Array<string>} The sdp lines that have the ssrc information.
  581. */
  582. TraceablePeerConnection.prototype.getRemoteSourceInfoByParticipant = function(id) {
  583. const removeSsrcInfo = [];
  584. const remoteTracks = this.getRemoteTracks(id);
  585. if (!remoteTracks?.length) {
  586. return removeSsrcInfo;
  587. }
  588. const primarySsrcs = remoteTracks.map(track => track.getSSRC());
  589. const sdp = new SDP(this.remoteDescription.sdp);
  590. primarySsrcs.forEach((ssrc, idx) => {
  591. for (const media of sdp.media) {
  592. let lines = '';
  593. let ssrcLines = SDPUtil.findLines(media, `a=ssrc:${ssrc}`);
  594. if (ssrcLines.length) {
  595. if (!removeSsrcInfo[idx]) {
  596. removeSsrcInfo[idx] = '';
  597. }
  598. // Check if there are any FID groups present for the primary ssrc.
  599. const fidLines = SDPUtil.findLines(media, `a=ssrc-group:FID ${ssrc}`);
  600. if (fidLines.length) {
  601. const secondarySsrc = fidLines[0].split(' ')[2];
  602. lines += `${fidLines[0]}\r\n`;
  603. ssrcLines = ssrcLines.concat(SDPUtil.findLines(media, `a=ssrc:${secondarySsrc}`));
  604. }
  605. removeSsrcInfo[idx] += `${ssrcLines.join('\r\n')}\r\n`;
  606. removeSsrcInfo[idx] += lines;
  607. }
  608. }
  609. });
  610. return removeSsrcInfo;
  611. };
  612. /**
  613. * Returns the target bitrates configured for the local video source.
  614. *
  615. * @returns {Object}
  616. */
  617. TraceablePeerConnection.prototype.getTargetVideoBitrates = function() {
  618. const currentCodec = this.getConfiguredVideoCodec();
  619. return this.tpcUtils.videoBitrates[currentCodec.toUpperCase()] || this.tpcUtils.videoBitrates;
  620. };
  621. /**
  622. * Tries to find {@link JitsiTrack} for given SSRC number. It will search both
  623. * local and remote tracks bound to this instance.
  624. * @param {number} ssrc
  625. * @return {JitsiTrack|null}
  626. */
  627. TraceablePeerConnection.prototype.getTrackBySSRC = function(ssrc) {
  628. if (typeof ssrc !== 'number') {
  629. throw new Error(`SSRC ${ssrc} is not a number`);
  630. }
  631. for (const localTrack of this.localTracks.values()) {
  632. if (this.getLocalSSRC(localTrack) === ssrc) {
  633. return localTrack;
  634. }
  635. }
  636. for (const remoteTrack of this.getRemoteTracks()) {
  637. if (remoteTrack.getSSRC() === ssrc) {
  638. return remoteTrack;
  639. }
  640. }
  641. return null;
  642. };
  643. /**
  644. * Tries to find SSRC number for given {@link JitsiTrack} id. It will search
  645. * both local and remote tracks bound to this instance.
  646. * @param {string} id
  647. * @return {number|null}
  648. */
  649. TraceablePeerConnection.prototype.getSsrcByTrackId = function(id) {
  650. const findTrackById = track => track.getTrack().id === id;
  651. const localTrack = this.getLocalTracks().find(findTrackById);
  652. if (localTrack) {
  653. return this.getLocalSSRC(localTrack);
  654. }
  655. const remoteTrack = this.getRemoteTracks().find(findTrackById);
  656. if (remoteTrack) {
  657. return remoteTrack.getSSRC();
  658. }
  659. return null;
  660. };
  661. /**
  662. * Called when new remote MediaStream is added to the PeerConnection.
  663. * @param {MediaStream} stream the WebRTC MediaStream for remote participant
  664. */
  665. TraceablePeerConnection.prototype._remoteStreamAdded = function(stream) {
  666. const streamId = RTC.getStreamID(stream);
  667. if (!RTC.isUserStreamById(streamId)) {
  668. logger.info(`${this} ignored remote 'stream added' event for non-user stream[id=${streamId}]`);
  669. return;
  670. }
  671. // Bind 'addtrack'/'removetrack' event handlers
  672. if (browser.isChromiumBased()) {
  673. stream.onaddtrack = event => {
  674. this._remoteTrackAdded(stream, event.track);
  675. };
  676. stream.onremovetrack = event => {
  677. this._remoteTrackRemoved(stream, event.track);
  678. };
  679. }
  680. // Call remoteTrackAdded for each track in the stream
  681. const streamAudioTracks = stream.getAudioTracks();
  682. for (const audioTrack of streamAudioTracks) {
  683. this._remoteTrackAdded(stream, audioTrack);
  684. }
  685. const streamVideoTracks = stream.getVideoTracks();
  686. for (const videoTrack of streamVideoTracks) {
  687. this._remoteTrackAdded(stream, videoTrack);
  688. }
  689. };
  690. /**
  691. * Called on "track added" and "stream added" PeerConnection events (because we
  692. * handle streams on per track basis). Finds the owner and the SSRC for
  693. * the track and passes that to ChatRoom for further processing.
  694. * @param {MediaStream} stream the WebRTC MediaStream instance which is
  695. * the parent of the track
  696. * @param {MediaStreamTrack} track the WebRTC MediaStreamTrack added for remote
  697. * participant.
  698. * @param {RTCRtpTransceiver} transceiver the WebRTC transceiver that is created
  699. * for the remote participant in unified plan.
  700. */
  701. TraceablePeerConnection.prototype._remoteTrackAdded = function(stream, track, transceiver = null) {
  702. const streamId = RTC.getStreamID(stream);
  703. const mediaType = track.kind;
  704. if (!this.isP2P && !RTC.isUserStreamById(streamId)) {
  705. logger.info(`${this} ignored remote 'stream added' event for non-user stream[id=${streamId}]`);
  706. return;
  707. }
  708. logger.info(`${this} adding remote track for stream[id=${streamId},type=${mediaType}]`);
  709. // look up an associated JID for a stream id
  710. if (!mediaType) {
  711. GlobalOnErrorHandler.callErrorHandler(
  712. new Error(
  713. `MediaType undefined for remote track, stream id: ${streamId}`
  714. ));
  715. // Abort
  716. return;
  717. }
  718. const remoteSDP = this._usesUnifiedPlan
  719. ? new SDP(this.peerconnection.remoteDescription.sdp)
  720. : new SDP(this.remoteDescription.sdp);
  721. let mediaLines;
  722. // In unified plan mode, find the matching mline using 'mid' if its availble, otherwise use the
  723. // 'msid' attribute of the stream.
  724. if (this._usesUnifiedPlan) {
  725. if (transceiver && transceiver.mid) {
  726. const mid = transceiver.mid;
  727. mediaLines = remoteSDP.media.filter(mls => SDPUtil.findLine(mls, `a=mid:${mid}`));
  728. } else {
  729. mediaLines = remoteSDP.media.filter(mls => {
  730. const msid = SDPUtil.findLine(mls, 'a=msid:');
  731. return typeof msid !== 'undefined' && streamId === msid.substring(7).split(' ')[0];
  732. });
  733. }
  734. } else {
  735. mediaLines = remoteSDP.media.filter(mls => mls.startsWith(`m=${mediaType}`));
  736. }
  737. if (!mediaLines.length) {
  738. GlobalOnErrorHandler.callErrorHandler(
  739. new Error(`No media lines found in remote SDP for remote stream[id=${streamId},type=${mediaType}]`));
  740. // Abort
  741. return;
  742. }
  743. let ssrcLines = SDPUtil.findLines(mediaLines[0], 'a=ssrc:');
  744. ssrcLines
  745. = ssrcLines.filter(line => line.indexOf(`msid:${streamId}`) !== -1);
  746. if (!ssrcLines.length) {
  747. GlobalOnErrorHandler.callErrorHandler(
  748. new Error(`No SSRC lines found in remote SDP for remote stream[msid=${streamId},type=${mediaType}]`));
  749. // Abort
  750. return;
  751. }
  752. // FIXME the length of ssrcLines[0] not verified, but it will fail
  753. // with global error handler anyway
  754. const ssrcStr = ssrcLines[0].substring(7).split(' ')[0];
  755. const trackSsrc = Number(ssrcStr);
  756. const ownerEndpointId = this.signalingLayer.getSSRCOwner(trackSsrc);
  757. if (isNaN(trackSsrc) || trackSsrc < 0) {
  758. GlobalOnErrorHandler.callErrorHandler(
  759. new Error(
  760. `Invalid SSRC for remote stream[ssrc=${trackSsrc},id=${streamId},type=${mediaType}]`));
  761. // Abort
  762. return;
  763. } else if (!ownerEndpointId) {
  764. GlobalOnErrorHandler.callErrorHandler(
  765. new Error(
  766. `No SSRC owner known for remote stream[ssrc=${trackSsrc},id=${streamId},type=${mediaType}]`));
  767. // Abort
  768. return;
  769. }
  770. let sourceName;
  771. if (FeatureFlags.isSourceNameSignalingEnabled()) {
  772. sourceName = this.signalingLayer.getTrackSourceName(trackSsrc);
  773. // If source name was not signaled, we'll generate one which allows testing signaling
  774. // when mixing legacy(mobile) with new clients.
  775. if (!sourceName) {
  776. sourceName = getSourceNameForJitsiTrack(ownerEndpointId, mediaType, 0);
  777. }
  778. }
  779. // eslint-disable-next-line no-undef
  780. logger.info(`${this} creating remote track[endpoint=${ownerEndpointId},ssrc=${trackSsrc},`
  781. + `type=${mediaType},sourceName=${sourceName}]`);
  782. const peerMediaInfo
  783. = this.signalingLayer.getPeerMediaInfo(ownerEndpointId, mediaType);
  784. if (!peerMediaInfo) {
  785. GlobalOnErrorHandler.callErrorHandler(
  786. new Error(`${this}: no peer media info available for ${ownerEndpointId}`));
  787. return;
  788. }
  789. const muted = peerMediaInfo.muted;
  790. const videoType = peerMediaInfo.videoType; // can be undefined
  791. // eslint-disable-next-line no-undef
  792. this._createRemoteTrack(
  793. ownerEndpointId, stream, track, mediaType, videoType, trackSsrc, muted, sourceName);
  794. };
  795. // FIXME cleanup params
  796. /* eslint-disable max-params */
  797. /**
  798. * Initializes a new JitsiRemoteTrack instance with the data provided by
  799. * the signaling layer and SDP.
  800. *
  801. * @param {string} ownerEndpointId the owner's endpoint ID (MUC nickname)
  802. * @param {MediaStream} stream the WebRTC stream instance
  803. * @param {MediaStreamTrack} track the WebRTC track instance
  804. * @param {MediaType} mediaType the track's type of the media
  805. * @param {VideoType} [videoType] the track's type of the video (if applicable)
  806. * @param {number} ssrc the track's main SSRC number
  807. * @param {boolean} muted the initial muted status
  808. * @param {String} sourceName the track's source name
  809. */
  810. TraceablePeerConnection.prototype._createRemoteTrack = function(
  811. ownerEndpointId,
  812. stream,
  813. track,
  814. mediaType,
  815. videoType,
  816. ssrc,
  817. muted,
  818. sourceName) {
  819. let remoteTracksMap = this.remoteTracks.get(ownerEndpointId);
  820. if (!remoteTracksMap) {
  821. remoteTracksMap = new Map();
  822. remoteTracksMap.set(MediaType.AUDIO, new Set());
  823. remoteTracksMap.set(MediaType.VIDEO, new Set());
  824. this.remoteTracks.set(ownerEndpointId, remoteTracksMap);
  825. }
  826. const userTracksByMediaType = remoteTracksMap.get(mediaType);
  827. if (userTracksByMediaType?.size
  828. && Array.from(userTracksByMediaType).find(jitsiTrack => jitsiTrack.getTrack() === track)) {
  829. // Ignore duplicated event which can originate either from 'onStreamAdded' or 'onTrackAdded'.
  830. logger.info(`${this} ignored duplicated track event for track[endpoint=${ownerEndpointId},type=${mediaType}]`);
  831. return;
  832. } else if (userTracksByMediaType?.size && !FeatureFlags.isSourceNameSignalingEnabled()) {
  833. logger.error(`${this} received a second remote track for track[endpoint=${ownerEndpointId},type=${mediaType}]`
  834. + 'deleting the existing track');
  835. const existingTrack = Array.from(userTracksByMediaType)[0];
  836. // The exisiting track needs to be removed here. This happens on Safari sometimes when a SSRC is removed from
  837. // the remote description and the browser doesn't fire a 'removetrack' event on the associated MediaStream.
  838. this._remoteTrackRemoved(existingTrack.getOriginalStream(), existingTrack.getTrack());
  839. }
  840. const remoteTrack
  841. = new JitsiRemoteTrack(
  842. this.rtc,
  843. this.rtc.conference,
  844. ownerEndpointId,
  845. stream,
  846. track,
  847. mediaType,
  848. videoType,
  849. ssrc,
  850. muted,
  851. this.isP2P,
  852. sourceName);
  853. userTracksByMediaType.add(remoteTrack);
  854. this.eventEmitter.emit(RTCEvents.REMOTE_TRACK_ADDED, remoteTrack, this);
  855. };
  856. /* eslint-enable max-params */
  857. /**
  858. * Handles remote stream removal.
  859. * @param stream the WebRTC MediaStream object which is being removed from the
  860. * PeerConnection
  861. */
  862. TraceablePeerConnection.prototype._remoteStreamRemoved = function(stream) {
  863. if (!RTC.isUserStream(stream)) {
  864. const id = RTC.getStreamID(stream);
  865. logger.info(`Ignored remote 'stream removed' event for stream[id=${id}]`);
  866. return;
  867. }
  868. // Call remoteTrackRemoved for each track in the stream
  869. const streamVideoTracks = stream.getVideoTracks();
  870. for (const videoTrack of streamVideoTracks) {
  871. this._remoteTrackRemoved(stream, videoTrack);
  872. }
  873. const streamAudioTracks = stream.getAudioTracks();
  874. for (const audioTrack of streamAudioTracks) {
  875. this._remoteTrackRemoved(stream, audioTrack);
  876. }
  877. };
  878. /**
  879. * Handles remote media track removal.
  880. *
  881. * @param {MediaStream} stream - WebRTC MediaStream instance which is the parent of the track.
  882. * @param {MediaStreamTrack} track - WebRTC MediaStreamTrack which has been removed from the PeerConnection.
  883. * @returns {void}
  884. */
  885. TraceablePeerConnection.prototype._remoteTrackRemoved = function(stream, track) {
  886. const streamId = RTC.getStreamID(stream);
  887. const trackId = track && RTC.getTrackID(track);
  888. if (!RTC.isUserStreamById(streamId)) {
  889. logger.info(`${this} ignored remote 'stream removed' event for non-user stream[id=${streamId}]`);
  890. return;
  891. }
  892. if (!streamId) {
  893. GlobalOnErrorHandler.callErrorHandler(new Error(`${this} remote track removal failed - no stream ID`));
  894. return;
  895. }
  896. if (!trackId) {
  897. GlobalOnErrorHandler.callErrorHandler(new Error(`${this} remote track removal failed - no track ID`));
  898. return;
  899. }
  900. const toBeRemoved = this.getRemoteTracks().find(
  901. remoteTrack => remoteTrack.getStreamId() === streamId
  902. && remoteTrack.getTrackId() === trackId);
  903. if (!toBeRemoved) {
  904. GlobalOnErrorHandler.callErrorHandler(new Error(`${this} remote track removal failed - track not found`));
  905. return;
  906. }
  907. logger.info(`${this} remote track removed stream[id=${streamId},trackId=${trackId}]`);
  908. this._removeRemoteTrack(toBeRemoved);
  909. };
  910. /**
  911. * Removes all JitsiRemoteTracks associated with given MUC nickname (resource part of the JID).
  912. *
  913. * @param {string} owner - The resource part of the MUC JID.
  914. * @returns {JitsiRemoteTrack[]} - The array of removed tracks.
  915. */
  916. TraceablePeerConnection.prototype.removeRemoteTracks = function(owner) {
  917. let removedTracks = [];
  918. const remoteTracksByMedia = this.remoteTracks.get(owner);
  919. if (remoteTracksByMedia) {
  920. removedTracks = removedTracks.concat(Array.from(remoteTracksByMedia.get(MediaType.AUDIO)));
  921. removedTracks = removedTracks.concat(Array.from(remoteTracksByMedia.get(MediaType.VIDEO)));
  922. this.remoteTracks.delete(owner);
  923. }
  924. logger.debug(`${this} removed remote tracks[endpoint=${owner},count=${removedTracks.length}`);
  925. return removedTracks;
  926. };
  927. /**
  928. * Removes and disposes given <tt>JitsiRemoteTrack</tt> instance. Emits {@link RTCEvents.REMOTE_TRACK_REMOVED}.
  929. *
  930. * @param {JitsiRemoteTrack} toBeRemoved - The remote track to be removed.
  931. * @returns {void}
  932. */
  933. TraceablePeerConnection.prototype._removeRemoteTrack = function(toBeRemoved) {
  934. toBeRemoved.dispose();
  935. const participantId = toBeRemoved.getParticipantId();
  936. const userTracksByMediaType = this.remoteTracks.get(participantId);
  937. if (!userTracksByMediaType) {
  938. logger.error(`${this} removeRemoteTrack: no remote tracks map for endpoint=${participantId}`);
  939. } else if (!userTracksByMediaType.get(toBeRemoved.getType())?.delete(toBeRemoved)) {
  940. logger.error(`${this} Failed to remove ${toBeRemoved} - type mapping messed up ?`);
  941. }
  942. this.eventEmitter.emit(RTCEvents.REMOTE_TRACK_REMOVED, toBeRemoved);
  943. };
  944. /**
  945. * Returns a map with keys msid/mediaType and <tt>TrackSSRCInfo</tt> values.
  946. * @param {RTCSessionDescription} desc the local description.
  947. * @return {Map<string,TrackSSRCInfo>}
  948. */
  949. TraceablePeerConnection.prototype._extractSSRCMap = function(desc) {
  950. /**
  951. * Track SSRC infos mapped by stream ID (msid) or mediaType (unfied-plan)
  952. * @type {Map<string,TrackSSRCInfo>}
  953. */
  954. const ssrcMap = new Map();
  955. /**
  956. * Groups mapped by primary SSRC number
  957. * @type {Map<number,Array<SSRCGroupInfo>>}
  958. */
  959. const groupsMap = new Map();
  960. if (typeof desc !== 'object' || desc === null
  961. || typeof desc.sdp !== 'string') {
  962. logger.warn('An empty description was passed as an argument');
  963. return ssrcMap;
  964. }
  965. const session = transform.parse(desc.sdp);
  966. if (!Array.isArray(session.media)) {
  967. return ssrcMap;
  968. }
  969. let media = session.media;
  970. // For unified plan clients, only the first audio and video mlines will have ssrcs for the local sources.
  971. // The rest of the m-lines are for the recv-only sources, one for each remote source.
  972. if (this._usesUnifiedPlan) {
  973. media = [];
  974. [ MediaType.AUDIO, MediaType.VIDEO ].forEach(mediaType => {
  975. const mLine = session.media.find(m => m.type === mediaType);
  976. mLine && media.push(mLine);
  977. });
  978. }
  979. for (const mLine of media) {
  980. if (!Array.isArray(mLine.ssrcs)) {
  981. continue; // eslint-disable-line no-continue
  982. }
  983. if (Array.isArray(mLine.ssrcGroups)) {
  984. for (const group of mLine.ssrcGroups) {
  985. if (typeof group.semantics !== 'undefined'
  986. && typeof group.ssrcs !== 'undefined') {
  987. // Parse SSRCs and store as numbers
  988. const groupSSRCs = group.ssrcs.split(' ').map(ssrcStr => parseInt(ssrcStr, 10));
  989. const primarySSRC = groupSSRCs[0];
  990. // Note that group.semantics is already present
  991. group.ssrcs = groupSSRCs;
  992. // eslint-disable-next-line max-depth
  993. if (!groupsMap.has(primarySSRC)) {
  994. groupsMap.set(primarySSRC, []);
  995. }
  996. groupsMap.get(primarySSRC).push(group);
  997. }
  998. }
  999. }
  1000. let ssrcs = mLine.ssrcs;
  1001. // Filter the ssrcs with 'msid' attribute for plan-b clients and 'cname' for unified-plan clients.
  1002. ssrcs = this._usesUnifiedPlan
  1003. ? ssrcs.filter(s => s.attribute === 'cname')
  1004. : ssrcs.filter(s => s.attribute === 'msid');
  1005. for (const ssrc of ssrcs) {
  1006. // Use the mediaType as key for the source map for unified plan clients since msids are not part of
  1007. // the standard and the unified plan SDPs do not have a proper msid attribute for the sources.
  1008. // Also the ssrcs for sources do not change for Unified plan clients since RTCRtpSender#replaceTrack is
  1009. // used for switching the tracks so it is safe to use the mediaType as the key for the TrackSSRCInfo map.
  1010. const key = this._usesUnifiedPlan ? mLine.type : ssrc.value;
  1011. const ssrcNumber = ssrc.id;
  1012. let ssrcInfo = ssrcMap.get(key);
  1013. if (!ssrcInfo) {
  1014. ssrcInfo = {
  1015. ssrcs: [],
  1016. groups: [],
  1017. msid: key
  1018. };
  1019. ssrcMap.set(key, ssrcInfo);
  1020. }
  1021. ssrcInfo.ssrcs.push(ssrcNumber);
  1022. if (groupsMap.has(ssrcNumber)) {
  1023. const ssrcGroups = groupsMap.get(ssrcNumber);
  1024. for (const group of ssrcGroups) {
  1025. ssrcInfo.groups.push(group);
  1026. }
  1027. }
  1028. }
  1029. }
  1030. return ssrcMap;
  1031. };
  1032. /**
  1033. * Takes a SessionDescription object and returns a "normalized" version.
  1034. * Currently it takes care of ordering the a=ssrc lines and denoting receive
  1035. * only SSRCs.
  1036. */
  1037. const normalizePlanB = function(desc) {
  1038. if (typeof desc !== 'object' || desc === null
  1039. || typeof desc.sdp !== 'string') {
  1040. logger.warn('An empty description was passed as an argument');
  1041. return desc;
  1042. }
  1043. // eslint-disable-next-line no-shadow
  1044. const transform = require('sdp-transform');
  1045. const session = transform.parse(desc.sdp);
  1046. if (typeof session !== 'undefined'
  1047. && typeof session.media !== 'undefined'
  1048. && Array.isArray(session.media)) {
  1049. session.media.forEach(mLine => {
  1050. // Chrome appears to be picky about the order in which a=ssrc lines
  1051. // are listed in an m-line when rtx is enabled (and thus there are
  1052. // a=ssrc-group lines with FID semantics). Specifically if we have
  1053. // "a=ssrc-group:FID S1 S2" and the "a=ssrc:S2" lines appear before
  1054. // the "a=ssrc:S1" lines, SRD fails.
  1055. // So, put SSRC which appear as the first SSRC in an FID ssrc-group
  1056. // first.
  1057. const firstSsrcs = [];
  1058. const newSsrcLines = [];
  1059. if (typeof mLine.ssrcGroups !== 'undefined'
  1060. && Array.isArray(mLine.ssrcGroups)) {
  1061. mLine.ssrcGroups.forEach(group => {
  1062. if (typeof group.semantics !== 'undefined'
  1063. && group.semantics === 'FID') {
  1064. if (typeof group.ssrcs !== 'undefined') {
  1065. firstSsrcs.push(Number(group.ssrcs.split(' ')[0]));
  1066. }
  1067. }
  1068. });
  1069. }
  1070. if (Array.isArray(mLine.ssrcs)) {
  1071. let i;
  1072. for (i = 0; i < mLine.ssrcs.length; i++) {
  1073. if (typeof mLine.ssrcs[i] === 'object'
  1074. && typeof mLine.ssrcs[i].id !== 'undefined'
  1075. && firstSsrcs.indexOf(mLine.ssrcs[i].id) >= 0) {
  1076. newSsrcLines.push(mLine.ssrcs[i]);
  1077. delete mLine.ssrcs[i];
  1078. }
  1079. }
  1080. for (i = 0; i < mLine.ssrcs.length; i++) {
  1081. if (typeof mLine.ssrcs[i] !== 'undefined') {
  1082. newSsrcLines.push(mLine.ssrcs[i]);
  1083. }
  1084. }
  1085. mLine.ssrcs = replaceDefaultUnifiedPlanMsid(newSsrcLines);
  1086. }
  1087. });
  1088. }
  1089. const resStr = transform.write(session);
  1090. return new RTCSessionDescription({
  1091. type: desc.type,
  1092. sdp: resStr
  1093. });
  1094. };
  1095. /**
  1096. * Unified plan differentiates a remote track not associated with a stream using
  1097. * the msid "-", which can incorrectly trigger an onaddstream event in plan-b.
  1098. * For jitsi, these tracks are actually receive-only ssrcs. To prevent
  1099. * onaddstream from firing, remove the ssrcs with msid "-" except the cname
  1100. * line. Normally the ssrcs are not used by the client, as the bridge controls
  1101. * media flow, but keep one reference to the ssrc for the p2p case.
  1102. *
  1103. * @param {Array<Object>} ssrcLines - The ssrc lines from a remote description.
  1104. * @private
  1105. * @returns {Array<Object>} ssrcLines with removed lines referencing msid "-".
  1106. */
  1107. function replaceDefaultUnifiedPlanMsid(ssrcLines = []) {
  1108. if (!browser.isChrome() || !browser.isVersionGreaterThan(70)) {
  1109. return ssrcLines;
  1110. }
  1111. let filteredLines = [ ...ssrcLines ];
  1112. const problematicSsrcIds = ssrcLines.filter(ssrcLine =>
  1113. ssrcLine.attribute === 'mslabel' && ssrcLine.value === '-')
  1114. .map(ssrcLine => ssrcLine.id);
  1115. problematicSsrcIds.forEach(ssrcId => {
  1116. // Find the cname which is to be modified and left in.
  1117. const cnameLine = filteredLines.find(line =>
  1118. line.id === ssrcId && line.attribute === 'cname');
  1119. cnameLine.value = `${MediaDirection.RECVONLY}-${ssrcId}`;
  1120. // Remove all of lines for the ssrc.
  1121. filteredLines
  1122. = filteredLines.filter(line => line.id !== ssrcId);
  1123. // But re-add the cname line so there is a reference kept to the ssrc
  1124. // in the SDP.
  1125. filteredLines.push(cnameLine);
  1126. });
  1127. return filteredLines;
  1128. }
  1129. /**
  1130. * Makes sure that both audio and video directions are configured as 'sendrecv'.
  1131. * @param {Object} localDescription the SDP object as defined by WebRTC.
  1132. * @param {object} options <tt>TracablePeerConnection</tt> config options.
  1133. */
  1134. const enforceSendRecv = function(localDescription, options) {
  1135. if (!localDescription) {
  1136. throw new Error('No local description passed in.');
  1137. }
  1138. const transformer = new SdpTransformWrap(localDescription.sdp);
  1139. const audioMedia = transformer.selectMedia(MediaType.AUDIO)?.[0];
  1140. let changed = false;
  1141. if (audioMedia && audioMedia.direction !== MediaDirection.SENDRECV) {
  1142. if (options.startSilent) {
  1143. audioMedia.direction = MediaDirection.INACTIVE;
  1144. } else {
  1145. audioMedia.direction = MediaDirection.SENDRECV;
  1146. }
  1147. changed = true;
  1148. }
  1149. const videoMedia = transformer.selectMedia(MediaType.VIDEO)?.[0];
  1150. if (videoMedia && videoMedia.direction !== MediaDirection.SENDRECV) {
  1151. videoMedia.direction = MediaDirection.SENDRECV;
  1152. changed = true;
  1153. }
  1154. if (changed) {
  1155. return new RTCSessionDescription({
  1156. type: localDescription.type,
  1157. sdp: transformer.toRawSDP()
  1158. });
  1159. }
  1160. return localDescription;
  1161. };
  1162. /**
  1163. *
  1164. * @param {JitsiLocalTrack} localTrack
  1165. */
  1166. TraceablePeerConnection.prototype.getLocalSSRC = function(localTrack) {
  1167. const ssrcInfo = this._getSSRC(localTrack.rtcId);
  1168. return ssrcInfo && ssrcInfo.ssrcs[0];
  1169. };
  1170. /**
  1171. * When doing unified plan simulcast, we'll have a set of ssrcs with the
  1172. * same msid but no ssrc-group, since unified plan signals the simulcast
  1173. * group via the a=simulcast line. Unfortunately, Jicofo will complain
  1174. * if it sees ssrcs with matching msids but no ssrc-group, so we'll inject
  1175. * an ssrc-group line to make Jicofo happy.
  1176. * @param desc A session description object (with 'type' and 'sdp' fields)
  1177. * @return A session description object with its sdp field modified to
  1178. * contain an inject ssrc-group for simulcast
  1179. */
  1180. TraceablePeerConnection.prototype._injectSsrcGroupForUnifiedSimulcast
  1181. = function(desc) {
  1182. const sdp = transform.parse(desc.sdp);
  1183. const video = sdp.media.find(mline => mline.type === 'video');
  1184. // Check if the browser supports RTX, add only the primary ssrcs to the SIM group if that is the case.
  1185. video.ssrcGroups = video.ssrcGroups || [];
  1186. const fidGroups = video.ssrcGroups.filter(group => group.semantics === 'FID');
  1187. if (video.simulcast || video.simulcast_03) {
  1188. const ssrcs = [];
  1189. if (fidGroups && fidGroups.length) {
  1190. fidGroups.forEach(group => {
  1191. ssrcs.push(group.ssrcs.split(' ')[0]);
  1192. });
  1193. } else {
  1194. video.ssrcs.forEach(ssrc => {
  1195. if (ssrc.attribute === 'msid') {
  1196. ssrcs.push(ssrc.id);
  1197. }
  1198. });
  1199. }
  1200. if (video.ssrcGroups.find(group => group.semantics === 'SIM')) {
  1201. // Group already exists, no need to do anything
  1202. return desc;
  1203. }
  1204. video.ssrcGroups.push({
  1205. semantics: 'SIM',
  1206. ssrcs: ssrcs.join(' ')
  1207. });
  1208. }
  1209. return new RTCSessionDescription({
  1210. type: desc.type,
  1211. sdp: transform.write(sdp)
  1212. });
  1213. };
  1214. /* eslint-disable-next-line vars-on-top */
  1215. const getters = {
  1216. signalingState() {
  1217. return this.peerconnection.signalingState;
  1218. },
  1219. iceConnectionState() {
  1220. return this.peerconnection.iceConnectionState;
  1221. },
  1222. connectionState() {
  1223. return this.peerconnection.connectionState;
  1224. },
  1225. localDescription() {
  1226. let desc = this.peerconnection.localDescription;
  1227. if (!desc) {
  1228. logger.debug(`${this} getLocalDescription no localDescription found`);
  1229. return {};
  1230. }
  1231. this.trace('getLocalDescription::preTransform', dumpSDP(desc));
  1232. // If the browser is running in unified plan mode and this is a jvb connection,
  1233. // transform the SDP to Plan B first.
  1234. if (this._usesUnifiedPlan && !this.isP2P) {
  1235. desc = this.interop.toPlanB(desc);
  1236. this.trace('getLocalDescription::postTransform (Plan B)',
  1237. dumpSDP(desc));
  1238. desc = this._injectSsrcGroupForUnifiedSimulcast(desc);
  1239. this.trace('getLocalDescription::postTransform (inject ssrc group)',
  1240. dumpSDP(desc));
  1241. } else if (!this._usesUnifiedPlan) {
  1242. if (browser.doesVideoMuteByStreamRemove()) {
  1243. desc = this.localSdpMunger.maybeAddMutedLocalVideoTracksToSDP(desc);
  1244. logger.debug(
  1245. 'getLocalDescription::postTransform (munge local SDP)', desc);
  1246. }
  1247. // What comes out of this getter will be signalled over Jingle to
  1248. // the other peer, so we need to make sure the media direction is
  1249. // 'sendrecv' because we won't change the direction later and don't want
  1250. // the other peer to think we can't send or receive.
  1251. //
  1252. // Note that the description we set in chrome does have the accurate
  1253. // direction (e.g. 'recvonly'), since that is technically what is
  1254. // happening (check setLocalDescription impl).
  1255. desc = enforceSendRecv(desc, this.options);
  1256. }
  1257. // See the method's doc for more info about this transformation.
  1258. desc = this.localSdpMunger.transformStreamIdentifiers(desc);
  1259. return desc;
  1260. },
  1261. remoteDescription() {
  1262. let desc = this.peerconnection.remoteDescription;
  1263. if (!desc) {
  1264. logger.debug(`${this} getRemoteDescription no remoteDescription found`);
  1265. return {};
  1266. }
  1267. this.trace('getRemoteDescription::preTransform', dumpSDP(desc));
  1268. if (this._usesUnifiedPlan) {
  1269. if (this.isP2P) {
  1270. // Adjust the media direction for p2p based on whether a local source has been added.
  1271. desc = this._adjustRemoteMediaDirection(desc);
  1272. } else {
  1273. // If this is a jvb connection, transform the SDP to Plan B first.
  1274. desc = this.interop.toPlanB(desc);
  1275. this.trace('getRemoteDescription::postTransform (Plan B)', dumpSDP(desc));
  1276. }
  1277. }
  1278. return desc;
  1279. }
  1280. };
  1281. Object.keys(getters).forEach(prop => {
  1282. Object.defineProperty(
  1283. TraceablePeerConnection.prototype,
  1284. prop, {
  1285. get: getters[prop]
  1286. }
  1287. );
  1288. });
  1289. TraceablePeerConnection.prototype._getSSRC = function(rtcId) {
  1290. return this.localSSRCs.get(rtcId);
  1291. };
  1292. /**
  1293. * Checks if low fps screensharing is in progress.
  1294. *
  1295. * @private
  1296. * @returns {boolean} Returns true if 5 fps screensharing is in progress, false otherwise.
  1297. */
  1298. TraceablePeerConnection.prototype.isSharingLowFpsScreen = function() {
  1299. return this._isSharingScreen() && this._capScreenshareBitrate;
  1300. };
  1301. /**
  1302. * Checks if screensharing is in progress.
  1303. *
  1304. * @returns {boolean} Returns true if a desktop track has been added to the peerconnection, false otherwise.
  1305. */
  1306. TraceablePeerConnection.prototype._isSharingScreen = function() {
  1307. const tracks = this.getLocalVideoTracks();
  1308. return Boolean(tracks.find(track => track.videoType === VideoType.DESKTOP));
  1309. };
  1310. /**
  1311. * Munges the order of the codecs in the SDP passed based on the preference
  1312. * set through config.js settings. All instances of the specified codec are
  1313. * moved up to the top of the list when it is preferred. The specified codec
  1314. * is deleted from the list if the configuration specifies that the codec be
  1315. * disabled.
  1316. * @param {RTCSessionDescription} description that needs to be munged.
  1317. * @returns {RTCSessionDescription} the munged description.
  1318. */
  1319. TraceablePeerConnection.prototype._mungeCodecOrder = function(description) {
  1320. if (!this.codecPreference) {
  1321. return description;
  1322. }
  1323. const parsedSdp = transform.parse(description.sdp);
  1324. // Only the m-line that defines the source the browser will be sending should need to change.
  1325. // This is typically the first m-line with the matching media type.
  1326. const mLine = parsedSdp.media.find(m => m.type === this.codecPreference.mediaType);
  1327. if (!mLine) {
  1328. return description;
  1329. }
  1330. if (this.codecPreference.enable) {
  1331. SDPUtil.preferCodec(mLine, this.codecPreference.mimeType);
  1332. // Strip the high profile H264 codecs on mobile clients for p2p connection.
  1333. // High profile codecs give better quality at the expense of higher load which
  1334. // we do not want on mobile clients.
  1335. // Jicofo offers only the baseline code for the jvb connection.
  1336. // TODO - add check for mobile browsers once js-utils provides that check.
  1337. if (this.codecPreference.mimeType === CodecMimeType.H264 && browser.isReactNative() && this.isP2P) {
  1338. SDPUtil.stripCodec(mLine, this.codecPreference.mimeType, true /* high profile */);
  1339. }
  1340. // Set the max bitrate here on the SDP so that the configured max. bitrate is effective
  1341. // as soon as the browser switches to VP9.
  1342. if (this.codecPreference.mimeType === CodecMimeType.VP9
  1343. && this.getConfiguredVideoCodec() === CodecMimeType.VP9) {
  1344. const bitrates = this.tpcUtils.videoBitrates.VP9 || this.tpcUtils.videoBitrates;
  1345. const hdBitrate = bitrates.high ? bitrates.high : HD_BITRATE;
  1346. const limit = Math.floor((this._isSharingScreen() ? HD_BITRATE : hdBitrate) / 1000);
  1347. // Use only the HD bitrate for now as there is no API available yet for configuring
  1348. // the bitrates on the individual SVC layers.
  1349. mLine.bandwidth = [ {
  1350. type: 'AS',
  1351. limit
  1352. } ];
  1353. } else {
  1354. // Clear the bandwidth limit in SDP when VP9 is no longer the preferred codec.
  1355. // This is needed on react native clients as react-native-webrtc returns the
  1356. // SDP that the application passed instead of returning the SDP off the native side.
  1357. // This line automatically gets cleared on web on every renegotiation.
  1358. mLine.bandwidth = undefined;
  1359. }
  1360. } else {
  1361. SDPUtil.stripCodec(mLine, this.codecPreference.mimeType);
  1362. }
  1363. return new RTCSessionDescription({
  1364. type: description.type,
  1365. sdp: transform.write(parsedSdp)
  1366. });
  1367. };
  1368. /**
  1369. * Add {@link JitsiLocalTrack} to this TPC.
  1370. * @param {JitsiLocalTrack} track
  1371. * @param {boolean} isInitiator indicates if the endpoint is the offerer.
  1372. * @returns {Promise<void>} - resolved when done.
  1373. */
  1374. TraceablePeerConnection.prototype.addTrack = function(track, isInitiator = false) {
  1375. const rtcId = track.rtcId;
  1376. logger.info(`${this} adding ${track}`);
  1377. if (this.localTracks.has(rtcId)) {
  1378. return Promise.reject(new Error(`${track} is already in ${this}`));
  1379. }
  1380. this.localTracks.set(rtcId, track);
  1381. const webrtcStream = track.getOriginalStream();
  1382. if (this._usesUnifiedPlan) {
  1383. logger.debug(`${this} TPC.addTrack using unified plan`);
  1384. if (webrtcStream) {
  1385. try {
  1386. this.tpcUtils.addTrack(track, isInitiator);
  1387. } catch (error) {
  1388. logger.error(`${this} Adding track=${track} failed: ${error?.message}`);
  1389. return Promise.reject(error);
  1390. }
  1391. }
  1392. } else {
  1393. // Use addStream API for the plan-b case.
  1394. if (webrtcStream) {
  1395. this._addStream(webrtcStream);
  1396. // It's not ok for a track to not have a WebRTC stream if:
  1397. } else if (!browser.doesVideoMuteByStreamRemove()
  1398. || track.isAudioTrack()
  1399. || (track.isVideoTrack() && !track.isMuted())) {
  1400. return Promise.reject(new Error(`${this} no WebRTC stream for track=${track}`));
  1401. }
  1402. // Muted video tracks do not have WebRTC stream
  1403. if (browser.doesVideoMuteByStreamRemove() && track.isVideoTrack() && track.isMuted()) {
  1404. const ssrcInfo = this.generateNewStreamSSRCInfo(track);
  1405. this.sdpConsistency.setPrimarySsrc(ssrcInfo.ssrcs[0]);
  1406. const simGroup
  1407. = ssrcInfo.groups.find(groupInfo => groupInfo.semantics === 'SIM');
  1408. if (simGroup) {
  1409. this.simulcast.setSsrcCache(simGroup.ssrcs);
  1410. }
  1411. const fidGroups
  1412. = ssrcInfo.groups.filter(
  1413. groupInfo => groupInfo.semantics === 'FID');
  1414. if (fidGroups) {
  1415. const rtxSsrcMapping = new Map();
  1416. fidGroups.forEach(fidGroup => {
  1417. const primarySsrc = fidGroup.ssrcs[0];
  1418. const rtxSsrc = fidGroup.ssrcs[1];
  1419. rtxSsrcMapping.set(primarySsrc, rtxSsrc);
  1420. });
  1421. this.rtxModifier.setSsrcCache(rtxSsrcMapping);
  1422. }
  1423. }
  1424. }
  1425. let promiseChain = Promise.resolve();
  1426. // On Firefox, the encodings have to be configured on the sender only after the transceiver is created.
  1427. if (browser.isFirefox()) {
  1428. promiseChain = promiseChain.then(() => webrtcStream && this.tpcUtils.setEncodings(track));
  1429. }
  1430. return promiseChain;
  1431. };
  1432. /**
  1433. * Adds local track as part of the unmute operation.
  1434. * @param {JitsiLocalTrack} track the track to be added as part of the unmute operation.
  1435. *
  1436. * @return {Promise<boolean>} Promise that resolves to true if the underlying PeerConnection's
  1437. * state has changed and renegotiation is required, false if no renegotiation is needed or
  1438. * Promise is rejected when something goes wrong.
  1439. */
  1440. TraceablePeerConnection.prototype.addTrackUnmute = function(track) {
  1441. logger.info(`${this} Adding track=${track} as unmute`);
  1442. if (!this._assertTrackBelongs('addTrackUnmute', track)) {
  1443. // Abort
  1444. return Promise.reject('Track not found on the peerconnection');
  1445. }
  1446. const webRtcStream = track.getOriginalStream();
  1447. if (!webRtcStream) {
  1448. logger.error(`${this} Unable to add track=${track} as unmute - no WebRTC stream`);
  1449. return Promise.reject('Stream not found');
  1450. }
  1451. if (this._usesUnifiedPlan) {
  1452. return this.tpcUtils.replaceTrack(null, track).then(() => this.isP2P);
  1453. }
  1454. this._addStream(webRtcStream);
  1455. return Promise.resolve(true);
  1456. };
  1457. /**
  1458. * Adds WebRTC media stream to the underlying PeerConnection
  1459. * @param {MediaStream} mediaStream
  1460. * @private
  1461. */
  1462. TraceablePeerConnection.prototype._addStream = function(mediaStream) {
  1463. this.peerconnection.addStream(mediaStream);
  1464. this._addedStreams.push(mediaStream);
  1465. };
  1466. /**
  1467. * Removes WebRTC media stream from the underlying PeerConection
  1468. * @param {MediaStream} mediaStream
  1469. */
  1470. TraceablePeerConnection.prototype._removeStream = function(mediaStream) {
  1471. this.peerconnection.removeStream(mediaStream);
  1472. this._addedStreams
  1473. = this._addedStreams.filter(stream => stream !== mediaStream);
  1474. };
  1475. /**
  1476. * This method when called will check if given <tt>localTrack</tt> belongs to
  1477. * this TPC (that it has been previously added using {@link addTrack}). If the
  1478. * track does not belong an error message will be logged.
  1479. * @param {string} methodName the method name that will be logged in an error
  1480. * message
  1481. * @param {JitsiLocalTrack} localTrack
  1482. * @return {boolean} <tt>true</tt> if given local track belongs to this TPC or
  1483. * <tt>false</tt> otherwise.
  1484. * @private
  1485. */
  1486. TraceablePeerConnection.prototype._assertTrackBelongs = function(
  1487. methodName,
  1488. localTrack) {
  1489. const doesBelong = this.localTracks.has(localTrack?.rtcId);
  1490. if (!doesBelong) {
  1491. logger.error(`${this} ${methodName}: track=${localTrack} does not belong to pc`);
  1492. }
  1493. return doesBelong;
  1494. };
  1495. /**
  1496. * Returns the codec that is configured on the client as the preferred video codec.
  1497. * This takes into account the current order of codecs in the local description sdp.
  1498. *
  1499. * @returns {CodecMimeType} The codec that is set as the preferred codec to receive
  1500. * video in the local SDP.
  1501. */
  1502. TraceablePeerConnection.prototype.getConfiguredVideoCodec = function() {
  1503. const sdp = this.peerconnection.localDescription?.sdp;
  1504. const defaultCodec = CodecMimeType.VP8;
  1505. if (!sdp) {
  1506. return defaultCodec;
  1507. }
  1508. const parsedSdp = transform.parse(sdp);
  1509. const mLine = parsedSdp.media.find(m => m.type === MediaType.VIDEO);
  1510. const codec = mLine.rtp[0].codec;
  1511. if (codec) {
  1512. return Object.values(CodecMimeType).find(value => value === codec.toLowerCase());
  1513. }
  1514. return defaultCodec;
  1515. };
  1516. /**
  1517. * Enables or disables simulcast for screenshare based on the frame rate requested for desktop track capture.
  1518. *
  1519. * @param {number} maxFps framerate to be used for desktop track capture.
  1520. */
  1521. TraceablePeerConnection.prototype.setDesktopSharingFrameRate = function(maxFps) {
  1522. const lowFps = maxFps <= SS_DEFAULT_FRAME_RATE;
  1523. this._capScreenshareBitrate = this.isSimulcastOn() && lowFps;
  1524. };
  1525. /**
  1526. * Sets the codec preference on the peerconnection. The codec preference goes into effect when
  1527. * the next renegotiation happens.
  1528. *
  1529. * @param {CodecMimeType} preferredCodec the preferred codec.
  1530. * @param {CodecMimeType} disabledCodec the codec that needs to be disabled.
  1531. * @returns {void}
  1532. */
  1533. TraceablePeerConnection.prototype.setVideoCodecs = function(preferredCodec = null, disabledCodec = null) {
  1534. // If both enable and disable are set, disable settings will prevail.
  1535. const enable = disabledCodec === null;
  1536. const mimeType = disabledCodec ? disabledCodec : preferredCodec;
  1537. if (this.codecPreference && (preferredCodec || disabledCodec)) {
  1538. this.codecPreference.enable = enable;
  1539. this.codecPreference.mimeType = mimeType;
  1540. } else if (preferredCodec || disabledCodec) {
  1541. this.codecPreference = {
  1542. enable,
  1543. mediaType: MediaType.VIDEO,
  1544. mimeType
  1545. };
  1546. } else {
  1547. logger.warn(`${this} Invalid codec settings[preferred=${preferredCodec},disabled=${disabledCodec}],
  1548. atleast one value is needed`);
  1549. }
  1550. };
  1551. /**
  1552. * Tells if the given WebRTC <tt>MediaStream</tt> has been added to
  1553. * the underlying WebRTC PeerConnection.
  1554. * @param {MediaStream} mediaStream
  1555. * @returns {boolean}
  1556. */
  1557. TraceablePeerConnection.prototype.isMediaStreamInPc = function(mediaStream) {
  1558. return this._addedStreams.indexOf(mediaStream) > -1;
  1559. };
  1560. /**
  1561. * Remove local track from this TPC.
  1562. * @param {JitsiLocalTrack} localTrack the track to be removed from this TPC.
  1563. *
  1564. * FIXME It should probably remove a boolean just like {@link removeTrackMute}
  1565. * The same applies to addTrack.
  1566. */
  1567. TraceablePeerConnection.prototype.removeTrack = function(localTrack) {
  1568. const webRtcStream = localTrack.getOriginalStream();
  1569. this.trace(
  1570. 'removeStream',
  1571. localTrack.rtcId, webRtcStream ? webRtcStream.id : undefined);
  1572. if (!this._assertTrackBelongs('removeStream', localTrack)) {
  1573. // Abort - nothing to be done here
  1574. return;
  1575. }
  1576. this.localTracks.delete(localTrack.rtcId);
  1577. this.localSSRCs.delete(localTrack.rtcId);
  1578. if (webRtcStream) {
  1579. this.peerconnection.removeStream(webRtcStream);
  1580. }
  1581. };
  1582. /**
  1583. * Returns the sender corresponding to the given media type.
  1584. * @param {MEDIA_TYPE} mediaType - The media type 'audio' or 'video' to be used for the search.
  1585. * @returns {RTPSender|undefined} - The found sender or undefined if no sender
  1586. * was found.
  1587. */
  1588. TraceablePeerConnection.prototype.findSenderByKind = function(mediaType) {
  1589. if (this.peerconnection.getSenders) {
  1590. return this.peerconnection.getSenders().find(s => s.track && s.track.kind === mediaType);
  1591. }
  1592. };
  1593. /**
  1594. * Returns the receiver corresponding to the given MediaStreamTrack.
  1595. *
  1596. * @param {MediaSreamTrack} track - The media stream track used for the search.
  1597. * @returns {RTCRtpReceiver|undefined} - The found receiver or undefined if no receiver
  1598. * was found.
  1599. */
  1600. TraceablePeerConnection.prototype.findReceiverForTrack = function(track) {
  1601. return this.peerconnection.getReceivers().find(r => r.track === track);
  1602. };
  1603. /**
  1604. * Returns the sender corresponding to the given MediaStreamTrack.
  1605. *
  1606. * @param {MediaSreamTrack} track - The media stream track used for the search.
  1607. * @returns {RTCRtpSender|undefined} - The found sender or undefined if no sender
  1608. * was found.
  1609. */
  1610. TraceablePeerConnection.prototype.findSenderForTrack = function(track) {
  1611. if (this.peerconnection.getSenders) {
  1612. return this.peerconnection.getSenders().find(s => s.track === track);
  1613. }
  1614. };
  1615. /**
  1616. * Replaces <tt>oldTrack</tt> with <tt>newTrack</tt> from the peer connection.
  1617. * Either <tt>oldTrack</tt> or <tt>newTrack</tt> can be null; replacing a valid
  1618. * <tt>oldTrack</tt> with a null <tt>newTrack</tt> effectively just removes
  1619. * <tt>oldTrack</tt>
  1620. *
  1621. * @param {JitsiLocalTrack|null} oldTrack - The current track in use to be replaced on the pc.
  1622. * @param {JitsiLocalTrack|null} newTrack - The new track to be used.
  1623. *
  1624. * @returns {Promise<boolean>} - If the promise resolves with true, renegotiation will be needed.
  1625. * Otherwise no renegotiation is needed.
  1626. */
  1627. TraceablePeerConnection.prototype.replaceTrack = function(oldTrack, newTrack) {
  1628. if (!(oldTrack || newTrack)) {
  1629. logger.info(`${this} replaceTrack called with no new track and no old track`);
  1630. return Promise.resolve();
  1631. }
  1632. // If a track is being added to the peerconnection for the first time, we want the source signaling to be sent to
  1633. // Jicofo before the mute state is sent over presence. Therefore, trigger a renegotiation in this case. If we
  1634. // rely on "negotiationneeded" fired by the browser to signal new ssrcs, the mute state in presence will be sent
  1635. // before the source signaling which is undesirable.
  1636. const negotiationNeeded = Boolean(!oldTrack || !this.localTracks.has(oldTrack?.rtcId));
  1637. if (this._usesUnifiedPlan) {
  1638. logger.debug(`${this} TPC.replaceTrack using unified plan`);
  1639. const mediaType = newTrack?.getType() ?? oldTrack?.getType();
  1640. const stream = newTrack?.getOriginalStream();
  1641. const promise = newTrack && !stream
  1642. // Ignore cases when the track is replaced while the device is in a muted state.
  1643. // The track will be replaced again on the peerconnection when the user unmutes.
  1644. ? Promise.resolve()
  1645. : this.tpcUtils.replaceTrack(oldTrack, newTrack);
  1646. const transceiver = this.tpcUtils.findTransceiver(mediaType, oldTrack);
  1647. return promise
  1648. .then(() => {
  1649. oldTrack && this.localTracks.delete(oldTrack.rtcId);
  1650. newTrack && this.localTracks.set(newTrack.rtcId, newTrack);
  1651. const mediaActive = mediaType === MediaType.AUDIO
  1652. ? this.audioTransferActive
  1653. : this.videoTransferActive;
  1654. // Set the transceiver direction only if media is not suspended on the connection. This happens when
  1655. // the client is using the p2p connection. Transceiver direction is updated when media is resumed on
  1656. // this connection again.
  1657. if (transceiver && mediaActive) {
  1658. transceiver.direction = newTrack ? MediaDirection.SENDRECV : MediaDirection.RECVONLY;
  1659. }
  1660. // Avoid configuring the encodings on Chromium/Safari until simulcast is configured
  1661. // for the newly added track using SDP munging which happens during the renegotiation.
  1662. const configureEncodingsPromise = browser.usesSdpMungingForSimulcast() || !newTrack
  1663. ? Promise.resolve()
  1664. : this.tpcUtils.setEncodings(newTrack);
  1665. // Renegotiate only in the case of P2P. We rely on 'negotiationeeded' to be fired for JVB.
  1666. return configureEncodingsPromise.then(() => this.isP2P || negotiationNeeded);
  1667. });
  1668. }
  1669. logger.debug(`${this} TPC.replaceTrack using plan B`);
  1670. let promiseChain = Promise.resolve();
  1671. if (oldTrack) {
  1672. this.removeTrack(oldTrack);
  1673. }
  1674. if (newTrack) {
  1675. promiseChain = this.addTrack(newTrack);
  1676. }
  1677. return promiseChain.then(() => true);
  1678. };
  1679. /**
  1680. * Removes local track as part of the mute operation.
  1681. * @param {JitsiLocalTrack} localTrack the local track to be remove as part of
  1682. * the mute operation.
  1683. * @return {Promise<boolean>} Promise that resolves to true if the underlying PeerConnection's
  1684. * state has changed and renegotiation is required, false if no renegotiation is needed or
  1685. * Promise is rejected when something goes wrong.
  1686. */
  1687. TraceablePeerConnection.prototype.removeTrackMute = function(localTrack) {
  1688. const webRtcStream = localTrack.getOriginalStream();
  1689. this.trace(
  1690. 'removeStreamMute',
  1691. localTrack.rtcId, webRtcStream ? webRtcStream.id : null);
  1692. if (!this._assertTrackBelongs('removeStreamMute', localTrack)) {
  1693. // Abort - nothing to be done here
  1694. return Promise.reject('Track not found in the peerconnection');
  1695. }
  1696. if (this._usesUnifiedPlan) {
  1697. return this.tpcUtils.replaceTrack(localTrack, null);
  1698. }
  1699. if (webRtcStream) {
  1700. logger.info(`${this} Removing track=${localTrack} as mute`);
  1701. this._removeStream(webRtcStream);
  1702. return Promise.resolve(true);
  1703. }
  1704. logger.error(`${this} removeStreamMute - no WebRTC stream for track=${localTrack}`);
  1705. return Promise.reject('Stream not found');
  1706. };
  1707. TraceablePeerConnection.prototype.createDataChannel = function(label, opts) {
  1708. this.trace('createDataChannel', label, opts);
  1709. return this.peerconnection.createDataChannel(label, opts);
  1710. };
  1711. /**
  1712. * Ensures that the simulcast ssrc-group appears after any other ssrc-groups
  1713. * in the SDP so that simulcast is properly activated.
  1714. *
  1715. * @param {Object} localSdp the WebRTC session description instance for
  1716. * the local description.
  1717. * @private
  1718. */
  1719. TraceablePeerConnection.prototype._ensureSimulcastGroupIsLast = function(localSdp) {
  1720. let sdpStr = localSdp.sdp;
  1721. const videoStartIndex = sdpStr.indexOf('m=video');
  1722. const simStartIndex = sdpStr.indexOf('a=ssrc-group:SIM', videoStartIndex);
  1723. let otherStartIndex = sdpStr.lastIndexOf('a=ssrc-group');
  1724. if (simStartIndex === -1
  1725. || otherStartIndex === -1
  1726. || otherStartIndex === simStartIndex) {
  1727. return localSdp;
  1728. }
  1729. const simEndIndex = sdpStr.indexOf('\r\n', simStartIndex);
  1730. const simStr = sdpStr.substring(simStartIndex, simEndIndex + 2);
  1731. sdpStr = sdpStr.replace(simStr, '');
  1732. otherStartIndex = sdpStr.lastIndexOf('a=ssrc-group');
  1733. const otherEndIndex = sdpStr.indexOf('\r\n', otherStartIndex);
  1734. const sdpHead = sdpStr.slice(0, otherEndIndex);
  1735. const simStrTrimmed = simStr.trim();
  1736. const sdpTail = sdpStr.slice(otherEndIndex);
  1737. sdpStr = `${sdpHead}\r\n${simStrTrimmed}${sdpTail}`;
  1738. return new RTCSessionDescription({
  1739. type: localSdp.type,
  1740. sdp: sdpStr
  1741. });
  1742. };
  1743. /**
  1744. * Will adjust audio and video media direction in the given SDP object to
  1745. * reflect the current status of the {@link audioTransferActive} and
  1746. * {@link videoTransferActive} flags.
  1747. * @param {RTCSessionDescription} localDescription the WebRTC session description instance for
  1748. * the local description.
  1749. * @private
  1750. */
  1751. TraceablePeerConnection.prototype._adjustLocalMediaDirection = function(localDescription) {
  1752. const transformer = new SdpTransformWrap(localDescription.sdp);
  1753. let modifiedDirection = false;
  1754. const audioMedia = transformer.selectMedia(MediaType.AUDIO)?.[0];
  1755. if (audioMedia) {
  1756. const desiredAudioDirection = this.getDesiredMediaDirection(MediaType.AUDIO);
  1757. if (audioMedia.direction !== desiredAudioDirection) {
  1758. audioMedia.direction = desiredAudioDirection;
  1759. logger.info(`${this} Adjusted local audio direction to ${desiredAudioDirection}`);
  1760. modifiedDirection = true;
  1761. }
  1762. } else {
  1763. logger.warn(`${this} No "audio" media found in the local description`);
  1764. }
  1765. const videoMedia = transformer.selectMedia(MediaType.VIDEO)?.[0];
  1766. if (videoMedia) {
  1767. const desiredVideoDirection = this.getDesiredMediaDirection(MediaType.VIDEO);
  1768. if (videoMedia.direction !== desiredVideoDirection) {
  1769. videoMedia.direction = desiredVideoDirection;
  1770. logger.info(`${this} Adjusted local video direction to ${desiredVideoDirection}`);
  1771. modifiedDirection = true;
  1772. }
  1773. } else {
  1774. logger.warn(`${this} No "video" media found in the local description`);
  1775. }
  1776. if (modifiedDirection) {
  1777. return new RTCSessionDescription({
  1778. type: localDescription.type,
  1779. sdp: transformer.toRawSDP()
  1780. });
  1781. }
  1782. return localDescription;
  1783. };
  1784. /**
  1785. * Adjusts the media direction on the remote description based on availability of local and remote sources in a p2p
  1786. * media connection.
  1787. *
  1788. * @param {RTCSessionDescription} remoteDescription the WebRTC session description instance for the remote description.
  1789. * @returns the transformed remoteDescription.
  1790. * @private
  1791. */
  1792. TraceablePeerConnection.prototype._adjustRemoteMediaDirection = function(remoteDescription) {
  1793. const transformer = new SdpTransformWrap(remoteDescription.sdp);
  1794. [ MediaType.AUDIO, MediaType.VIDEO ].forEach(mediaType => {
  1795. const media = transformer.selectMedia(mediaType)?.[0];
  1796. const hasLocalSource = this.hasAnyTracksOfType(mediaType);
  1797. const hasRemoteSource = this.getRemoteTracks(null, mediaType).length > 0;
  1798. media.direction = hasLocalSource && hasRemoteSource
  1799. ? MediaDirection.SENDRECV
  1800. : hasLocalSource
  1801. ? MediaDirection.RECVONLY
  1802. : hasRemoteSource ? MediaDirection.SENDONLY : MediaDirection.INACTIVE;
  1803. });
  1804. return new RTCSessionDescription({
  1805. type: remoteDescription.type,
  1806. sdp: transformer.toRawSDP()
  1807. });
  1808. };
  1809. /**
  1810. * Munges the stereo flag as well as the opusMaxAverageBitrate in the SDP, based
  1811. * on values set through config.js, if present.
  1812. *
  1813. * @param {RTCSessionDescription} description that needs to be munged.
  1814. * @returns {RTCSessionDescription} the munged description.
  1815. */
  1816. TraceablePeerConnection.prototype._mungeOpus = function(description) {
  1817. const { audioQuality } = this.options;
  1818. if (!audioQuality?.stereo && !audioQuality?.opusMaxAverageBitrate) {
  1819. return description;
  1820. }
  1821. const parsedSdp = transform.parse(description.sdp);
  1822. const mLines = parsedSdp.media;
  1823. for (const mLine of mLines) {
  1824. if (mLine.type === 'audio') {
  1825. const { payload } = mLine.rtp.find(protocol => protocol.codec === CodecMimeType.OPUS);
  1826. if (!payload) {
  1827. // eslint-disable-next-line no-continue
  1828. continue;
  1829. }
  1830. let fmtpOpus = mLine.fmtp.find(protocol => protocol.payload === payload);
  1831. if (!fmtpOpus) {
  1832. fmtpOpus = {
  1833. payload,
  1834. config: ''
  1835. };
  1836. }
  1837. const fmtpConfig = transform.parseParams(fmtpOpus.config);
  1838. let sdpChanged = false;
  1839. if (audioQuality?.stereo) {
  1840. fmtpConfig.stereo = 1;
  1841. sdpChanged = true;
  1842. }
  1843. if (audioQuality?.opusMaxAverageBitrate) {
  1844. fmtpConfig.maxaveragebitrate = audioQuality.opusMaxAverageBitrate;
  1845. sdpChanged = true;
  1846. }
  1847. if (!sdpChanged) {
  1848. // eslint-disable-next-line no-continue
  1849. continue;
  1850. }
  1851. let mungedConfig = '';
  1852. for (const key of Object.keys(fmtpConfig)) {
  1853. mungedConfig += `${key}=${fmtpConfig[key]}; `;
  1854. }
  1855. fmtpOpus.config = mungedConfig.trim();
  1856. }
  1857. }
  1858. return new RTCSessionDescription({
  1859. type: description.type,
  1860. sdp: transform.write(parsedSdp)
  1861. });
  1862. };
  1863. /**
  1864. * Sets up the _dtlsTransport object and initializes callbacks for it.
  1865. */
  1866. TraceablePeerConnection.prototype._initializeDtlsTransport = function() {
  1867. // We are assuming here that we only have one bundled transport here
  1868. if (!this.peerconnection.getSenders || this._dtlsTransport) {
  1869. return;
  1870. }
  1871. const senders = this.peerconnection.getSenders();
  1872. if (senders.length !== 0 && senders[0].transport) {
  1873. this._dtlsTransport = senders[0].transport;
  1874. this._dtlsTransport.onerror = error => {
  1875. logger.error(`${this} DtlsTransport error: ${error}`);
  1876. };
  1877. this._dtlsTransport.onstatechange = () => {
  1878. this.trace('dtlsTransport.onstatechange', this._dtlsTransport.state);
  1879. };
  1880. }
  1881. };
  1882. /**
  1883. * Configures the stream encodings depending on the video type and the bitrates configured.
  1884. *
  1885. * @returns {Promise} promise that will be resolved when the operation is successful and rejected otherwise.
  1886. */
  1887. TraceablePeerConnection.prototype.configureSenderVideoEncodings = function() {
  1888. return this.setSenderVideoConstraints(this._senderVideoMaxHeight);
  1889. };
  1890. TraceablePeerConnection.prototype.setLocalDescription = function(description) {
  1891. let localDescription = description;
  1892. this.trace('setLocalDescription::preTransform', dumpSDP(localDescription));
  1893. // Munge stereo flag and opusMaxAverageBitrate based on config.js
  1894. localDescription = this._mungeOpus(localDescription);
  1895. if (!this._usesUnifiedPlan) {
  1896. localDescription = this._adjustLocalMediaDirection(localDescription);
  1897. localDescription = this._ensureSimulcastGroupIsLast(localDescription);
  1898. }
  1899. // Munge the order of the codecs based on the preferences set through config.js if we are using SDP munging.
  1900. if (!this._usesTransceiverCodecPreferences) {
  1901. localDescription = this._mungeCodecOrder(localDescription);
  1902. }
  1903. this.trace('setLocalDescription::postTransform', dumpSDP(localDescription));
  1904. return new Promise((resolve, reject) => {
  1905. this.peerconnection.setLocalDescription(localDescription)
  1906. .then(() => {
  1907. this.trace('setLocalDescriptionOnSuccess');
  1908. const localUfrag = SDPUtil.getUfrag(localDescription.sdp);
  1909. if (localUfrag !== this.localUfrag) {
  1910. this.localUfrag = localUfrag;
  1911. this.eventEmitter.emit(RTCEvents.LOCAL_UFRAG_CHANGED, this, localUfrag);
  1912. }
  1913. this._initializeDtlsTransport();
  1914. resolve();
  1915. }, err => {
  1916. this.trace('setLocalDescriptionOnFailure', err);
  1917. this.eventEmitter.emit(RTCEvents.SET_LOCAL_DESCRIPTION_FAILED, err, this);
  1918. reject(err);
  1919. });
  1920. });
  1921. };
  1922. /**
  1923. * Enables/disables audio media transmission on this peer connection. When
  1924. * disabled the SDP audio media direction in the local SDP will be adjusted to
  1925. * 'inactive' which means that no data will be sent nor accepted, but
  1926. * the connection should be kept alive.
  1927. * @param {boolean} active <tt>true</tt> to enable audio media transmission or
  1928. * <tt>false</tt> to disable. If the value is not a boolean the call will have
  1929. * no effect.
  1930. * @return {boolean} <tt>true</tt> if the value has changed and sRD/sLD cycle
  1931. * needs to be executed in order for the changes to take effect or
  1932. * <tt>false</tt> if the given value was the same as the previous one.
  1933. * @public
  1934. */
  1935. TraceablePeerConnection.prototype.setAudioTransferActive = function(active) {
  1936. logger.debug(`${this} audio transfer active: ${active}`);
  1937. const changed = this.audioTransferActive !== active;
  1938. this.audioTransferActive = active;
  1939. if (this._usesUnifiedPlan) {
  1940. this.tpcUtils.setAudioTransferActive(active);
  1941. // false means no renegotiation up the chain which is not needed in the Unified mode
  1942. return false;
  1943. }
  1944. return changed;
  1945. };
  1946. TraceablePeerConnection.prototype.setRemoteDescription = function(description) {
  1947. let remoteDescription = description;
  1948. this.trace('setRemoteDescription::preTransform', dumpSDP(description));
  1949. // Munge stereo flag and opusMaxAverageBitrate based on config.js
  1950. remoteDescription = this._mungeOpus(remoteDescription);
  1951. if (this._usesUnifiedPlan) {
  1952. // Translate the SDP to Unified plan format first for the jvb case, p2p case will only have 2 m-lines.
  1953. if (!this.isP2P) {
  1954. const currentDescription = this.peerconnection.remoteDescription;
  1955. remoteDescription = this.interop.toUnifiedPlan(remoteDescription, currentDescription);
  1956. this.trace('setRemoteDescription::postTransform (Unified)', dumpSDP(remoteDescription));
  1957. }
  1958. if (this.isSimulcastOn()) {
  1959. // Implode the simulcast ssrcs so that the remote sdp has only the first ssrc in the SIM group.
  1960. remoteDescription = this.simulcast.mungeRemoteDescription(remoteDescription);
  1961. this.trace('setRemoteDescription::postTransform (simulcast)', dumpSDP(remoteDescription));
  1962. remoteDescription = this.tpcUtils.insertUnifiedPlanSimulcastReceive(remoteDescription);
  1963. this.trace('setRemoteDescription::postTransform (sim receive)', dumpSDP(remoteDescription));
  1964. }
  1965. remoteDescription = this.tpcUtils.ensureCorrectOrderOfSsrcs(remoteDescription);
  1966. this.trace('setRemoteDescription::postTransform (correct ssrc order)', dumpSDP(remoteDescription));
  1967. } else {
  1968. if (this.isSimulcastOn()) {
  1969. // Implode the simulcast ssrcs so that the remote sdp has only the first ssrc in the SIM group.
  1970. remoteDescription = this.simulcast.mungeRemoteDescription(
  1971. remoteDescription,
  1972. true /* add x-google-conference flag */);
  1973. this.trace('setRemoteDescription::postTransform (simulcast)', dumpSDP(remoteDescription));
  1974. }
  1975. remoteDescription = normalizePlanB(remoteDescription);
  1976. }
  1977. // Munge the order of the codecs based on the preferences set through config.js.
  1978. remoteDescription = this._mungeCodecOrder(remoteDescription);
  1979. this.trace('setRemoteDescription::postTransform (munge codec order)', dumpSDP(remoteDescription));
  1980. return new Promise((resolve, reject) => {
  1981. this.peerconnection.setRemoteDescription(remoteDescription)
  1982. .then(() => {
  1983. this.trace('setRemoteDescriptionOnSuccess');
  1984. const remoteUfrag = SDPUtil.getUfrag(remoteDescription.sdp);
  1985. if (remoteUfrag !== this.remoteUfrag) {
  1986. this.remoteUfrag = remoteUfrag;
  1987. this.eventEmitter.emit(RTCEvents.REMOTE_UFRAG_CHANGED, this, remoteUfrag);
  1988. }
  1989. this._initializeDtlsTransport();
  1990. resolve();
  1991. }, err => {
  1992. this.trace('setRemoteDescriptionOnFailure', err);
  1993. this.eventEmitter.emit(RTCEvents.SET_REMOTE_DESCRIPTION_FAILED, err, this);
  1994. reject(err);
  1995. });
  1996. });
  1997. };
  1998. /**
  1999. * Changes the resolution of the video stream that is sent to the peer based on the resolution requested by the peer
  2000. * and user preference, sets the degradation preference on the sender based on the video type, configures the maximum
  2001. * bitrates on the send stream.
  2002. *
  2003. * @param {number} frameHeight - The max frame height to be imposed on the outgoing video stream.
  2004. * @returns {Promise} promise that will be resolved when the operation is successful and rejected otherwise.
  2005. */
  2006. TraceablePeerConnection.prototype.setSenderVideoConstraints = function(frameHeight) {
  2007. if (frameHeight < 0) {
  2008. throw new Error(`Invalid frameHeight: ${frameHeight}`);
  2009. }
  2010. // XXX: This is not yet supported on mobile.
  2011. if (browser.isReactNative()) {
  2012. return Promise.resolve();
  2013. }
  2014. this._senderVideoMaxHeight = frameHeight;
  2015. const localVideoTrack = this.getLocalVideoTracks()[0];
  2016. if (!localVideoTrack || localVideoTrack.isMuted()) {
  2017. return Promise.resolve();
  2018. }
  2019. const videoSender = this.findSenderByKind(MediaType.VIDEO);
  2020. if (!videoSender) {
  2021. return Promise.resolve();
  2022. }
  2023. const parameters = videoSender.getParameters();
  2024. if (!parameters?.encodings?.length) {
  2025. return Promise.resolve();
  2026. }
  2027. // Set the degradation preference.
  2028. const preference = this.isSharingLowFpsScreen()
  2029. ? DEGRADATION_PREFERENCE_DESKTOP // Prefer resolution for low fps share.
  2030. : DEGRADATION_PREFERENCE_CAMERA; // Prefer frame-rate for high fps share and camera.
  2031. parameters.degradationPreference = preference;
  2032. logger.info(`${this} Setting degradation preference [preference=${preference},track=${localVideoTrack}`);
  2033. // Calculate the encodings active state based on the resolution requested by the bridge.
  2034. this.encodingsEnabledState = this.tpcUtils.calculateEncodingsActiveState(localVideoTrack, frameHeight);
  2035. const maxBitrates = this.tpcUtils.calculateEncodingsBitrates(localVideoTrack);
  2036. const videoType = localVideoTrack.getVideoType();
  2037. if (this.isSimulcastOn()) {
  2038. for (const encoding in parameters.encodings) {
  2039. if (parameters.encodings.hasOwnProperty(encoding)) {
  2040. parameters.encodings[encoding].active = this.encodingsEnabledState[encoding];
  2041. // Firefox doesn't follow the spec and lets application specify the degradation preference on the
  2042. // encodings.
  2043. browser.isFirefox() && (parameters.encodings[encoding].degradationPreference = preference);
  2044. // Max bitrates are configured on the encodings only for VP8.
  2045. if (this.getConfiguredVideoCodec() === CodecMimeType.VP8
  2046. && (this.options?.videoQuality?.maxBitratesVideo
  2047. || this.isSharingLowFpsScreen()
  2048. || this._usesUnifiedPlan)) {
  2049. parameters.encodings[encoding].maxBitrate = maxBitrates[encoding];
  2050. }
  2051. }
  2052. }
  2053. this.tpcUtils.updateEncodingsResolution(parameters);
  2054. // For p2p and cases and where simulcast is explicitly disabled.
  2055. } else if (frameHeight > 0) {
  2056. let scaleFactor = HD_SCALE_FACTOR;
  2057. // Do not scale down encodings for desktop tracks for non-simulcast case.
  2058. if (videoType === VideoType.CAMERA && localVideoTrack.resolution > frameHeight) {
  2059. scaleFactor = Math.floor(localVideoTrack.resolution / frameHeight);
  2060. }
  2061. parameters.encodings[0].active = true;
  2062. parameters.encodings[0].scaleResolutionDownBy = scaleFactor;
  2063. // Firefox doesn't follow the spec and lets application specify the degradation preference on the encodings.
  2064. browser.isFirefox() && (parameters.encodings[0].degradationPreference = preference);
  2065. // Configure the bitrate.
  2066. if (this.getConfiguredVideoCodec() === CodecMimeType.VP8 && this.options?.videoQuality?.maxBitratesVideo) {
  2067. let bitrate = this.getTargetVideoBitrates()?.high;
  2068. if (videoType === VideoType.CAMERA) {
  2069. bitrate = this.tpcUtils.localStreamEncodingsConfig
  2070. .find(layer => layer.scaleResolutionDownBy === scaleFactor)?.maxBitrate ?? bitrate;
  2071. }
  2072. parameters.encodings[0].maxBitrate = bitrate;
  2073. }
  2074. } else {
  2075. parameters.encodings[0].active = false;
  2076. }
  2077. logger.info(`${this} setting max height=${frameHeight},encodings=${JSON.stringify(parameters.encodings)}`);
  2078. return videoSender.setParameters(parameters).then(() => {
  2079. localVideoTrack.maxEnabledResolution = frameHeight;
  2080. this.eventEmitter.emit(RTCEvents.LOCAL_TRACK_MAX_ENABLED_RESOLUTION_CHANGED, localVideoTrack);
  2081. });
  2082. };
  2083. /**
  2084. * Enables/disables video media transmission on this peer connection. When
  2085. * disabled the SDP video media direction in the local SDP will be adjusted to
  2086. * 'inactive' which means that no data will be sent nor accepted, but
  2087. * the connection should be kept alive.
  2088. * @param {boolean} active <tt>true</tt> to enable video media transmission or
  2089. * <tt>false</tt> to disable. If the value is not a boolean the call will have
  2090. * no effect.
  2091. * @return {boolean} <tt>true</tt> if the value has changed and sRD/sLD cycle
  2092. * needs to be executed in order for the changes to take effect or
  2093. * <tt>false</tt> if the given value was the same as the previous one.
  2094. * @public
  2095. */
  2096. TraceablePeerConnection.prototype.setVideoTransferActive = function(active) {
  2097. logger.debug(`${this} video transfer active: ${active}`);
  2098. const changed = this.videoTransferActive !== active;
  2099. this.videoTransferActive = active;
  2100. if (this._usesUnifiedPlan) {
  2101. this.tpcUtils.setVideoTransferActive(active);
  2102. // false means no renegotiation up the chain which is not needed in the Unified mode
  2103. return false;
  2104. }
  2105. return changed;
  2106. };
  2107. /**
  2108. * Sends DTMF tones if possible.
  2109. *
  2110. * @param {string} tones - The DTMF tones string as defined by {@code RTCDTMFSender.insertDTMF}, 'tones' argument.
  2111. * @param {number} duration - The amount of time in milliseconds that each DTMF should last. It's 200ms by default.
  2112. * @param {number} interToneGap - The length of time in miliseconds to wait between tones. It's 200ms by default.
  2113. *
  2114. * @returns {void}
  2115. */
  2116. TraceablePeerConnection.prototype.sendTones = function(tones, duration = 200, interToneGap = 200) {
  2117. if (!this._dtmfSender) {
  2118. if (this.peerconnection.getSenders) {
  2119. const rtpSender = this.peerconnection.getSenders().find(s => s.dtmf);
  2120. this._dtmfSender = rtpSender && rtpSender.dtmf;
  2121. this._dtmfSender && logger.info(`${this} initialized DTMFSender using getSenders`);
  2122. }
  2123. if (!this._dtmfSender) {
  2124. const localAudioTrack = Array.from(this.localTracks.values()).find(t => t.isAudioTrack());
  2125. if (this.peerconnection.createDTMFSender && localAudioTrack) {
  2126. this._dtmfSender = this.peerconnection.createDTMFSender(localAudioTrack.getTrack());
  2127. }
  2128. this._dtmfSender && logger.info(`${this} initialized DTMFSender using deprecated createDTMFSender`);
  2129. }
  2130. if (this._dtmfSender) {
  2131. this._dtmfSender.ontonechange = this._onToneChange.bind(this);
  2132. }
  2133. }
  2134. if (this._dtmfSender) {
  2135. if (this._dtmfSender.toneBuffer) {
  2136. this._dtmfTonesQueue.push({
  2137. tones,
  2138. duration,
  2139. interToneGap
  2140. });
  2141. return;
  2142. }
  2143. this._dtmfSender.insertDTMF(tones, duration, interToneGap);
  2144. } else {
  2145. logger.warn(`${this} sendTones - failed to select DTMFSender`);
  2146. }
  2147. };
  2148. /**
  2149. * Callback ivoked by {@code this._dtmfSender} when it has finished playing
  2150. * a single tone.
  2151. *
  2152. * @param {Object} event - The tonechange event which indicates what characters
  2153. * are left to be played for the current tone.
  2154. * @private
  2155. * @returns {void}
  2156. */
  2157. TraceablePeerConnection.prototype._onToneChange = function(event) {
  2158. // An empty event.tone indicates the current tones have finished playing.
  2159. // Automatically start playing any queued tones on finish.
  2160. if (this._dtmfSender && event.tone === '' && this._dtmfTonesQueue.length) {
  2161. const { tones, duration, interToneGap } = this._dtmfTonesQueue.shift();
  2162. this._dtmfSender.insertDTMF(tones, duration, interToneGap);
  2163. }
  2164. };
  2165. /**
  2166. * Makes the underlying TraceablePeerConnection generate new SSRC for
  2167. * the recvonly video stream.
  2168. */
  2169. TraceablePeerConnection.prototype.generateRecvonlySsrc = function() {
  2170. const newSSRC = SDPUtil.generateSsrc();
  2171. logger.info(`${this} generated new recvonly SSRC=${newSSRC}`);
  2172. this.sdpConsistency.setPrimarySsrc(newSSRC);
  2173. };
  2174. /**
  2175. * Makes the underlying TraceablePeerConnection forget the current primary video
  2176. * SSRC.
  2177. */
  2178. TraceablePeerConnection.prototype.clearRecvonlySsrc = function() {
  2179. logger.info(`${this} Clearing primary video SSRC!`);
  2180. this.sdpConsistency.clearVideoSsrcCache();
  2181. };
  2182. /**
  2183. * Closes underlying WebRTC PeerConnection instance and removes all remote
  2184. * tracks by emitting {@link RTCEvents.REMOTE_TRACK_REMOVED} for each one of
  2185. * them.
  2186. */
  2187. TraceablePeerConnection.prototype.close = function() {
  2188. this.trace('stop');
  2189. // Off SignalingEvents
  2190. this.signalingLayer.off(SignalingEvents.PEER_MUTED_CHANGED, this._peerMutedChanged);
  2191. this.signalingLayer.off(SignalingEvents.PEER_VIDEO_TYPE_CHANGED, this._peerVideoTypeChanged);
  2192. this._usesUnifiedPlan && this.peerconnection.removeEventListener('track', this.onTrack);
  2193. for (const peerTracks of this.remoteTracks.values()) {
  2194. for (const remoteTracks of peerTracks.values()) {
  2195. for (const remoteTrack of remoteTracks) {
  2196. this._removeRemoteTrack(remoteTrack);
  2197. }
  2198. }
  2199. }
  2200. this.remoteTracks.clear();
  2201. this._addedStreams = [];
  2202. this._dtmfSender = null;
  2203. this._dtmfTonesQueue = [];
  2204. if (!this.rtc._removePeerConnection(this)) {
  2205. logger.error(`${this} RTC._removePeerConnection returned false`);
  2206. }
  2207. if (this.statsinterval !== null) {
  2208. window.clearInterval(this.statsinterval);
  2209. this.statsinterval = null;
  2210. }
  2211. logger.info(`${this} Closing peerconnection`);
  2212. this.peerconnection.close();
  2213. };
  2214. TraceablePeerConnection.prototype.createAnswer = function(constraints) {
  2215. return this._createOfferOrAnswer(false /* answer */, constraints);
  2216. };
  2217. TraceablePeerConnection.prototype.createOffer = function(constraints) {
  2218. return this._createOfferOrAnswer(true /* offer */, constraints);
  2219. };
  2220. TraceablePeerConnection.prototype._createOfferOrAnswer = function(
  2221. isOffer,
  2222. constraints) {
  2223. const logName = isOffer ? 'Offer' : 'Answer';
  2224. this.trace(`create${logName}`, JSON.stringify(constraints, null, ' '));
  2225. const handleSuccess = (resultSdp, resolveFn, rejectFn) => {
  2226. try {
  2227. this.trace(
  2228. `create${logName}OnSuccess::preTransform`, dumpSDP(resultSdp));
  2229. if (!this._usesUnifiedPlan) {
  2230. // If there are no local video tracks, then a "recvonly"
  2231. // SSRC needs to be generated
  2232. if (!this.hasAnyTracksOfType(MediaType.VIDEO)
  2233. && !this.sdpConsistency.hasPrimarySsrcCached()) {
  2234. this.generateRecvonlySsrc();
  2235. }
  2236. // eslint-disable-next-line no-param-reassign
  2237. resultSdp = new RTCSessionDescription({
  2238. type: resultSdp.type,
  2239. sdp: this.sdpConsistency.makeVideoPrimarySsrcsConsistent(
  2240. resultSdp.sdp)
  2241. });
  2242. this.trace(
  2243. `create${logName}OnSuccess::postTransform `
  2244. + '(make primary audio/video ssrcs consistent)',
  2245. dumpSDP(resultSdp));
  2246. }
  2247. const localVideoTrack = this.getLocalVideoTracks()[0];
  2248. // Configure simulcast for camera tracks and for desktop tracks that need simulcast.
  2249. if (this.isSimulcastOn() && browser.usesSdpMungingForSimulcast()
  2250. && (localVideoTrack?.getVideoType() === VideoType.CAMERA
  2251. || this._usesUnifiedPlan
  2252. || !this.isSharingLowFpsScreen())) {
  2253. // eslint-disable-next-line no-param-reassign
  2254. resultSdp = this.simulcast.mungeLocalDescription(resultSdp);
  2255. this.trace(`create${logName} OnSuccess::postTransform (simulcast)`, dumpSDP(resultSdp));
  2256. }
  2257. if (!this.options.disableRtx && browser.usesSdpMungingForSimulcast()) {
  2258. // eslint-disable-next-line no-param-reassign
  2259. resultSdp = new RTCSessionDescription({
  2260. type: resultSdp.type,
  2261. sdp: this.rtxModifier.modifyRtxSsrcs(resultSdp.sdp)
  2262. });
  2263. this.trace(
  2264. `create${logName}`
  2265. + 'OnSuccess::postTransform (rtx modifier)',
  2266. dumpSDP(resultSdp));
  2267. }
  2268. const ssrcMap = this._extractSSRCMap(resultSdp);
  2269. this._processLocalSSRCsMap(ssrcMap);
  2270. resolveFn(resultSdp);
  2271. } catch (e) {
  2272. this.trace(`create${logName}OnError`, e);
  2273. this.trace(`create${logName}OnError`, dumpSDP(resultSdp));
  2274. logger.error(`${this} create${logName}OnError`, e, dumpSDP(resultSdp));
  2275. rejectFn(e);
  2276. }
  2277. };
  2278. const handleFailure = (err, rejectFn) => {
  2279. this.trace(`create${logName}OnFailure`, err);
  2280. const eventType
  2281. = isOffer
  2282. ? RTCEvents.CREATE_OFFER_FAILED
  2283. : RTCEvents.CREATE_ANSWER_FAILED;
  2284. this.eventEmitter.emit(eventType, err, this);
  2285. rejectFn(err);
  2286. };
  2287. // Set the codec preference before creating an offer or answer so that the generated SDP will have
  2288. // the correct preference order.
  2289. if (this._usesTransceiverCodecPreferences) {
  2290. const transceiver = this.peerconnection.getTransceivers()
  2291. .find(t => t.receiver && t.receiver?.track?.kind === MediaType.VIDEO);
  2292. if (transceiver) {
  2293. let capabilities = RTCRtpReceiver.getCapabilities(MediaType.VIDEO)?.codecs;
  2294. const mimeType = this.codecPreference?.mimeType;
  2295. const enable = this.codecPreference?.enable;
  2296. if (capabilities && mimeType && enable) {
  2297. // Move the desired codec (all variations of it as well) to the beginning of the list.
  2298. /* eslint-disable-next-line arrow-body-style */
  2299. capabilities.sort(caps => {
  2300. return caps.mimeType.toLowerCase() === `${MediaType.VIDEO}/${mimeType}` ? -1 : 1;
  2301. });
  2302. } else if (capabilities && mimeType) {
  2303. capabilities = capabilities
  2304. .filter(caps => caps.mimeType.toLowerCase() !== `${MediaType.VIDEO}/${mimeType}`);
  2305. }
  2306. // Disable ulpfec on Google Chrome and derivatives because
  2307. // https://bugs.chromium.org/p/chromium/issues/detail?id=1276427
  2308. if (browser.isChromiumBased()) {
  2309. capabilities = capabilities
  2310. .filter(caps => caps.mimeType.toLowerCase() !== `${MediaType.VIDEO}/${CodecMimeType.ULPFEC}`);
  2311. }
  2312. try {
  2313. transceiver.setCodecPreferences(capabilities);
  2314. } catch (err) {
  2315. logger.warn(`${this} Setting codec[preference=${mimeType},enable=${enable}] failed`, err);
  2316. }
  2317. }
  2318. }
  2319. return new Promise((resolve, reject) => {
  2320. let oaPromise;
  2321. if (isOffer) {
  2322. oaPromise = this.peerconnection.createOffer(constraints);
  2323. } else {
  2324. oaPromise = this.peerconnection.createAnswer(constraints);
  2325. }
  2326. oaPromise
  2327. .then(
  2328. sdp => handleSuccess(sdp, resolve, reject),
  2329. error => handleFailure(error, reject));
  2330. });
  2331. };
  2332. /**
  2333. * Extract primary SSRC from given {@link TrackSSRCInfo} object.
  2334. * @param {TrackSSRCInfo} ssrcObj
  2335. * @return {number|null} the primary SSRC or <tt>null</tt>
  2336. */
  2337. TraceablePeerConnection.prototype._extractPrimarySSRC = function(ssrcObj) {
  2338. if (ssrcObj && ssrcObj.groups && ssrcObj.groups.length) {
  2339. return ssrcObj.groups[0].ssrcs[0];
  2340. } else if (ssrcObj && ssrcObj.ssrcs && ssrcObj.ssrcs.length) {
  2341. return ssrcObj.ssrcs[0];
  2342. }
  2343. return null;
  2344. };
  2345. /**
  2346. * Goes over the SSRC map extracted from the latest local description and tries
  2347. * to match them with the local tracks (by MSID). Will update the values
  2348. * currently stored in the {@link TraceablePeerConnection.localSSRCs} map.
  2349. * @param {Map<string,TrackSSRCInfo>} ssrcMap
  2350. * @private
  2351. */
  2352. TraceablePeerConnection.prototype._processLocalSSRCsMap = function(ssrcMap) {
  2353. for (const track of this.localTracks.values()) {
  2354. const sourceIdentifier = this._usesUnifiedPlan ? track.getType() : track.storedMSID;
  2355. if (ssrcMap.has(sourceIdentifier)) {
  2356. const newSSRC = ssrcMap.get(sourceIdentifier);
  2357. if (!newSSRC) {
  2358. logger.error(`${this} No SSRC found for stream=${sourceIdentifier}`);
  2359. return;
  2360. }
  2361. const oldSSRC = this.localSSRCs.get(track.rtcId);
  2362. const newSSRCNum = this._extractPrimarySSRC(newSSRC);
  2363. const oldSSRCNum = this._extractPrimarySSRC(oldSSRC);
  2364. // eslint-disable-next-line no-negated-condition
  2365. if (newSSRCNum !== oldSSRCNum) {
  2366. oldSSRCNum && logger.error(`${this} Overwriting SSRC for track=${track}] with ssrc=${newSSRC}`);
  2367. this.localSSRCs.set(track.rtcId, newSSRC);
  2368. this.eventEmitter.emit(RTCEvents.LOCAL_TRACK_SSRC_UPDATED, track, newSSRCNum);
  2369. }
  2370. } else if (!track.isVideoTrack() && !track.isMuted()) {
  2371. // It is normal to find no SSRCs for a muted video track in
  2372. // the local SDP as the recv-only SSRC is no longer munged in.
  2373. // So log the warning only if it's not a muted video track.
  2374. logger.warn(`${this} No SSRCs found in the local SDP for track=${track}, stream=${sourceIdentifier}`);
  2375. }
  2376. }
  2377. };
  2378. TraceablePeerConnection.prototype.addIceCandidate = function(candidate) {
  2379. this.trace('addIceCandidate', JSON.stringify({
  2380. candidate: candidate.candidate,
  2381. sdpMid: candidate.sdpMid,
  2382. sdpMLineIndex: candidate.sdpMLineIndex,
  2383. usernameFragment: candidate.usernameFragment
  2384. }, null, ' '));
  2385. return this.peerconnection.addIceCandidate(candidate);
  2386. };
  2387. /**
  2388. * Returns the number of simulcast streams that are currently enabled on the peerconnection.
  2389. *
  2390. * @returns {number} The number of simulcast streams currently enabled or 1 when simulcast is disabled.
  2391. */
  2392. TraceablePeerConnection.prototype.getActiveSimulcastStreams = function() {
  2393. let activeStreams = 1;
  2394. if (this.isSimulcastOn() && this.encodingsEnabledState) {
  2395. activeStreams = this.encodingsEnabledState.filter(stream => Boolean(stream))?.length;
  2396. } else if (this.isSimulcastOn()) {
  2397. activeStreams = SIM_LAYER_RIDS.length;
  2398. }
  2399. return activeStreams;
  2400. };
  2401. /**
  2402. * Obtains call-related stats from the peer connection.
  2403. *
  2404. * @returns {Promise<Object>} Promise which resolves with data providing statistics about
  2405. * the peerconnection.
  2406. */
  2407. TraceablePeerConnection.prototype.getStats = function() {
  2408. return this.peerconnection.getStats();
  2409. };
  2410. /**
  2411. * Generates and stores new SSRC info object for given local track.
  2412. * The method should be called only for a video track being added to this TPC
  2413. * in the muted state (given that the current browser uses this strategy).
  2414. * @param {JitsiLocalTrack} track
  2415. * @return {TPCSSRCInfo}
  2416. */
  2417. TraceablePeerConnection.prototype.generateNewStreamSSRCInfo = function(track) {
  2418. const rtcId = track.rtcId;
  2419. let ssrcInfo = this._getSSRC(rtcId);
  2420. if (ssrcInfo) {
  2421. logger.error(`${this} Overwriting local SSRCs for track id=${rtcId}`);
  2422. }
  2423. // Configure simulcast for camera tracks and desktop tracks that need simulcast.
  2424. if (this.isSimulcastOn()
  2425. && (track.getVideoType() === VideoType.CAMERA || !this.isSharingLowFpsScreen())) {
  2426. ssrcInfo = {
  2427. ssrcs: [],
  2428. groups: []
  2429. };
  2430. for (let i = 0; i < SIM_LAYER_RIDS.length; i++) {
  2431. ssrcInfo.ssrcs.push(SDPUtil.generateSsrc());
  2432. }
  2433. ssrcInfo.groups.push({
  2434. ssrcs: ssrcInfo.ssrcs.slice(),
  2435. semantics: 'SIM'
  2436. });
  2437. } else {
  2438. ssrcInfo = {
  2439. ssrcs: [ SDPUtil.generateSsrc() ],
  2440. groups: []
  2441. };
  2442. }
  2443. if (!this.options.disableRtx) {
  2444. // Specifically use a for loop here because we'll
  2445. // be adding to the list we're iterating over, so we
  2446. // only want to iterate through the items originally
  2447. // on the list
  2448. const currNumSsrcs = ssrcInfo.ssrcs.length;
  2449. for (let i = 0; i < currNumSsrcs; ++i) {
  2450. const primarySsrc = ssrcInfo.ssrcs[i];
  2451. const rtxSsrc = SDPUtil.generateSsrc();
  2452. ssrcInfo.ssrcs.push(rtxSsrc);
  2453. ssrcInfo.groups.push({
  2454. ssrcs: [ primarySsrc, rtxSsrc ],
  2455. semantics: 'FID'
  2456. });
  2457. }
  2458. }
  2459. ssrcInfo.msid = track.storedMSID;
  2460. this.localSSRCs.set(rtcId, ssrcInfo);
  2461. return ssrcInfo;
  2462. };
  2463. /**
  2464. * Returns if the peer connection uses Unified plan implementation.
  2465. *
  2466. * @returns {boolean} True if the pc uses Unified plan, false otherwise.
  2467. */
  2468. TraceablePeerConnection.prototype.usesUnifiedPlan = function() {
  2469. return this._usesUnifiedPlan;
  2470. };
  2471. /**
  2472. * Creates a text representation of this <tt>TraceablePeerConnection</tt>
  2473. * instance.
  2474. * @return {string}
  2475. */
  2476. TraceablePeerConnection.prototype.toString = function() {
  2477. return `TPC[id=${this.id},type=${this.isP2P ? 'P2P' : 'JVB'}]`;
  2478. };