diff --git a/src/bwe.rs b/src/bwe.rs index e2ba6bba..bce56bad 100644 --- a/src/bwe.rs +++ b/src/bwe.rs @@ -24,10 +24,10 @@ impl<'a> Bwe<'a> { /// [`RtcConfig::enable_bwe`][crate::RtcConfig::enable_bwe]. /// /// * `current_bitrate` an estimate of the current bitrate being sent. When the media is - /// produced by encoders this value should be the sum of all the target bitrates for these - /// encoders, when the media originates from another WebRTC client it should be the sum of the - /// configure bitrates for all tracks being sent. This value should only account for video i.e. - /// audio bitrates should be ignored. + /// produced by encoders this value should be the sum of all the target bitrates for these + /// encoders, when the media originates from another WebRTC client it should be the sum of the + /// configure bitrates for all tracks being sent. This value should only account for video i.e. + /// audio bitrates should be ignored. /// /// ## Example /// @@ -68,10 +68,10 @@ impl<'a> Bwe<'a> { /// [`RtcConfig::enable_bwe`][crate::RtcConfig::enable_bwe]. /// /// * `desired_bitrate` The bitrate you would like to eventually send at. The BWE system will - /// try to reach this bitrate by probing with padding packets. You should allocate your media - /// bitrate based on the estimated the BWE system produces via - /// [`Event::EgressBitrateEstimate`][crate::Event::EgressBitrateEstimate]. This rate might - /// not be reached if the network link cannot sustain the desired bitrate. + /// try to reach this bitrate by probing with padding packets. You should allocate your media + /// bitrate based on the estimated the BWE system produces via + /// [`Event::EgressBitrateEstimate`][crate::Event::EgressBitrateEstimate]. This rate might + /// not be reached if the network link cannot sustain the desired bitrate. /// /// ## Example /// diff --git a/src/sdp/parser.rs b/src/sdp/parser.rs index 4ce920f1..c4edb6e6 100644 --- a/src/sdp/parser.rs +++ b/src/sdp/parser.rs @@ -33,6 +33,7 @@ where /// 2. The second SDP line MUST be an "o=" line The sess-id MUST be representable by a 64-bit signed /// integer, and the initial value MUST be less than (2**62)-1 /// 3. Third line a single dash SHOULD be used as the session name, e.g. "s=-" +/// /// Session is over when we find a "t=" line MUST be added, both and /// SHOULD be set to zero, e.g. "t=0 0". pub fn session_parser() -> impl Parser