(d RTPTransceiverDirection)
| 300 | } |
| 301 | |
| 302 | func (t *RTPTransceiver) setCurrentRemoteDirection(d RTPTransceiverDirection) { |
| 303 | t.currentRemoteDirection.Store(d) |
| 304 | } |
| 305 | |
| 306 | func (t *RTPTransceiver) getCurrentRemoteDirection() RTPTransceiverDirection { |
| 307 | if v, ok := t.currentRemoteDirection.Load().(RTPTransceiverDirection); ok { |
no outgoing calls
no test coverage detected