@webex/event-dictionary-ts 1.0.1339 → 1.0.1340
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.
|
@@ -17971,6 +17971,11 @@
|
|
|
17971
17971
|
"UpSample_DNN_4"
|
|
17972
17972
|
]
|
|
17973
17973
|
},
|
|
17974
|
+
"processSRMillis": {
|
|
17975
|
+
"type": "number",
|
|
17976
|
+
"minimum": 0.0,
|
|
17977
|
+
"maximum": 9223372036854776000.0
|
|
17978
|
+
},
|
|
17974
17979
|
"remoteClientType": {
|
|
17975
17980
|
"type": "string",
|
|
17976
17981
|
"description": "this defines the major client types",
|
|
@@ -6807,6 +6807,11 @@
|
|
|
6807
6807
|
"UpSample_DNN_4"
|
|
6808
6808
|
]
|
|
6809
6809
|
},
|
|
6810
|
+
"processSRMillis": {
|
|
6811
|
+
"type": "number",
|
|
6812
|
+
"minimum": 0.0,
|
|
6813
|
+
"maximum": 9223372036854776000.0
|
|
6814
|
+
},
|
|
6810
6815
|
"remoteClientType": {
|
|
6811
6816
|
"type": "string",
|
|
6812
6817
|
"description": "this defines the major client types",
|
|
@@ -7313,6 +7313,7 @@ export interface Event {
|
|
|
7313
7313
|
| "UpSample_VP_2"
|
|
7314
7314
|
| "UpSample_DNN_2"
|
|
7315
7315
|
| "UpSample_DNN_4";
|
|
7316
|
+
processSRMillis?: number;
|
|
7316
7317
|
/**
|
|
7317
7318
|
* this defines the major client types
|
|
7318
7319
|
*/
|
|
@@ -16358,6 +16359,7 @@ export interface MediaQualityEvent {
|
|
|
16358
16359
|
renderWindowResolution?: number;
|
|
16359
16360
|
scaledResolution?: number;
|
|
16360
16361
|
upSampleType?: "UpSample_None" | "UpSample_Render" | "UpSample_VP_2" | "UpSample_DNN_2" | "UpSample_DNN_4";
|
|
16362
|
+
processSRMillis?: number;
|
|
16361
16363
|
/**
|
|
16362
16364
|
* this defines the major client types
|
|
16363
16365
|
*/
|
package/package.json
CHANGED