@webex/event-dictionary-ts 1.0.1542 → 1.0.1544
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.
|
@@ -15855,6 +15855,36 @@
|
|
|
15855
15855
|
"description": "how many frames are encoded by Xcodec in one minute.",
|
|
15856
15856
|
"minimum": -32768,
|
|
15857
15857
|
"maximum": 32767
|
|
15858
|
+
},
|
|
15859
|
+
"xcodecLongCaseCondition": {
|
|
15860
|
+
"type": "integer",
|
|
15861
|
+
"description": "what is the condition that encoder switch into Xcodec and back to other codec, and xcodec duration larger than 30s",
|
|
15862
|
+
"minimum": -32768,
|
|
15863
|
+
"maximum": 32767
|
|
15864
|
+
},
|
|
15865
|
+
"xcodecShortCaseCondition": {
|
|
15866
|
+
"type": "integer",
|
|
15867
|
+
"description": "what is the condition that encoder switch into Xcodec and back to other codec, and xcodec duration shorter than 30s",
|
|
15868
|
+
"minimum": -32768,
|
|
15869
|
+
"maximum": 32767
|
|
15870
|
+
},
|
|
15871
|
+
"xcodecLongEncodeTime": {
|
|
15872
|
+
"type": "integer",
|
|
15873
|
+
"description": "Xcodec encoder duration, larger than 30s",
|
|
15874
|
+
"minimum": -32768,
|
|
15875
|
+
"maximum": 32767
|
|
15876
|
+
},
|
|
15877
|
+
"xcodecShortEncodeTime": {
|
|
15878
|
+
"type": "integer",
|
|
15879
|
+
"description": "Xcodec encoder duration, shorter than 30s",
|
|
15880
|
+
"minimum": -32768,
|
|
15881
|
+
"maximum": 32767
|
|
15882
|
+
},
|
|
15883
|
+
"switchToXcodecCount": {
|
|
15884
|
+
"type": "integer",
|
|
15885
|
+
"description": "number of encoder switch to Xcodec within 1 minute",
|
|
15886
|
+
"minimum": -32768,
|
|
15887
|
+
"maximum": 32767
|
|
15858
15888
|
}
|
|
15859
15889
|
}
|
|
15860
15890
|
},
|
|
@@ -3852,6 +3852,36 @@
|
|
|
3852
3852
|
"description": "how many frames are encoded by Xcodec in one minute.",
|
|
3853
3853
|
"minimum": -32768,
|
|
3854
3854
|
"maximum": 32767
|
|
3855
|
+
},
|
|
3856
|
+
"xcodecLongCaseCondition": {
|
|
3857
|
+
"type": "integer",
|
|
3858
|
+
"description": "what is the condition that encoder switch into Xcodec and back to other codec, and xcodec duration larger than 30s",
|
|
3859
|
+
"minimum": -32768,
|
|
3860
|
+
"maximum": 32767
|
|
3861
|
+
},
|
|
3862
|
+
"xcodecShortCaseCondition": {
|
|
3863
|
+
"type": "integer",
|
|
3864
|
+
"description": "what is the condition that encoder switch into Xcodec and back to other codec, and xcodec duration shorter than 30s",
|
|
3865
|
+
"minimum": -32768,
|
|
3866
|
+
"maximum": 32767
|
|
3867
|
+
},
|
|
3868
|
+
"xcodecLongEncodeTime": {
|
|
3869
|
+
"type": "integer",
|
|
3870
|
+
"description": "Xcodec encoder duration, larger than 30s",
|
|
3871
|
+
"minimum": -32768,
|
|
3872
|
+
"maximum": 32767
|
|
3873
|
+
},
|
|
3874
|
+
"xcodecShortEncodeTime": {
|
|
3875
|
+
"type": "integer",
|
|
3876
|
+
"description": "Xcodec encoder duration, shorter than 30s",
|
|
3877
|
+
"minimum": -32768,
|
|
3878
|
+
"maximum": 32767
|
|
3879
|
+
},
|
|
3880
|
+
"switchToXcodecCount": {
|
|
3881
|
+
"type": "integer",
|
|
3882
|
+
"description": "number of encoder switch to Xcodec within 1 minute",
|
|
3883
|
+
"minimum": -32768,
|
|
3884
|
+
"maximum": 32767
|
|
3855
3885
|
}
|
|
3856
3886
|
}
|
|
3857
3887
|
},
|
|
@@ -6603,6 +6603,26 @@ export interface Event {
|
|
|
6603
6603
|
* how many frames are encoded by Xcodec in one minute.
|
|
6604
6604
|
*/
|
|
6605
6605
|
xcodecTotalEncodedFrames?: number;
|
|
6606
|
+
/**
|
|
6607
|
+
* what is the condition that encoder switch into Xcodec and back to other codec, and xcodec duration larger than 30s
|
|
6608
|
+
*/
|
|
6609
|
+
xcodecLongCaseCondition?: number;
|
|
6610
|
+
/**
|
|
6611
|
+
* what is the condition that encoder switch into Xcodec and back to other codec, and xcodec duration shorter than 30s
|
|
6612
|
+
*/
|
|
6613
|
+
xcodecShortCaseCondition?: number;
|
|
6614
|
+
/**
|
|
6615
|
+
* Xcodec encoder duration, larger than 30s
|
|
6616
|
+
*/
|
|
6617
|
+
xcodecLongEncodeTime?: number;
|
|
6618
|
+
/**
|
|
6619
|
+
* Xcodec encoder duration, shorter than 30s
|
|
6620
|
+
*/
|
|
6621
|
+
xcodecShortEncodeTime?: number;
|
|
6622
|
+
/**
|
|
6623
|
+
* number of encoder switch to Xcodec within 1 minute
|
|
6624
|
+
*/
|
|
6625
|
+
switchToXcodecCount?: number;
|
|
6606
6626
|
additionalProperties?: false;
|
|
6607
6627
|
};
|
|
6608
6628
|
/**
|
|
@@ -17881,6 +17901,26 @@ export interface MediaQualityEvent {
|
|
|
17881
17901
|
* how many frames are encoded by Xcodec in one minute.
|
|
17882
17902
|
*/
|
|
17883
17903
|
xcodecTotalEncodedFrames?: number;
|
|
17904
|
+
/**
|
|
17905
|
+
* what is the condition that encoder switch into Xcodec and back to other codec, and xcodec duration larger than 30s
|
|
17906
|
+
*/
|
|
17907
|
+
xcodecLongCaseCondition?: number;
|
|
17908
|
+
/**
|
|
17909
|
+
* what is the condition that encoder switch into Xcodec and back to other codec, and xcodec duration shorter than 30s
|
|
17910
|
+
*/
|
|
17911
|
+
xcodecShortCaseCondition?: number;
|
|
17912
|
+
/**
|
|
17913
|
+
* Xcodec encoder duration, larger than 30s
|
|
17914
|
+
*/
|
|
17915
|
+
xcodecLongEncodeTime?: number;
|
|
17916
|
+
/**
|
|
17917
|
+
* Xcodec encoder duration, shorter than 30s
|
|
17918
|
+
*/
|
|
17919
|
+
xcodecShortEncodeTime?: number;
|
|
17920
|
+
/**
|
|
17921
|
+
* number of encoder switch to Xcodec within 1 minute
|
|
17922
|
+
*/
|
|
17923
|
+
switchToXcodecCount?: number;
|
|
17884
17924
|
additionalProperties?: false;
|
|
17885
17925
|
};
|
|
17886
17926
|
/**
|
package/package.json
CHANGED