mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-25 16:48:11 +00:00
rtponviftimestamp: buffer without PTS or DTS is not an error.
For example, when plugged after rtpgstpay, serialized events will have neither.
This commit is contained in:
parent
9c3816830c
commit
62b240eb4e
1 changed files with 1 additions and 1 deletions
|
@ -525,7 +525,7 @@ handle_buffer (GstRtpOnvifTimestamp * self, GstBuffer * buf)
|
||||||
time = gst_segment_to_stream_time (&self->segment, GST_FORMAT_TIME,
|
time = gst_segment_to_stream_time (&self->segment, GST_FORMAT_TIME,
|
||||||
GST_BUFFER_PTS (buf));
|
GST_BUFFER_PTS (buf));
|
||||||
} else {
|
} else {
|
||||||
GST_ERROR_OBJECT (self,
|
GST_INFO_OBJECT (self,
|
||||||
"Buffer doesn't contain any valid DTS or PTS timestamp");
|
"Buffer doesn't contain any valid DTS or PTS timestamp");
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue