@webex/event-dictionary-ts 1.0.2022 → 1.0.2024

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.
@@ -20966,14 +20966,19 @@
20966
20966
  "type": "number",
20967
20967
  "minimum": 0.0
20968
20968
  },
20969
- "maxAudioAdjustmentMissing": {
20970
- "description": "The max extra delay (in milliseconds) in last interval that audio would need in order to be insync with video",
20969
+ "decidePlayedSyncRatio": {
20970
+ "description": "Compared with audio, the sync video frames get played out / total frames (with undetectable latency, in range (-100ms, 25ms))",
20971
+ "type": "number",
20972
+ "minimum": 0.0
20973
+ },
20974
+ "maxAudioAdjustment": {
20975
+ "description": "The max delay (in milliseconds) in last interval applied to audio for avsync",
20971
20976
  "type": "number",
20972
20977
  "minimum": 0.0,
20973
20978
  "maximum": 9223372036854776000.0
20974
20979
  },
20975
- "maxVideoAdjustmentMissing": {
20976
- "description": "The max extra delay (in milliseconds) in last interval that video would need in order to be insync with audio",
20980
+ "maxVideoAdjustment": {
20981
+ "description": "The max delay (in milliseconds) in last interval applied to video for avsync",
20977
20982
  "type": "number",
20978
20983
  "minimum": 0.0,
20979
20984
  "maximum": 9223372036854776000.0
@@ -20985,7 +20990,7 @@
20985
20990
  "maximum": 9223372036854776000.0
20986
20991
  },
20987
20992
  "totalCanSync": {
20988
- "description": "The total number of milliseconds in the last 60s where the received audio stream was matched to a video stream and the common clock was able to be determined (e.g. both streams had known values from recent RTCP SR).",
20993
+ "description": "The total number of milliseconds in the last 60s (MQE interval) where the received audio stream was matched to a video stream and the common clock was able to be determined (e.g. both streams had known values from recent RTCP SR).",
20989
20994
  "type": "number",
20990
20995
  "minimum": 0.0,
20991
20996
  "maximum": 9223372036854776000.0
@@ -7717,14 +7717,19 @@
7717
7717
  "type": "number",
7718
7718
  "minimum": 0.0
7719
7719
  },
7720
- "maxAudioAdjustmentMissing": {
7721
- "description": "The max extra delay (in milliseconds) in last interval that audio would need in order to be insync with video",
7720
+ "decidePlayedSyncRatio": {
7721
+ "description": "Compared with audio, the sync video frames get played out / total frames (with undetectable latency, in range (-100ms, 25ms))",
7722
+ "type": "number",
7723
+ "minimum": 0.0
7724
+ },
7725
+ "maxAudioAdjustment": {
7726
+ "description": "The max delay (in milliseconds) in last interval applied to audio for avsync",
7722
7727
  "type": "number",
7723
7728
  "minimum": 0.0,
7724
7729
  "maximum": 9223372036854776000.0
7725
7730
  },
7726
- "maxVideoAdjustmentMissing": {
7727
- "description": "The max extra delay (in milliseconds) in last interval that video would need in order to be insync with audio",
7731
+ "maxVideoAdjustment": {
7732
+ "description": "The max delay (in milliseconds) in last interval applied to video for avsync",
7728
7733
  "type": "number",
7729
7734
  "minimum": 0.0,
7730
7735
  "maximum": 9223372036854776000.0
@@ -7736,7 +7741,7 @@
7736
7741
  "maximum": 9223372036854776000.0
7737
7742
  },
7738
7743
  "totalCanSync": {
7739
- "description": "The total number of milliseconds in the last 60s where the received audio stream was matched to a video stream and the common clock was able to be determined (e.g. both streams had known values from recent RTCP SR).",
7744
+ "description": "The total number of milliseconds in the last 60s (MQE interval) where the received audio stream was matched to a video stream and the common clock was able to be determined (e.g. both streams had known values from recent RTCP SR).",
7740
7745
  "type": "number",
7741
7746
  "minimum": 0.0,
7742
7747
  "maximum": 9223372036854776000.0
@@ -9146,19 +9146,23 @@ export interface Event {
9146
9146
  */
9147
9147
  decidePlayedUnsyncRatio?: number;
9148
9148
  /**
9149
- * The max extra delay (in milliseconds) in last interval that audio would need in order to be insync with video
9149
+ * Compared with audio, the sync video frames get played out / total frames (with undetectable latency, in range (-100ms, 25ms))
9150
9150
  */
9151
- maxAudioAdjustmentMissing?: number;
9151
+ decidePlayedSyncRatio?: number;
9152
9152
  /**
9153
- * The max extra delay (in milliseconds) in last interval that video would need in order to be insync with audio
9153
+ * The max delay (in milliseconds) in last interval applied to audio for avsync
9154
9154
  */
9155
- maxVideoAdjustmentMissing?: number;
9155
+ maxAudioAdjustment?: number;
9156
+ /**
9157
+ * The max delay (in milliseconds) in last interval applied to video for avsync
9158
+ */
9159
+ maxVideoAdjustment?: number;
9156
9160
  /**
9157
9161
  * The number of milliseconds in the last 60s (MQE interval) for which a received audio stream was matched to a video stream from the same source.
9158
9162
  */
9159
9163
  totalMatched?: number;
9160
9164
  /**
9161
- * The total number of milliseconds in the last 60s where the received audio stream was matched to a video stream and the common clock was able to be determined (e.g. both streams had known values from recent RTCP SR).
9165
+ * The total number of milliseconds in the last 60s (MQE interval) where the received audio stream was matched to a video stream and the common clock was able to be determined (e.g. both streams had known values from recent RTCP SR).
9162
9166
  */
9163
9167
  totalCanSync?: number;
9164
9168
  /**
@@ -24086,19 +24090,23 @@ export interface MediaQualityEvent {
24086
24090
  */
24087
24091
  decidePlayedUnsyncRatio?: number;
24088
24092
  /**
24089
- * The max extra delay (in milliseconds) in last interval that audio would need in order to be insync with video
24093
+ * Compared with audio, the sync video frames get played out / total frames (with undetectable latency, in range (-100ms, 25ms))
24094
+ */
24095
+ decidePlayedSyncRatio?: number;
24096
+ /**
24097
+ * The max delay (in milliseconds) in last interval applied to audio for avsync
24090
24098
  */
24091
- maxAudioAdjustmentMissing?: number;
24099
+ maxAudioAdjustment?: number;
24092
24100
  /**
24093
- * The max extra delay (in milliseconds) in last interval that video would need in order to be insync with audio
24101
+ * The max delay (in milliseconds) in last interval applied to video for avsync
24094
24102
  */
24095
- maxVideoAdjustmentMissing?: number;
24103
+ maxVideoAdjustment?: number;
24096
24104
  /**
24097
24105
  * The number of milliseconds in the last 60s (MQE interval) for which a received audio stream was matched to a video stream from the same source.
24098
24106
  */
24099
24107
  totalMatched?: number;
24100
24108
  /**
24101
- * The total number of milliseconds in the last 60s where the received audio stream was matched to a video stream and the common clock was able to be determined (e.g. both streams had known values from recent RTCP SR).
24109
+ * The total number of milliseconds in the last 60s (MQE interval) where the received audio stream was matched to a video stream and the common clock was able to be determined (e.g. both streams had known values from recent RTCP SR).
24102
24110
  */
24103
24111
  totalCanSync?: number;
24104
24112
  /**
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.2022"
30
+ "version": "1.0.2024"
31
31
  }