rtp: basepay: fix timestamp property's range

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2382>
This commit is contained in:
François Laignel 2025-07-16 21:32:48 +02:00 committed by GStreamer Marge Bot
parent c9b08188f2
commit 7781dff8e5

View file

@ -1952,7 +1952,7 @@ impl ObjectImpl for RtpBasePay2 {
.nick("Timestamp")
.blurb("RTP timestamp of the last packet")
.minimum(0)
.maximum(u16::MAX as u32)
.maximum(u32::MAX)
.read_only()
.build(),
glib::ParamSpecBoolean::builder("source-info")