Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

TraceablePeerConnection.js 116KB

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