- Internals: add
Utils::Json::IsPositiveInteger()
to not rely onis_number_unsigned()
of json lib, which is unreliable due to its design. - Avoid ES6
export default
and always use namedexport
(it does not affect public API). -
router.pipeToRouter()
: Ensure a singlePipeTransport
pair is created betweenrouter1
androuter2
.- Since the operation is async, it may happen that two simultaneous calls to
router1.pipeToRouter({ producerId: xxx, router: router2 })
would end up generating two pairs ofPipeTranports
. To prevent that, let’s use an async queue.
- Since the operation is async, it may happen that two simultaneous calls to
- Add
keyFrameWaitTime
option toProducerOptions
. See: - Update Node and C++ deps.
This topic was automatically closed after 2 days. New replies are no longer allowed.