We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8388d commit 7acfbd4Copy full SHA for 7acfbd4
webrtc/src/rtp_transceiver/mod.rs
@@ -176,8 +176,8 @@ pub type TriggerNegotiationNeededFnOption =
176
/// RTPTransceiver represents a combination of an RTPSender and an RTPReceiver that share a common mid.
177
pub struct RTCRtpTransceiver {
178
mid: OnceCell<SmallStr>, //atomic.Value
179
- sender: SyncMutex<Arc<RTCRtpSender>>, //atomic.Value
180
- receiver: SyncMutex<Arc<RTCRtpReceiver>>, //atomic.Value
+ sender: Mutex<Arc<RTCRtpSender>>, //atomic.Value
+ receiver: Mutex<Arc<RTCRtpReceiver>>, //atomic.Value
181
182
direction: AtomicU8, //RTPTransceiverDirection
183
current_direction: AtomicU8, //RTPTransceiverDirection
0 commit comments