Have come across a problem where joining as a plain rtp with a codec other that opus is impossible. Being irrelevant whether a participant is plain rtp or not, it seems join() is missing the 'codec' param. In my case, I was trying to join as a plain rtp participant with pcmu or pcma.
The fix is trivial, just adding the codec param to the join method (and documentation) does the trick. Something like that:
Have come across a problem where joining as a plain rtp with a codec other that opus is impossible. Being irrelevant whether a participant is plain rtp or not, it seems join() is missing the 'codec' param. In my case, I was trying to join as a plain rtp participant with pcmu or pcma.
The fix is trivial, just adding the codec param to the join method (and documentation) does the trick. Something like that:
I hope I am not missing anything.