@webex/event-dictionary-ts 1.0.2094 → 1.0.2096

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.
@@ -19454,6 +19454,35 @@
19454
19454
  }
19455
19455
  }
19456
19456
  },
19457
+ "videoQuality": {
19458
+ "type": "object",
19459
+ "description": "Windowed PSNR (Peak Signal-to-Noise Ratio) metrics for local encoded video quality monitoring.\nReported when windowed PSNR is enabled for the encoder (AV1 or OpenH264/ H.264); values are\naveraged over the reporting interval. Only present when at least one PSNR sample was taken\nin the interval.\n",
19460
+ "additionalProperties": true,
19461
+ "properties": {
19462
+ "psnrY": {
19463
+ "description": "Y-plane (luma) PSNR in dB, average over the reporting interval.",
19464
+ "type": "number"
19465
+ },
19466
+ "psnrU": {
19467
+ "description": "U-plane PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.",
19468
+ "type": "number"
19469
+ },
19470
+ "psnrV": {
19471
+ "description": "V-plane PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.",
19472
+ "type": "number"
19473
+ },
19474
+ "psnrYuv": {
19475
+ "description": "Combined YUV PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.",
19476
+ "type": "number"
19477
+ },
19478
+ "psnrSampleCount": {
19479
+ "description": "Number of PSNR samples included in the interval average.",
19480
+ "type": "integer",
19481
+ "minimum": 1,
19482
+ "maximum": 2147483647
19483
+ }
19484
+ }
19485
+ },
19457
19486
  "isAvatar": {
19458
19487
  "type": "boolean"
19459
19488
  },
@@ -5875,6 +5875,35 @@
5875
5875
  }
5876
5876
  }
5877
5877
  },
5878
+ "videoQuality": {
5879
+ "type": "object",
5880
+ "description": "Windowed PSNR (Peak Signal-to-Noise Ratio) metrics for local encoded video quality monitoring.\nReported when windowed PSNR is enabled for the encoder (AV1 or OpenH264/ H.264); values are\naveraged over the reporting interval. Only present when at least one PSNR sample was taken\nin the interval.\n",
5881
+ "additionalProperties": true,
5882
+ "properties": {
5883
+ "psnrY": {
5884
+ "description": "Y-plane (luma) PSNR in dB, average over the reporting interval.",
5885
+ "type": "number"
5886
+ },
5887
+ "psnrU": {
5888
+ "description": "U-plane PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.",
5889
+ "type": "number"
5890
+ },
5891
+ "psnrV": {
5892
+ "description": "V-plane PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.",
5893
+ "type": "number"
5894
+ },
5895
+ "psnrYuv": {
5896
+ "description": "Combined YUV PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.",
5897
+ "type": "number"
5898
+ },
5899
+ "psnrSampleCount": {
5900
+ "description": "Number of PSNR samples included in the interval average.",
5901
+ "type": "integer",
5902
+ "minimum": 1,
5903
+ "maximum": 2147483647
5904
+ }
5905
+ }
5906
+ },
5878
5907
  "isAvatar": {
5879
5908
  "type": "boolean"
5880
5909
  },
@@ -8501,6 +8501,36 @@ export interface Event {
8501
8501
  disableReason?: string;
8502
8502
  additionalProperties?: false;
8503
8503
  };
8504
+ /**
8505
+ * Windowed PSNR (Peak Signal-to-Noise Ratio) metrics for local encoded video quality monitoring.
8506
+ * Reported when windowed PSNR is enabled for the encoder (AV1 or OpenH264/ H.264); values are
8507
+ * averaged over the reporting interval. Only present when at least one PSNR sample was taken
8508
+ * in the interval.
8509
+ *
8510
+ */
8511
+ videoQuality?: {
8512
+ /**
8513
+ * Y-plane (luma) PSNR in dB, average over the reporting interval.
8514
+ */
8515
+ psnrY?: number;
8516
+ /**
8517
+ * U-plane PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.
8518
+ */
8519
+ psnrU?: number;
8520
+ /**
8521
+ * V-plane PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.
8522
+ */
8523
+ psnrV?: number;
8524
+ /**
8525
+ * Combined YUV PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.
8526
+ */
8527
+ psnrYuv?: number;
8528
+ /**
8529
+ * Number of PSNR samples included in the interval average.
8530
+ */
8531
+ psnrSampleCount?: number;
8532
+ additionalProperties?: false;
8533
+ };
8504
8534
  isAvatar?: boolean;
8505
8535
  /**
8506
8536
  * video encode quality metrics
@@ -23883,6 +23913,36 @@ export interface MediaQualityEvent {
23883
23913
  disableReason?: string;
23884
23914
  additionalProperties?: false;
23885
23915
  };
23916
+ /**
23917
+ * Windowed PSNR (Peak Signal-to-Noise Ratio) metrics for local encoded video quality monitoring.
23918
+ * Reported when windowed PSNR is enabled for the encoder (AV1 or OpenH264/ H.264); values are
23919
+ * averaged over the reporting interval. Only present when at least one PSNR sample was taken
23920
+ * in the interval.
23921
+ *
23922
+ */
23923
+ videoQuality?: {
23924
+ /**
23925
+ * Y-plane (luma) PSNR in dB, average over the reporting interval.
23926
+ */
23927
+ psnrY?: number;
23928
+ /**
23929
+ * U-plane PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.
23930
+ */
23931
+ psnrU?: number;
23932
+ /**
23933
+ * V-plane PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.
23934
+ */
23935
+ psnrV?: number;
23936
+ /**
23937
+ * Combined YUV PSNR in dB, average over the reporting interval. Reserved (e.g. 0) when only luma is measured.
23938
+ */
23939
+ psnrYuv?: number;
23940
+ /**
23941
+ * Number of PSNR samples included in the interval average.
23942
+ */
23943
+ psnrSampleCount?: number;
23944
+ additionalProperties?: false;
23945
+ };
23886
23946
  isAvatar?: boolean;
23887
23947
  /**
23888
23948
  * 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.2094"
30
+ "version": "1.0.2096"
31
31
  }