|
|
@@ -161,6 +161,7 @@ var config = {
|
|
161
|
161
|
// Note that it's not recommended to do this because simulcast is not
|
|
162
|
162
|
// supported when using H.264. For 1-to-1 calls this setting is enabled by
|
|
163
|
163
|
// default and can be toggled in the p2p section.
|
|
|
164
|
+ // This option has been deprecated, use preferredCodec under videoQuality section instead.
|
|
164
|
165
|
// preferH264: true,
|
|
165
|
166
|
|
|
166
|
167
|
// If set to true, disable H.264 video codec by stripping it out of the
|
|
|
@@ -234,6 +235,18 @@ var config = {
|
|
234
|
235
|
|
|
235
|
236
|
// Specify the settings for video quality optimizations on the client.
|
|
236
|
237
|
// videoQuality: {
|
|
|
238
|
+ // // Provides a way to prevent a video codec from being negotiated on the JVB connection. The codec specified
|
|
|
239
|
+ // // here will be removed from the list of codecs present in the SDP answer generated by the client. If the
|
|
|
240
|
+ // // same codec is specified for both the disabled and preferred option, the disable settings will prevail.
|
|
|
241
|
+ // // Note that 'VP8' cannot be disabled since it's a mandatory codec, the setting will be ignored in this case.
|
|
|
242
|
+ // disabledCodec: 'H264',
|
|
|
243
|
+ //
|
|
|
244
|
+ // // Provides a way to set a preferred video codec for the JVB connection. If 'H264' is specified here,
|
|
|
245
|
+ // // simulcast will be automatically disabled since JVB doesn't support H264 simulcast yet. This will only
|
|
|
246
|
+ // // rearrange the the preference order of the codecs in the SDP answer generated by the browser only if the
|
|
|
247
|
+ // // preferred codec specified here is present. Please ensure that the JVB offers the specified codec for this
|
|
|
248
|
+ // // to take effect.
|
|
|
249
|
+ // preferredCodec: 'VP8',
|
|
237
|
250
|
//
|
|
238
|
251
|
// // Provides a way to configure the maximum bitrates that will be enforced on the simulcast streams for
|
|
239
|
252
|
// // video tracks. The keys in the object represent the type of the stream (LD, SD or HD) and the values
|
|
|
@@ -435,13 +448,20 @@ var config = {
|
|
435
|
448
|
// iceTransportPolicy: 'all',
|
|
436
|
449
|
|
|
437
|
450
|
// If set to true, it will prefer to use H.264 for P2P calls (if H.264
|
|
438
|
|
- // is supported).
|
|
|
451
|
+ // is supported). This setting is deprecated, use preferredCodec instead.
|
|
439
|
452
|
// preferH264: true
|
|
440
|
453
|
|
|
|
454
|
+ // Provides a way to set the video codec preference on the p2p connection. Acceptable
|
|
|
455
|
+ // codec values are 'VP8', 'VP9' and 'H264'.
|
|
|
456
|
+ // preferredCodec: 'H264',
|
|
|
457
|
+
|
|
441
|
458
|
// If set to true, disable H.264 video codec by stripping it out of the
|
|
442
|
|
- // SDP.
|
|
|
459
|
+ // SDP. This setting is deprecated, use disabledCodec instead.
|
|
443
|
460
|
// disableH264: false,
|
|
444
|
461
|
|
|
|
462
|
+ // Provides a way to prevent a video codec from being negotiated on the p2p connection.
|
|
|
463
|
+ // disabledCodec: '',
|
|
|
464
|
+
|
|
445
|
465
|
// How long we're going to wait, before going back to P2P after the 3rd
|
|
446
|
466
|
// participant has left the conference (to filter out page reload).
|
|
447
|
467
|
// backToP2PDelay: 5
|