@webex/event-dictionary-ts 1.0.2078 → 1.0.2079

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.
@@ -19263,6 +19263,31 @@
19263
19263
  ],
19264
19264
  "type": "string"
19265
19265
  },
19266
+ "av1Metrics": {
19267
+ "type": "object",
19268
+ "description": "This object tracks AV1 encoder performance metrics and configuration",
19269
+ "additionalProperties": true,
19270
+ "properties": {
19271
+ "encodeSpeed": {
19272
+ "description": "AV1 encoder speed setting (0-5, where 0 is slowest/highest quality, 5 is fastest/lowest quality).\nWhen AV1 is not active, 0 is reported and disableReason is set; when AV1 is active, the actual speed is reported and disableReason is absent.\nSpeed 0 when AV1 is active is reserved (e.g. research) and not used in production.\n",
19273
+ "type": "integer",
19274
+ "minimum": 0,
19275
+ "maximum": 5
19276
+ },
19277
+ "simdType": {
19278
+ "description": "SIMD instruction set used by the AV1 encoder (e.g., \"C\", \"SSE\", \"SSE2\", \"SSE3\", \"SSSE3\", \"SSE4_1\", \"AVX\", \"AVX2\", \"AVX512\"). Only present when AV1 is actively encoding.",
19279
+ "type": "string",
19280
+ "minLength": 1,
19281
+ "maxLength": 16
19282
+ },
19283
+ "disableReason": {
19284
+ "description": "Reason why AV1 encoding is disabled, if applicable. Empty or absent when AV1 is actively encoding. Examples include \"NotEnabled\", \"RecordingOn\", \"DPCDisableAV1\", \"SPCDisableAV1\", \"RemoteNotSubscribed\", \"FeatureToggleOff\".",
19285
+ "type": "string",
19286
+ "minLength": 0,
19287
+ "maxLength": 64
19288
+ }
19289
+ }
19290
+ },
19266
19291
  "isAvatar": {
19267
19292
  "type": "boolean"
19268
19293
  },
@@ -5775,6 +5775,31 @@
5775
5775
  ],
5776
5776
  "type": "string"
5777
5777
  },
5778
+ "av1Metrics": {
5779
+ "type": "object",
5780
+ "description": "This object tracks AV1 encoder performance metrics and configuration",
5781
+ "additionalProperties": true,
5782
+ "properties": {
5783
+ "encodeSpeed": {
5784
+ "description": "AV1 encoder speed setting (0-5, where 0 is slowest/highest quality, 5 is fastest/lowest quality).\nWhen AV1 is not active, 0 is reported and disableReason is set; when AV1 is active, the actual speed is reported and disableReason is absent.\nSpeed 0 when AV1 is active is reserved (e.g. research) and not used in production.\n",
5785
+ "type": "integer",
5786
+ "minimum": 0,
5787
+ "maximum": 5
5788
+ },
5789
+ "simdType": {
5790
+ "description": "SIMD instruction set used by the AV1 encoder (e.g., \"C\", \"SSE\", \"SSE2\", \"SSE3\", \"SSSE3\", \"SSE4_1\", \"AVX\", \"AVX2\", \"AVX512\"). Only present when AV1 is actively encoding.",
5791
+ "type": "string",
5792
+ "minLength": 1,
5793
+ "maxLength": 16
5794
+ },
5795
+ "disableReason": {
5796
+ "description": "Reason why AV1 encoding is disabled, if applicable. Empty or absent when AV1 is actively encoding. Examples include \"NotEnabled\", \"RecordingOn\", \"DPCDisableAV1\", \"SPCDisableAV1\", \"RemoteNotSubscribed\", \"FeatureToggleOff\".",
5797
+ "type": "string",
5798
+ "minLength": 0,
5799
+ "maxLength": 64
5800
+ }
5801
+ }
5802
+ },
5778
5803
  "isAvatar": {
5779
5804
  "type": "boolean"
5780
5805
  },
@@ -8398,6 +8398,27 @@ export interface Event {
8398
8398
  localConfigurationChanges: number;
8399
8399
  remoteConfigurationChanges: number;
8400
8400
  h264CodecProfile: "BP" | "CHP";
8401
+ /**
8402
+ * This object tracks AV1 encoder performance metrics and configuration
8403
+ */
8404
+ av1Metrics?: {
8405
+ /**
8406
+ * AV1 encoder speed setting (0-5, where 0 is slowest/highest quality, 5 is fastest/lowest quality).
8407
+ * When AV1 is not active, 0 is reported and disableReason is set; when AV1 is active, the actual speed is reported and disableReason is absent.
8408
+ * Speed 0 when AV1 is active is reserved (e.g. research) and not used in production.
8409
+ *
8410
+ */
8411
+ encodeSpeed?: number;
8412
+ /**
8413
+ * SIMD instruction set used by the AV1 encoder (e.g., "C", "SSE", "SSE2", "SSE3", "SSSE3", "SSE4_1", "AVX", "AVX2", "AVX512"). Only present when AV1 is actively encoding.
8414
+ */
8415
+ simdType?: string;
8416
+ /**
8417
+ * Reason why AV1 encoding is disabled, if applicable. Empty or absent when AV1 is actively encoding. Examples include "NotEnabled", "RecordingOn", "DPCDisableAV1", "SPCDisableAV1", "RemoteNotSubscribed", "FeatureToggleOff".
8418
+ */
8419
+ disableReason?: string;
8420
+ additionalProperties?: false;
8421
+ };
8401
8422
  isAvatar?: boolean;
8402
8423
  /**
8403
8424
  * video encode quality metrics
@@ -23638,6 +23659,27 @@ export interface MediaQualityEvent {
23638
23659
  localConfigurationChanges: number;
23639
23660
  remoteConfigurationChanges: number;
23640
23661
  h264CodecProfile: "BP" | "CHP";
23662
+ /**
23663
+ * This object tracks AV1 encoder performance metrics and configuration
23664
+ */
23665
+ av1Metrics?: {
23666
+ /**
23667
+ * AV1 encoder speed setting (0-5, where 0 is slowest/highest quality, 5 is fastest/lowest quality).
23668
+ * When AV1 is not active, 0 is reported and disableReason is set; when AV1 is active, the actual speed is reported and disableReason is absent.
23669
+ * Speed 0 when AV1 is active is reserved (e.g. research) and not used in production.
23670
+ *
23671
+ */
23672
+ encodeSpeed?: number;
23673
+ /**
23674
+ * SIMD instruction set used by the AV1 encoder (e.g., "C", "SSE", "SSE2", "SSE3", "SSSE3", "SSE4_1", "AVX", "AVX2", "AVX512"). Only present when AV1 is actively encoding.
23675
+ */
23676
+ simdType?: string;
23677
+ /**
23678
+ * Reason why AV1 encoding is disabled, if applicable. Empty or absent when AV1 is actively encoding. Examples include "NotEnabled", "RecordingOn", "DPCDisableAV1", "SPCDisableAV1", "RemoteNotSubscribed", "FeatureToggleOff".
23679
+ */
23680
+ disableReason?: string;
23681
+ additionalProperties?: false;
23682
+ };
23641
23683
  isAvatar?: boolean;
23642
23684
  /**
23643
23685
  * video encode quality metrics
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.2078"
30
+ "version": "1.0.2079"
31
31
  }