gst-plugins-rs/net/rtp/src/basepay
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
..
imp.rs rtp: Change RtpBasePay2::ssrc_collision from AtomicU64 to Option<u32> 2024-05-10 14:23:41 +00:00
mod.rs Fix new Rust 1.78 clippy warnings 2024-05-02 18:36:23 +03:00