forked from butorenjin/easyrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasyrtc_rates.js
346 lines (309 loc) · 13.5 KB
/
easyrtc_rates.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
/* global define, module, require, console */
/*!
Script: easyrtc_rates.js
This code builds sdp filter functions
About: License
Copyright (c) 2016, Priologic Software Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
//RequireJS (AMD) build system
define(['easyrtc', 'webrtc-adapter'], factory);
} else if (typeof module === 'object' && module.exports) {
//CommonJS build system
module.exports = factory(require('easyrtc'), require('webrtc-adapter'));
} else {
//Vanilla JS, ensure dependencies are loaded correctly
if (typeof window.easyrtc !== 'object' || !window.easyrtc) {
throw new Error("easyrtc_rates requires easyrtc");
}
root.easyrtc = factory(window.easyrtc, window.adapter);
}
}(this, function (easyrtc, adapter, undefined) {
"use strict";
/**
* Provides methods for building SDP filters. SDP filters can be used
* to control bit rates.
* @class Easyrtc_Rates
*/
function buildSdpFilter(options, isLocal) {
var audioSendBitrate = options.audioSendBitrate;
var audioRecvBitrate = options.audioRecvBitrate;
var videoRecvBitrate = options.videoRecvBitrate;
var videoSendBitrate = options.videoSendBitrate;
var videoSendInitialBitrate = options.videoSendInitialBitrate;
var audioSendCodec = options.audioSendCodec || '';
var audioRecvCodec = options.audioRecvCodec || '';
var videoSendCodec = options.videoSendCodec || '';
var videoRecvCodec = options.videoRecvCodec || '';
var stereo = options.stereo;
function trace(message, obj) {
if (easyrtc.debugPrinter) {
easyrtc.debugPrinter(message, obj);
}
}
// these functions were cribbed from the google apprtc.appspot.com demo.
function findLineInRange(sdpLines, startLine, endLine, prefix, substr) {
var realEndLine = endLine !== -1 ? endLine : sdpLines.length;
for (var i = startLine; i < realEndLine; ++i) {
if (sdpLines[i].indexOf(prefix) === 0) {
if (!substr || sdpLines[i].toLowerCase().indexOf(substr.toLowerCase()) !== -1) {
return i;
}
}
}
return null;
}
function findLine(sdpLines, prefix, substr) {
return findLineInRange(sdpLines, 0, -1, prefix, substr);
}
function preferBitRate(sdp, bitrate, mediaType) {
var sdpLines = sdp.split('\r\n');
var mLineIndex = findLine(sdpLines, 'm=', mediaType);
if (mLineIndex === null) {
trace('Failed to add bandwidth line to sdp, as no m-line found');
return sdp;
}
var nextMLineIndex = findLineInRange(sdpLines, mLineIndex + 1, -1, 'm=');
if (nextMLineIndex === null) {
nextMLineIndex = sdpLines.length;
}
var cLineIndex = findLineInRange(sdpLines, mLineIndex + 1, nextMLineIndex, 'c=');
if (cLineIndex === null) {
trace('Failed to add bandwidth line to sdp, as no c-line found');
return sdp;
}
var bLineIndex = findLineInRange(sdpLines, cLineIndex + 1, nextMLineIndex, 'b=AS');
if (bLineIndex) {
sdpLines.splice(bLineIndex, 1);
}
var bwLine;
if (
adapter && adapter.browserDetails &&
(adapter.browserDetails.browser === "firefox")
) {
bitrate = (bitrate >>> 0) * 1000;
bwLine = 'b=TIAS:' + bitrate;
} else {
bwLine = 'b=AS:' + bitrate;
}
sdpLines.splice(cLineIndex + 1, 0, bwLine);
sdp = sdpLines.join('\r\n');
return sdp;
}
function setDefaultCodec(mLine, payload) {
var elements = mLine.split(' ');
var newLine = [];
var index = 0;
for (var i = 0; i < elements.length; i++) {
if (index === 3) {
newLine[index++] = payload;
}
if (elements[i] !== payload) {
newLine[index++] = elements[i];
}
}
return newLine.join(' ');
}
function maybeSetAudioSendBitRate(sdp) {
if (!audioSendBitrate) {
return sdp;
}
trace('Prefer audio send bitrate: ' + audioSendBitrate);
return preferBitRate(sdp, audioSendBitrate, 'audio');
}
function maybeSetAudioReceiveBitRate(sdp) {
if (!audioRecvBitrate) {
return sdp;
}
trace('Prefer audio receive bitrate: ' + audioRecvBitrate);
return preferBitRate(sdp, audioRecvBitrate, 'audio');
}
function maybeSetVideoSendBitRate(sdp) {
if (!videoSendBitrate) {
return sdp;
}
trace('Prefer video send bitrate: ' + videoSendBitrate);
return preferBitRate(sdp, videoSendBitrate, 'video');
}
function maybeSetVideoReceiveBitRate(sdp) {
if (!videoRecvBitrate) {
return sdp;
}
trace('Prefer video receive bitrate: ' + videoRecvBitrate);
return preferBitRate(sdp, videoRecvBitrate, 'video');
}
function getCodecPayloadType(sdpLine) {
var pattern = new RegExp('a=rtpmap:(\\d+) \\w+\\/\\d+');
var result = sdpLine.match(pattern);
return (result && result.length === 2) ? result[1] : null;
}
function maybeSetVideoSendInitialBitRate(sdp) {
if (!videoSendInitialBitrate) {
return sdp;
}
var maxBitrate = videoSendInitialBitrate;
if (videoSendBitrate) {
if (videoSendInitialBitrate > videoSendBitrate) {
trace('Clamping initial bitrate to max bitrate of ' + videoSendBitrate + ' kbps.');
videoSendInitialBitrate = videoSendBitrate;
}
maxBitrate = videoSendBitrate;
}
var sdpLines = sdp.split('\r\n');
var mLineIndex = findLine(sdpLines, 'm=', 'video');
if (mLineIndex === null) {
trace('Failed to find video m-line');
return sdp;
}
var vp8RtpmapIndex = findLine(sdpLines, 'a=rtpmap', 'VP8/90000');
var vp8Payload = getCodecPayloadType(sdpLines[vp8RtpmapIndex]);
var vp8Fmtp = 'a=fmtp:' + vp8Payload + ' x-google-min-bitrate=' + videoSendInitialBitrate.toString() + '; x-google-max-bitrate=' + maxBitrate.toString();
sdpLines.splice(vp8RtpmapIndex + 1, 0, vp8Fmtp);
return sdpLines.join('\r\n');
}
function preferCodec(sdp, codec, codecType){
var sdpLines = sdp.split('\r\n');
var mLineIndex = findLine(sdpLines, 'm=', codecType);
if (mLineIndex === null) {
return sdp;
}
//
// there are two m= lines in the sdp, one for audio, one for video.
// the audio one comes first. when we search for codecs for audio, we
// want stop before we enter the section for video, hence we'll hunt
// for that subsequent m= line before we look for codecs. Otherwise,
// you could ask for a audio codec of VP9.
//
var mBottom = findLineInRange(sdpLines, mLineIndex+1, -1, "m=") || -1;
var codecIndex = findLineInRange(sdpLines, mLineIndex, mBottom, 'a=rtpmap', codec);
if (codecIndex) {
var payload = getCodecPayloadType(sdpLines[codecIndex]);
if (payload) {
sdpLines[mLineIndex] = setDefaultCodec(sdpLines[mLineIndex], payload);
}
}
sdp = sdpLines.join('\r\n');
return sdp;
}
function maybePreferVideoSendCodec(sdp) {
if (videoSendCodec === '') {
trace('No preference on video send codec.');
return sdp;
}
trace('Prefer video send codec: ' + videoSendCodec);
return preferCodec(sdp, videoSendCodec, 'video');
}
function maybePreferVideoReceiveCodec(sdp) {
if (videoRecvCodec === '') {
trace('No preference on video receive codec.');
return sdp;
}
trace('Prefer video receive codec: ' + videoRecvCodec);
return preferCodec(sdp, videoRecvCodec,'video');
}
function maybePreferAudioSendCodec(sdp) {
if (audioSendCodec === '') {
trace('No preference on audio send codec.');
return sdp;
}
trace('Prefer audio send codec: ' + audioSendCodec);
return preferCodec(sdp, audioSendCodec, 'audio');
}
function maybePreferAudioReceiveCodec(sdp) {
if (audioRecvCodec === '') {
trace('No preference on audio receive codec.');
return sdp;
}
trace('Prefer audio receive codec: ' + audioRecvCodec);
return preferCodec(sdp, audioRecvCodec, 'audio');
}
function addStereo(sdp) {
var sdpLines = sdp.split('\r\n');
var opusIndex = findLine(sdpLines, 'a=rtpmap', 'opus/48000');
var opusPayload;
if (opusIndex) {
opusPayload = getCodecPayloadType(sdpLines[opusIndex]);
}
var fmtpLineIndex = findLine(sdpLines, 'a=fmtp:' + opusPayload.toString());
if (fmtpLineIndex === null) {
return sdp;
}
sdpLines[fmtpLineIndex] = sdpLines[fmtpLineIndex].concat('; stereo=1');
sdp = sdpLines.join('\r\n');
return sdp;
}
if( isLocal ) {
return function(insdp) {
trace("modifying local sdp");
var sdp;
sdp = maybePreferAudioReceiveCodec(insdp);
sdp = maybePreferVideoReceiveCodec(insdp);
sdp = maybeSetAudioReceiveBitRate(sdp);
sdp = maybeSetVideoReceiveBitRate(sdp);
//if( sdp != insdp ) {
// console.log("changed the sdp from \n" + insdp + "\nto\n" + sdp);
//}
return sdp;
};
}
else {
return function(insdp) {
trace("modifying remote sdp");
var sdp;
sdp = maybePreferAudioSendCodec(insdp);
sdp = maybePreferVideoSendCodec(insdp);
sdp = maybeSetAudioSendBitRate(sdp);
sdp = maybeSetVideoSendBitRate(sdp);
sdp = maybeSetVideoSendInitialBitRate(sdp);
if (stereo) {
sdp = addStereo(sdp);
}
//if( sdp != insdp ) {
// console.log("changed the sdp from \n" + insdp + "\nto\n" + sdp);
//}
return sdp;
};
}
}
/**
* This function returns an sdp filter function.
* @function
* @memberOf Easyrtc_Rates
* @param options A map that optionally includes values for the following keys: audioRecvCodec, audioRecvBitrate, videoRecvBitrate, videoRecvCodec
* @returns {Function} which takes an SDP string and returns a modified SDP string.
*/
easyrtc.buildLocalSdpFilter = function (options) {
return buildSdpFilter(options, true);
};
/**
* This function returns an sdp filter function.
* @function
* @memberOf Easyrtc_Rates
* @param options A map that optionally includes values for the following keys: stereo, audioSendCodec, audioSendBitrate, videoSendBitrate, videoSendInitialBitRate, videoRecvCodec
* @returns {Function} which takes an SDP string and returns a modified SDP string.
*/
easyrtc.buildRemoteSdpFilter = function(options) {
return buildSdpFilter(options, false);
};
return easyrtc;
}));