mediasoup 3.10.9 → 3.10.10
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.
- package/node/lib/Router.js +1 -1
- package/node/lib/Worker.js +1 -1
- package/node/lib/index.d.ts +1 -1
- package/node/lib/index.js +1 -1
- package/package.json +7 -7
- package/worker/src/PayloadChannel/PayloadChannelNotifier.cpp +1 -1
- package/CHANGELOG.md +0 -1437
- package/worker/src/RTC/.Consumer.cpp.swo +0 -0
package/node/lib/Router.js
CHANGED
|
@@ -489,7 +489,7 @@ class Router extends EnhancedEventEmitter_1.EnhancedEventEmitter {
|
|
|
489
489
|
if (producer.closed)
|
|
490
490
|
throw new errors_1.InvalidStateError('original Producer closed');
|
|
491
491
|
// Ensure that producer.paused has not changed in the meanwhile and, if
|
|
492
|
-
// so,
|
|
492
|
+
// so, sync the pipeProducer.
|
|
493
493
|
if (pipeProducer.paused !== producer.paused) {
|
|
494
494
|
if (producer.paused)
|
|
495
495
|
await pipeProducer.pause();
|
package/node/lib/Worker.js
CHANGED
|
@@ -81,7 +81,7 @@ class Worker extends EnhancedEventEmitter_1.EnhancedEventEmitter {
|
|
|
81
81
|
// options
|
|
82
82
|
{
|
|
83
83
|
env: {
|
|
84
|
-
MEDIASOUP_VERSION: '3.10.
|
|
84
|
+
MEDIASOUP_VERSION: '3.10.10',
|
|
85
85
|
// Let the worker process inherit all environment variables, useful
|
|
86
86
|
// if a custom and not in the path GCC is used so the user can set
|
|
87
87
|
// LD_LIBRARY_PATH environment variable for runtime.
|
package/node/lib/index.d.ts
CHANGED
package/node/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mediasoup",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.10",
|
|
4
4
|
"description": "Cutting Edge WebRTC Video Conferencing",
|
|
5
5
|
"contributors": [
|
|
6
6
|
"Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
|
|
@@ -78,13 +78,13 @@
|
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@types/debug": "^4.1.7",
|
|
80
80
|
"@types/uuid": "^8.3.4",
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
82
|
-
"@typescript-eslint/parser": "^5.
|
|
83
|
-
"eslint": "^8.
|
|
84
|
-
"eslint-plugin-jest": "^
|
|
85
|
-
"jest": "^
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
|
82
|
+
"@typescript-eslint/parser": "^5.40.1",
|
|
83
|
+
"eslint": "^8.25.0",
|
|
84
|
+
"eslint-plugin-jest": "^27.1.3",
|
|
85
|
+
"jest": "^29.2.1",
|
|
86
86
|
"jest-tobetype": "^1.2.3",
|
|
87
|
-
"open-cli": "^7.0
|
|
87
|
+
"open-cli": "^7.1.0",
|
|
88
88
|
"pick-port": "^1.0.1",
|
|
89
89
|
"sctp": "^1.0.0",
|
|
90
90
|
"tsc-watch": "^5.0.3",
|
|
@@ -31,7 +31,7 @@ namespace PayloadChannel
|
|
|
31
31
|
notification.append(targetId);
|
|
32
32
|
notification.append("\",\"event\":\"");
|
|
33
33
|
notification.append(event);
|
|
34
|
-
notification.append("}");
|
|
34
|
+
notification.append("\"}");
|
|
35
35
|
|
|
36
36
|
PayloadChannelNotifier::payloadChannel->Send(notification, payload, payloadLen);
|
|
37
37
|
}
|