From 7781dff8e5c69fa597fbb29821dd29f358d2e7da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laignel?= Date: Wed, 16 Jul 2025 21:32:48 +0200 Subject: [PATCH] rtp: basepay: fix timestamp property's range Part-of: --- net/rtp/src/basepay/imp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/rtp/src/basepay/imp.rs b/net/rtp/src/basepay/imp.rs index 31bdd5b85..61d9ac3b1 100644 --- a/net/rtp/src/basepay/imp.rs +++ b/net/rtp/src/basepay/imp.rs @@ -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")