sauwming
sauwming
This seems to be a pretty standard scenario: Remote cancelled the call during early state. When testing it here using 100rel, it seems to work fine. The 180 retransmission will...
It looks like a race condition in: https://github.com/pjsip/pjproject/blob/master/pjsip/src/pjsua2/endpoint.cpp#L1157 ``` Call *call = Call::lookup(call_id); if (!call) return; ... call->onCallTsxState(prm); ``` when the call object was destroyed right after being looked up....
This looks like a different issue. - Make sure that Opus is supported. - Provide us the PJSIP log, so we can check the SDP.
The SDP looks okay and the negotiation seems successful, so I'm not sure what went wrong. I suggest rebuilding it with debugging info (-g) so we can get a more...
We need the detailed stack trace in order to know which code triggered the divide by zero.
I also tried this on Mac and encountered the same problem as Riza. I downloaded the latest VS Code and followed the instruction here: https://learn.microsoft.com/en-us/dotnet/maui/get-started/installation?view=net-maui-9.0&tabs=visual-studio-code Would you be able to...
Thanks, it would be better if the sample apps can work on real devices, instead of simulators. If I tried following `Readme.md`, I would encounter the following error: `building for...
I still haven't managed to make it work on a real device. On iOS, it will fail due to an extra opening parenthesis here: `` But even after I fixed...
I finally managed to make it work. I have to specify the `RuntimeIdentifier`, otherwise it will link with simulator. `dotnet publish -c Debug -f net9.0-ios -p:RuntimeIdentifier=ios-arm64` The result is an...