mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 19:41:00 +00:00
rtp: basedepay: Reset last used ext seqnum on discontinuities
The ext seqnum counting is reset too so keeping the old one around will cause problems with timestamping of the next outgoing buffer. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1584>
This commit is contained in:
parent
28bd6f07a2
commit
58e91c154c
1 changed files with 2 additions and 1 deletions
|
@ -1320,7 +1320,8 @@ impl RtpBaseDepay2 {
|
|||
pt,
|
||||
ext_seqnum,
|
||||
ext_rtptime,
|
||||
})
|
||||
});
|
||||
state.last_used_ext_seqnum = None;
|
||||
}
|
||||
|
||||
// Remember the initial PTS/rtp_time mapping if old-style RTSP caps are used.
|
||||
|
|
Loading…
Reference in a new issue