Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
typester committed Jan 16, 2025
1 parent ab0bc9c commit 08f5f5c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions livekit/src/rtc_engine/rtc_session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,13 @@ impl RtcSession {
subscriber_pc,
pending_tracks: Default::default(),
lossy_dc,
lossy_dc_buffered_amount_low_threshold: AtomicU64::new(INITIAL_BUFFERED_AMOUNT_LOW_THRESHOLD),
lossy_dc_buffered_amount_low_threshold: AtomicU64::new(
INITIAL_BUFFERED_AMOUNT_LOW_THRESHOLD,
),
reliable_dc,
reliable_dc_buffered_amount_low_threshold: AtomicU64::new(INITIAL_BUFFERED_AMOUNT_LOW_THRESHOLD),
reliable_dc_buffered_amount_low_threshold: AtomicU64::new(
INITIAL_BUFFERED_AMOUNT_LOW_THRESHOLD,
),
dc_emitter,
sub_lossy_dc: Mutex::new(None),
sub_reliable_dc: Mutex::new(None),
Expand Down

0 comments on commit 08f5f5c

Please sign in to comment.