@webex/event-dictionary-ts 1.0.2176 → 1.0.2177
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.
|
@@ -23905,6 +23905,11 @@
|
|
|
23905
23905
|
"isHardwareDecoded": {
|
|
23906
23906
|
"type": "boolean"
|
|
23907
23907
|
},
|
|
23908
|
+
"hardwareDecoderFallbackCount": {
|
|
23909
|
+
"type": "integer",
|
|
23910
|
+
"minimum": 0,
|
|
23911
|
+
"maximum": 32767
|
|
23912
|
+
},
|
|
23908
23913
|
"decoderProcessInfo": {
|
|
23909
23914
|
"type": "object",
|
|
23910
23915
|
"description": "receive video pipeline performance metric",
|
|
@@ -9824,6 +9824,11 @@
|
|
|
9824
9824
|
"isHardwareDecoded": {
|
|
9825
9825
|
"type": "boolean"
|
|
9826
9826
|
},
|
|
9827
|
+
"hardwareDecoderFallbackCount": {
|
|
9828
|
+
"type": "integer",
|
|
9829
|
+
"minimum": 0,
|
|
9830
|
+
"maximum": 32767
|
|
9831
|
+
},
|
|
9827
9832
|
"decoderProcessInfo": {
|
|
9828
9833
|
"type": "object",
|
|
9829
9834
|
"description": "receive video pipeline performance metric",
|
|
@@ -10614,6 +10614,7 @@ export interface Event {
|
|
|
10614
10614
|
isActiveSpeaker?: boolean;
|
|
10615
10615
|
h264CodecProfile: "BP" | "CHP";
|
|
10616
10616
|
isHardwareDecoded?: boolean;
|
|
10617
|
+
hardwareDecoderFallbackCount?: number;
|
|
10617
10618
|
/**
|
|
10618
10619
|
* receive video pipeline performance metric
|
|
10619
10620
|
*/
|
|
@@ -26766,6 +26767,7 @@ export interface MediaQualityEvent {
|
|
|
26766
26767
|
isActiveSpeaker?: boolean;
|
|
26767
26768
|
h264CodecProfile: "BP" | "CHP";
|
|
26768
26769
|
isHardwareDecoded?: boolean;
|
|
26770
|
+
hardwareDecoderFallbackCount?: number;
|
|
26769
26771
|
/**
|
|
26770
26772
|
* receive video pipeline performance metric
|
|
26771
26773
|
*/
|
package/package.json
CHANGED