> Yes, I had changed it. Turns out I just needed to set the preset to low latency and that did the trick. Thanks though!
Hey, Could you explain about that ?
I retested it, because the registration terminal is on the alcatel oxe switch, there is a DTMF type setting on the switch, if set to 101, it can receive incoming calls, but if set to 97, it canno
...
You can use the [SIPCallServer](https://github.com/sipsorcery-org/sipsorcery/blob/master/examples/SIPExamples/SIPCallServer/Program.cs) and [SendDtmf](https://github.com/sipsorcery-org/sipsorcery/b...
Only get SendingFormat once
Add sanity check for ICE Gathering timeout
Fix bug in g722 codec
Added some more:
Fix rounding bug in SendAudioFrame
Fix bug where duplicate durations were being ...
yeah the original method has bugs.
In the for loop you have
LocalTrack.Timestamp += payloadDuration;
and then on exit you have
LocalTrack.Timestamp += duration;
This works if the buffer ...
> Few minutes after the PeerConnection was closed, memory is cleared. But is it normal to have memory consumption while receiving RTPPackets?
Yes, particularly with video streams. There are a lo...
I've resolved the performance issues with VP8 (It was my sws flags using a high quality color matching flag). It is using H264 when VP8 isn't available (on IOS).
There does need to be an update th...
My web clients vary in their SDP over whether they prefer VP8 (firefox) or H264 (chrome) but they support both. The server side app performance is much (much) better with H264.
Unfortunately t...
OK I've been looking into this some more - the code to select the profile definitely needs to be expanded beyond first match.
When it's using VP8 it works ok as VP8 is very forgiving but uses a lo...
I can't replicate this with `SIPSorceryMedia.FFmpeg` (Sending & Receiving).
RTP framing and depacketizer each do copies in their process but they look to be garbage collected correctly.
If that were to happen then the codec would need to be reinitialized which isn't currently happening in the rest of the code base. If it switched to VP8 from H264 for example it'd just send H264 fr...
I think you could be right about the SDP format matching. I recall in the past issues when non-well known format IDs were used. If you're not in a position to create a PR (another one) for it I can...
Thanks for the PR.
I'd like to spend a little bit more time analysing it. I have this nagging feeling that the sending format can occassionally change if the remote peer switches to a different ...
This AreMatch method in \net\SDP\SDPAudioVideoMediaFormat.cs shouldn't be comparing the ID's
```
if (format1.ID < DYNAMIC_ID_MIN
&& format1.ID == format2.ID
&& ...