Skip to content

Commit 9fdf053

Browse files
committed
add changelog
1 parent 18c0ada commit 9fdf053

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

interceptor/src/stats/interceptor.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -729,8 +729,6 @@ impl RTPReader for RTPReadRecorder {
729729
attributes: &Attributes,
730730
) -> Result<(rtp::packet::Packet, Attributes)> {
731731
let (pkt, attributes) = self.rtp_reader.read(buf, attributes).await?;
732-
// TODO: This parsing happens redundantly in several interceptors, would be good if we
733-
// could not do this.
734732

735733
let _ = self
736734
.tx

webrtc/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
- `onmute`;
6161
- `onunmute`.
6262

63+
* Change `RTPReader::read` signature to `|&self, buf: &mut [u8], attributes: &Attributes| -> Result<(rtp::packet::Packet, Attributes)>` [#450](https://github.com/webrtc-rs/webrtc/pull/450).
64+
65+
* Change `RTCPReader::read` signature to `|&self, buf: &mut [u8], attributes: &Attributes| -> Result<(Vec<Box<dyn rtcp::packet::Packet + Send + Sync>>, Attributes)>` [#450](https://github.com/webrtc-rs/webrtc/pull/450).
66+
6367
## v0.6.0
6468

6569
* Added more stats to `RemoteInboundRTPStats` and `RemoteOutboundRTPStats` [#282](https://github.com/webrtc-rs/webrtc/pull/282) by [@k0nserv](https://github.com/k0nserv).

0 commit comments

Comments
 (0)