Skip to content

Commit

Permalink
Update mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc authored Jun 4, 2023
1 parent 6e8388d commit 7acfbd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webrtc/src/rtp_transceiver/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ pub type TriggerNegotiationNeededFnOption =
/// RTPTransceiver represents a combination of an RTPSender and an RTPReceiver that share a common mid.
pub struct RTCRtpTransceiver {
mid: OnceCell<SmallStr>, //atomic.Value
sender: SyncMutex<Arc<RTCRtpSender>>, //atomic.Value
receiver: SyncMutex<Arc<RTCRtpReceiver>>, //atomic.Value
sender: Mutex<Arc<RTCRtpSender>>, //atomic.Value
receiver: Mutex<Arc<RTCRtpReceiver>>, //atomic.Value

direction: AtomicU8, //RTPTransceiverDirection
current_direction: AtomicU8, //RTPTransceiverDirection
Expand Down

0 comments on commit 7acfbd4

Please sign in to comment.