Aaron Clauson

Results 181 comments of Aaron Clauson

When creating the RTCPeerConnection you can specify TURN servers. Search the code for RTCIceServer: ``` var iceServers = new List { new RTCIceServer { urls = $"turn:{mockTurnServer.ListeningEndPoint}", } }; ```

Unusual for your TURN server not to have a username. Either way you should be getting a response from it even if it's unauthorised. Can you post the logs with...

It does seem like a bug but so far I haven't been able to track down the cause of this.

Optimization is possible in the video frame buffers, but this alone may not meet the required throughput levels. A significant performance challenge arises when crossing the native-to-managed boundary, such as...

Do you have the log messages from the sipsorcery attempts? Also, this isn't correct `$"{IPAddress.Any}:0"`. The contact URI needs a port. Either leave the 0 off to use the default...

> Is it possible to make it a .NETStandard library? I don't see why not. Although there may be something in the UWP sandbox that trips up the interop with...

> Could you try to add SIPSorceryMedia.FFmpeg to an UWP solution? UWP apps aren't something on top of my list at the moment. I don't mind making adjustments for them...

> Are you generally interested to include it in the sipsorcery-org repository? Yes definitely. People are always asking for extra ways to interface with audio devices and the more options...

Maybe something in txmempool.h that the msvc compiler doesn't like? ``` D:\a\bitcoin\bitcoin\src\txmempool.h(457,60): error C2143: syntax error: missing ')' before 'public' [D:\a\bitcoin\bitcoin\build_msvc\libbitcoin_qt\libbitcoin_qt.vcxproj] D:\a\bitcoin\bitcoin\src\txmempool.h(457,60): error C2143: syntax error: missing ';' before 'public'...