Browse Source

chore(enableLayerSuspension) remove all enableLayerSuspension references

dev1
Maxence Dalmais 3 years ago
parent
commit
809877b97f

+ 1
- 3
modules/qualitycontrol/SendVideoController.spec.js View File

52
      */
52
      */
53
     constructor() {
53
     constructor() {
54
         super();
54
         super();
55
-        this.options = {
56
-            config: { enableLayerSuspension: true }
57
-        };
55
+        this.options = {};
58
         this.activeMediaSession = undefined;
56
         this.activeMediaSession = undefined;
59
         this.mediaSessions = [];
57
         this.mediaSessions = [];
60
     }
58
     }

+ 0
- 1
modules/xmpp/JingleSessionPC.js View File

68
  * @property {boolean} disableSimulcast - Described in the config.js[1].
68
  * @property {boolean} disableSimulcast - Described in the config.js[1].
69
  * @property {boolean} enableInsertableStreams - Set to true when the insertable streams constraints is to be enabled
69
  * @property {boolean} enableInsertableStreams - Set to true when the insertable streams constraints is to be enabled
70
  * on the PeerConnection.
70
  * on the PeerConnection.
71
- * @property {boolean} enableLayerSuspension - Described in the config.js[1].
72
  * @property {boolean} failICE - it's an option used in the tests. Set to
71
  * @property {boolean} failICE - it's an option used in the tests. Set to
73
  * <tt>true</tt> to block any real candidates and make the ICE fail.
72
  * <tt>true</tt> to block any real candidates and make the ICE fail.
74
  * @property {boolean} gatherStats - Described in the config.js[1].
73
  * @property {boolean} gatherStats - Described in the config.js[1].

+ 0
- 5
types/auto/modules/xmpp/JingleSessionPC.d.ts View File

8
  * @property {boolean} disableSimulcast - Described in the config.js[1].
8
  * @property {boolean} disableSimulcast - Described in the config.js[1].
9
  * @property {boolean} enableInsertableStreams - Set to true when the insertable streams constraints is to be enabled
9
  * @property {boolean} enableInsertableStreams - Set to true when the insertable streams constraints is to be enabled
10
  * on the PeerConnection.
10
  * on the PeerConnection.
11
- * @property {boolean} enableLayerSuspension - Described in the config.js[1].
12
  * @property {boolean} failICE - it's an option used in the tests. Set to
11
  * @property {boolean} failICE - it's an option used in the tests. Set to
13
  * <tt>true</tt> to block any real candidates and make the ICE fail.
12
  * <tt>true</tt> to block any real candidates and make the ICE fail.
14
  * @property {boolean} gatherStats - Described in the config.js[1].
13
  * @property {boolean} gatherStats - Described in the config.js[1].
651
      * on the PeerConnection.
650
      * on the PeerConnection.
652
      */
651
      */
653
     enableInsertableStreams: boolean;
652
     enableInsertableStreams: boolean;
654
-    /**
655
-     * - Described in the config.js[1].
656
-     */
657
-    enableLayerSuspension: boolean;
658
     /**
653
     /**
659
      * - it's an option used in the tests. Set to
654
      * - it's an option used in the tests. Set to
660
      * <tt>true</tt> to block any real candidates and make the ICE fail.
655
      * <tt>true</tt> to block any real candidates and make the ICE fail.

Loading…
Cancel
Save