This repository was archived by the owner on Aug 23, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 15 files changed +15
-15
lines changed
receiver_estimated_maximum_bitrate
rapid_resynchronization_request Expand file tree Collapse file tree 15 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ impl Packet for CompoundPacket {
5656 l
5757 }
5858
59- fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
59+ fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
6060 self
6161 }
6262
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ impl Packet for Goodbye {
5353 HEADER_LENGTH + srcs_length + reason_length
5454 }
5555
56- fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
56+ fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
5757 self
5858 }
5959
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ pub trait Packet: Marshal + Unmarshal + fmt::Display + fmt::Debug {
2020 fn header ( & self ) -> Header ;
2121 fn destination_ssrc ( & self ) -> Vec < u32 > ;
2222 fn raw_size ( & self ) -> usize ;
23- fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) ;
23+ fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) ;
2424 fn equal ( & self , other : & ( dyn Packet + Send + Sync ) ) -> bool ;
2525 fn cloned ( & self ) -> Box < dyn Packet + Send + Sync > ;
2626}
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ impl Packet for FullIntraRequest {
6161 HEADER_LENGTH + FIR_OFFSET + self . fir . len ( ) * 8
6262 }
6363
64- fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
64+ fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
6565 self
6666 }
6767
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ impl Packet for PictureLossIndication {
5050 HEADER_LENGTH + SSRC_LENGTH * 2
5151 }
5252
53- fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
53+ fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
5454 self
5555 }
5656
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ impl Packet for ReceiverEstimatedMaximumBitrate {
7272 HEADER_LENGTH + REMB_OFFSET + self . ssrcs . len ( ) * 4
7373 }
7474
75- fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
75+ fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
7676 self
7777 }
7878
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ impl Packet for SliceLossIndication {
6565 HEADER_LENGTH + SLI_OFFSET + self . sli_entries . len ( ) * 4
6666 }
6767
68- fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
68+ fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
6969 self
7070 }
7171
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ impl Packet for RawPacket {
3636 self . 0 . len ( )
3737 }
3838
39- fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
39+ fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
4040 self
4141 }
4242
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ impl Packet for ReceiverReport {
6969 HEADER_LENGTH + SSRC_LENGTH + reps_length + self . profile_extensions . len ( )
7070 }
7171
72- fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
72+ fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
7373 self
7474 }
7575
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ impl Packet for ReceptionReport {
6666 RECEPTION_REPORT_LENGTH
6767 }
6868
69- fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
69+ fn as_any ( & self ) -> & ( dyn Any + Send + Sync ) {
7070 self
7171 }
7272
You can’t perform that action at this time.
0 commit comments