mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 19:41:00 +00:00
rtpav1depay: Don't push stale temporal delimiters downstream
Only push them downstream once a complete OBU was assembled. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1367>
This commit is contained in:
parent
1f5e9a9335
commit
829469d0fe
1 changed files with 1 additions and 1 deletions
|
@ -353,7 +353,7 @@ impl RTPAv1Depay {
|
|||
}
|
||||
|
||||
// now push all the complete OBUs
|
||||
let buffer = if !ready_obus.is_empty() {
|
||||
let buffer = if !ready_obus.is_empty() && ready_obus != TEMPORAL_DELIMITER {
|
||||
gst::log!(
|
||||
CAT,
|
||||
imp: self,
|
||||
|
|
Loading…
Reference in a new issue