@webex/event-dictionary-ts 1.0.1403 → 1.0.1405

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.
@@ -15011,6 +15011,12 @@
15011
15011
  "averageEncoderProcessTime": {
15012
15012
  "type": "number",
15013
15013
  "description": "The average processing time (microseconds) on audio encoder pipeline"
15014
+ },
15015
+ "xcodecTotalEncodedFrames": {
15016
+ "type": "integer",
15017
+ "description": "how many frames are encoded by Xcodec in one minute.",
15018
+ "minimum": -32768,
15019
+ "maximum": 32767
15014
15020
  }
15015
15021
  }
15016
15022
  },
@@ -17153,6 +17159,30 @@
17153
17159
  "minimum": 0,
17154
17160
  "maximum": 255
17155
17161
  }
17162
+ },
17163
+ "xcodecTotalDecodedFrames": {
17164
+ "type": "integer",
17165
+ "description": "how many frames are decoded by Xcodec in one minute.",
17166
+ "minimum": -32768,
17167
+ "maximum": 32767
17168
+ },
17169
+ "xcodecDecoded6kFrames": {
17170
+ "type": "integer",
17171
+ "description": "how many frames encoded with 6kbps (from primary packets) are decoded by Xcodec in one minute.",
17172
+ "minimum": -32768,
17173
+ "maximum": 32767
17174
+ },
17175
+ "xcodecDecoded1kFrames": {
17176
+ "type": "integer",
17177
+ "description": "how many frames encoded with 1kbps (from redundant packets) are decoded by Xcodec in one minute.",
17178
+ "minimum": -32768,
17179
+ "maximum": 32767
17180
+ },
17181
+ "xcodecDecodedPLCFrames": {
17182
+ "type": "integer",
17183
+ "description": "how many frames are lost and concealed by Xcodec in one minute.",
17184
+ "minimum": -32768,
17185
+ "maximum": 32767
17156
17186
  }
17157
17187
  }
17158
17188
  },
@@ -3660,6 +3660,12 @@
3660
3660
  "averageEncoderProcessTime": {
3661
3661
  "type": "number",
3662
3662
  "description": "The average processing time (microseconds) on audio encoder pipeline"
3663
+ },
3664
+ "xcodecTotalEncodedFrames": {
3665
+ "type": "integer",
3666
+ "description": "how many frames are encoded by Xcodec in one minute.",
3667
+ "minimum": -32768,
3668
+ "maximum": 32767
3663
3669
  }
3664
3670
  }
3665
3671
  },
@@ -5802,6 +5808,30 @@
5802
5808
  "minimum": 0,
5803
5809
  "maximum": 255
5804
5810
  }
5811
+ },
5812
+ "xcodecTotalDecodedFrames": {
5813
+ "type": "integer",
5814
+ "description": "how many frames are decoded by Xcodec in one minute.",
5815
+ "minimum": -32768,
5816
+ "maximum": 32767
5817
+ },
5818
+ "xcodecDecoded6kFrames": {
5819
+ "type": "integer",
5820
+ "description": "how many frames encoded with 6kbps (from primary packets) are decoded by Xcodec in one minute.",
5821
+ "minimum": -32768,
5822
+ "maximum": 32767
5823
+ },
5824
+ "xcodecDecoded1kFrames": {
5825
+ "type": "integer",
5826
+ "description": "how many frames encoded with 1kbps (from redundant packets) are decoded by Xcodec in one minute.",
5827
+ "minimum": -32768,
5828
+ "maximum": 32767
5829
+ },
5830
+ "xcodecDecodedPLCFrames": {
5831
+ "type": "integer",
5832
+ "description": "how many frames are lost and concealed by Xcodec in one minute.",
5833
+ "minimum": -32768,
5834
+ "maximum": 32767
5805
5835
  }
5806
5836
  }
5807
5837
  },
@@ -6104,6 +6104,10 @@ export interface Event {
6104
6104
  * The average processing time (microseconds) on audio encoder pipeline
6105
6105
  */
6106
6106
  averageEncoderProcessTime?: number;
6107
+ /**
6108
+ * how many frames are encoded by Xcodec in one minute.
6109
+ */
6110
+ xcodecTotalEncodedFrames?: number;
6107
6111
  additionalProperties?: false;
6108
6112
  };
6109
6113
  /**
@@ -6987,6 +6991,22 @@ export interface Event {
6987
6991
  * one char every 2 seconds. 0 indicate 0dB, plus 1 indicate -0.5dB
6988
6992
  */
6989
6993
  agcAvgOutPower?: number[];
6994
+ /**
6995
+ * how many frames are decoded by Xcodec in one minute.
6996
+ */
6997
+ xcodecTotalDecodedFrames?: number;
6998
+ /**
6999
+ * how many frames encoded with 6kbps (from primary packets) are decoded by Xcodec in one minute.
7000
+ */
7001
+ xcodecDecoded6kFrames?: number;
7002
+ /**
7003
+ * how many frames encoded with 1kbps (from redundant packets) are decoded by Xcodec in one minute.
7004
+ */
7005
+ xcodecDecoded1kFrames?: number;
7006
+ /**
7007
+ * how many frames are lost and concealed by Xcodec in one minute.
7008
+ */
7009
+ xcodecDecodedPLCFrames?: number;
6990
7010
  additionalProperties?: false;
6991
7011
  };
6992
7012
  /**
@@ -15278,6 +15298,10 @@ export interface MediaQualityEvent {
15278
15298
  * The average processing time (microseconds) on audio encoder pipeline
15279
15299
  */
15280
15300
  averageEncoderProcessTime?: number;
15301
+ /**
15302
+ * how many frames are encoded by Xcodec in one minute.
15303
+ */
15304
+ xcodecTotalEncodedFrames?: number;
15281
15305
  additionalProperties?: false;
15282
15306
  };
15283
15307
  /**
@@ -16161,6 +16185,22 @@ export interface MediaQualityEvent {
16161
16185
  * one char every 2 seconds. 0 indicate 0dB, plus 1 indicate -0.5dB
16162
16186
  */
16163
16187
  agcAvgOutPower?: number[];
16188
+ /**
16189
+ * how many frames are decoded by Xcodec in one minute.
16190
+ */
16191
+ xcodecTotalDecodedFrames?: number;
16192
+ /**
16193
+ * how many frames encoded with 6kbps (from primary packets) are decoded by Xcodec in one minute.
16194
+ */
16195
+ xcodecDecoded6kFrames?: number;
16196
+ /**
16197
+ * how many frames encoded with 1kbps (from redundant packets) are decoded by Xcodec in one minute.
16198
+ */
16199
+ xcodecDecoded1kFrames?: number;
16200
+ /**
16201
+ * how many frames are lost and concealed by Xcodec in one minute.
16202
+ */
16203
+ xcodecDecodedPLCFrames?: number;
16164
16204
  additionalProperties?: false;
16165
16205
  };
16166
16206
  /**
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1403"
31
+ "version": "1.0.1405"
32
32
  }