Skip to content

Commit

Permalink
Remove force_group
Browse files Browse the repository at this point in the history
  • Loading branch information
algesten committed Jan 10, 2025
1 parent 1ef3785 commit 587988a
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/media/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@ impl From<SdpSimulcast> for Simulcast {
let send = s.send.iter().map(|r| r.0.as_ref()).map(Rid::from).collect();
let recv = s.recv.iter().map(|r| r.0.as_ref()).map(Rid::from).collect();

Simulcast {
send,
recv,
force_ssrc_groups: false,
}
Simulcast { send, recv }
}
}

Expand Down Expand Up @@ -69,8 +65,6 @@ pub struct Simulcast {
pub send: Vec<Rid>,
/// The RID used for receiving simulcast.
pub recv: Vec<Rid>,
/// Force ssrc-group creation (Firefox-style)
pub force_ssrc_groups: bool,
}

impl Simulcast {
Expand Down

0 comments on commit 587988a

Please sign in to comment.