mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-09-01 17:23:48 +00:00
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:
parent
c9b08188f2
commit
7781dff8e5
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue