@webex/event-dictionary-ts 1.0.2119 → 1.0.2121

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18342,6 +18342,22 @@
18342
18342
  "description": "For every minute, the status related to xcodec will be represented by the value of the corresponding bit.",
18343
18343
  "minimum": -32768,
18344
18344
  "maximum": 32767
18345
+ },
18346
+ "encoderLockFree": {
18347
+ "type": "boolean",
18348
+ "description": "is audio encode thread use lock-free queue"
18349
+ },
18350
+ "encoderQueueSizePeakAvg": {
18351
+ "type": "number",
18352
+ "description": "Peak of 1-second average audio encoder queue sizes during the reporting interval."
18353
+ },
18354
+ "encoderQueueLatencyMaxUs": {
18355
+ "type": "number",
18356
+ "description": "Maximum queue wait time (in microseconds) for audio frames in the encoder buffer."
18357
+ },
18358
+ "encoderQueueLatencyPeakAvgUs": {
18359
+ "type": "number",
18360
+ "description": "Peak of 1-second average queue latencies (in microseconds) for audio frames in the encoder buffer."
18345
18361
  }
18346
18362
  }
18347
18363
  },
@@ -4669,6 +4669,22 @@
4669
4669
  "description": "For every minute, the status related to xcodec will be represented by the value of the corresponding bit.",
4670
4670
  "minimum": -32768,
4671
4671
  "maximum": 32767
4672
+ },
4673
+ "encoderLockFree": {
4674
+ "type": "boolean",
4675
+ "description": "is audio encode thread use lock-free queue"
4676
+ },
4677
+ "encoderQueueSizePeakAvg": {
4678
+ "type": "number",
4679
+ "description": "Peak of 1-second average audio encoder queue sizes during the reporting interval."
4680
+ },
4681
+ "encoderQueueLatencyMaxUs": {
4682
+ "type": "number",
4683
+ "description": "Maximum queue wait time (in microseconds) for audio frames in the encoder buffer."
4684
+ },
4685
+ "encoderQueueLatencyPeakAvgUs": {
4686
+ "type": "number",
4687
+ "description": "Peak of 1-second average queue latencies (in microseconds) for audio frames in the encoder buffer."
4672
4688
  }
4673
4689
  }
4674
4690
  },
@@ -8013,6 +8013,22 @@ export interface Event {
8013
8013
  * For every minute, the status related to xcodec will be represented by the value of the corresponding bit.
8014
8014
  */
8015
8015
  xcodecStatus?: number;
8016
+ /**
8017
+ * is audio encode thread use lock-free queue
8018
+ */
8019
+ encoderLockFree?: boolean;
8020
+ /**
8021
+ * Peak of 1-second average audio encoder queue sizes during the reporting interval.
8022
+ */
8023
+ encoderQueueSizePeakAvg?: number;
8024
+ /**
8025
+ * Maximum queue wait time (in microseconds) for audio frames in the encoder buffer.
8026
+ */
8027
+ encoderQueueLatencyMaxUs?: number;
8028
+ /**
8029
+ * Peak of 1-second average queue latencies (in microseconds) for audio frames in the encoder buffer.
8030
+ */
8031
+ encoderQueueLatencyPeakAvgUs?: number;
8016
8032
  additionalProperties?: false;
8017
8033
  };
8018
8034
  /**
@@ -23539,6 +23555,22 @@ export interface MediaQualityEvent {
23539
23555
  * For every minute, the status related to xcodec will be represented by the value of the corresponding bit.
23540
23556
  */
23541
23557
  xcodecStatus?: number;
23558
+ /**
23559
+ * is audio encode thread use lock-free queue
23560
+ */
23561
+ encoderLockFree?: boolean;
23562
+ /**
23563
+ * Peak of 1-second average audio encoder queue sizes during the reporting interval.
23564
+ */
23565
+ encoderQueueSizePeakAvg?: number;
23566
+ /**
23567
+ * Maximum queue wait time (in microseconds) for audio frames in the encoder buffer.
23568
+ */
23569
+ encoderQueueLatencyMaxUs?: number;
23570
+ /**
23571
+ * Peak of 1-second average queue latencies (in microseconds) for audio frames in the encoder buffer.
23572
+ */
23573
+ encoderQueueLatencyPeakAvgUs?: number;
23542
23574
  additionalProperties?: false;
23543
23575
  };
23544
23576
  /**
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "access": "public",
28
28
  "registry": "https://registry.npmjs.org"
29
29
  },
30
- "version": "1.0.2119"
30
+ "version": "1.0.2121"
31
31
  }