gst-plugins-rs/net/rtp
Martin Nordholts a719cbfcc6 rtp: Change RtpBasePay2::ssrc_collision from AtomicU64 to Option<u32>
Rust targets without support for `AtomicU64` is still
somewhat common. Running

    git grep -i 'max_atomic_width: Some(32)' | wc -l

in the Rust compiler repo currently counts to 34 targets.

Change the `RtpBasePay2::ssrc_collision` from `AtomicU64` to
`Mutex<Option<u32>>`. This way we keep support for these
targets.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1562>
2024-05-10 14:23:41 +00:00
..
src rtp: Change RtpBasePay2::ssrc_collision from AtomicU64 to Option<u32> 2024-05-10 14:23:41 +00:00
build.rs Rename rtpav1 plugin to just rtp 2022-10-23 20:04:43 +03:00
Cargo.toml rtp: add mp4gdepay 2024-04-29 13:33:42 +00:00