mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-09-01 17:23:48 +00:00
rtp: Update to rtcp-types 0.2
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2373>
This commit is contained in:
parent
98b61b1e56
commit
19e92e5625
3 changed files with 4 additions and 4 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -6887,9 +6887,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "rtcp-types"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ce5248489db464de29835170cd1f6e19933146b0016789effc59cb53d9f13844"
|
||||
checksum = "d0f21b493eabbc715ef2107c4e022874c06769047b3008a9b645a86ea8048f61"
|
||||
dependencies = [
|
||||
"thiserror 1.0.69",
|
||||
]
|
||||
|
|
|
@ -26,7 +26,7 @@ hex = "0.4.3"
|
|||
log = "0.4"
|
||||
rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng" ] }
|
||||
rtp-types = { version = "0.1" }
|
||||
rtcp-types = { version = "0.1" }
|
||||
rtcp-types = { version = "0.2" }
|
||||
slab = "0.4.9"
|
||||
smallvec = { version = "1.11", features = ["union", "write", "const_generics", "const_new"] }
|
||||
thiserror = "2"
|
||||
|
|
|
@ -731,7 +731,7 @@ impl Session {
|
|||
);
|
||||
}
|
||||
}
|
||||
Ok(Packet::TransportFeedback(_)) | Ok(Packet::Unknown(_)) => (),
|
||||
Ok(Packet::TransportFeedback(_)) | Ok(Packet::Xr(_)) | Ok(Packet::Unknown(_)) => (),
|
||||
// TODO: in RFC4585 profile, need to listen for feedback messages and remove any
|
||||
// that we would have sent
|
||||
Err(_) => (),
|
||||
|
|
Loading…
Reference in a new issue