-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libc++abi: terminating with uncaught exception of type MediaSoupClientError: Failed creating data channel #28
Comments
I also encountered the same problem |
I have the same issue. Updated from m112 ffbb6f4 to m120 8a486a2. The exception is:
Triggered from webrtc
Which doesn't make sense to me because it looks like OK error and should return true from error.ok(). Anyway here's the part of mediasoup that triggers the error: PeerConnection.cpprtc::scoped_refptr<webrtc::DataChannelInterface> PeerConnection::CreateDataChannel(
const std::string& label, const webrtc::DataChannelInit* config)
{
MSC_TRACE();
const auto result =
this->pc->CreateDataChannelOrError(label, config);
if (result.ok())
{
MSC_DEBUG("Success creating data channel");
}
else
{
MSC_THROW_ERROR("Failed creating data channel");
}
return result.value();
} Happens every time I try to create a video producer:
Will appreciate any help. |
Found the issue, it's this call. It shouldn't throw because @fedulvtubudul could you please sync libmediasoupclient? Thanks |
Also getting this. Crash on any new consumer. |
Getting this error on call of onProduce when sctpParameters are set to nil |
Did you find any solution? |
libc++abi: terminating with uncaught exception of type MediaSoupClientError: Failed creating data channel
with m120 while create transport even if sctp parameter set nil.
The text was updated successfully, but these errors were encountered: