Hugo Tunius
Hugo Tunius
See https://github.com/tomaka/winit/issues/343 regarding the handling of dead keys which may or may not relate to this issue. The TL;DR is that there's work that need to happen in winit to...
This is still problematic on my layout too, for xample `alt + v` where `v` is in the QWERTY location should be `!`, but it does nothing
I posted a [suggestion](https://github.com/webrtc-rs/webrtc/issues/192#issuecomment-1129997236) for a paused state, for the sender, in the webrtc-rs issue. I've not got a sophisticated test bed for Pion, but in webrtc-rs if an `m=`...
> In summary, I think my question is: do you think removing L1058-L1061 is a necessary and sufficient change to fix this? I tested this in `webrtc-rs`, but it doesn't...
I've been [experimenting](https://github.com/webrtc-rs/webrtc/commit/986e8a7e6ece7dc812511b3bafd9eea974ea6899) with this in `webrtc-rs` and while these changes do correct the direction when moving from inactive and back the receiver ends up being stopped anyway. This happens...
I've been playing around a bit with this in Chrome using the following playgrounds: * [Sender](https://jsfiddle.net/mc0xvpuL/35/) * [Receiver](https://jsfiddle.net/q72Ldcv3/22/) When the transceiver transitions from `recvonly` in the Receiver to `inactive` it...
> In Pion, when configureRTPReceivers is called, it will stop the receiver and cause EOF to be sent to consumer of the track. I don't know if we need to...
Hmm, right I suppose the receiver can be removed and re-created entirely instead of entering some paused state and then resuming. However, since the specification says that RTCP should continue...
FWIW there's this [test](https://webrtc.googlesource.com/src/+/refs/heads/main/pc/peer_connection_jsep_unittest.cc#583) in libWebrtc that asserts that the transceivers are not stopped in the case of an m= section becoming inactive.
Details from the spec in https://w3c.github.io/webrtc-pc/#set-the-session-description in step 7.9.1.7.2. Implementation in [libWebRTC](https://webrtc.googlesource.com/src/+/refs/heads/main/pc/sdp_offer_answer.cc#1581)