summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2018-11-13 21:17:41 +0100
committerMathieu Duponchelle <mduponchelle1@gmail.com>2019-04-05 00:28:48 +0000
commit62b240eb4e1561c677088a5c1fe53075d0ef7a20 (patch)
tree8d7515df38b45a10766c5465bfcd7dcbcac0806d
parent9c3816830cfd2e1b609bbc9fc91730d6b612d6a8 (diff)
downloadgstreamer-plugins-bad-62b240eb4e1561c677088a5c1fe53075d0ef7a20.tar.gz
rtponviftimestamp: buffer without PTS or DTS is not an error.
For example, when plugged after rtpgstpay, serialized events will have neither.
-rw-r--r--gst/onvif/gstrtponviftimestamp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/onvif/gstrtponviftimestamp.c b/gst/onvif/gstrtponviftimestamp.c
index b7a7e8ebe..08d4a3c54 100644
--- a/gst/onvif/gstrtponviftimestamp.c
+++ b/gst/onvif/gstrtponviftimestamp.c
@@ -525,7 +525,7 @@ handle_buffer (GstRtpOnvifTimestamp * self, GstBuffer * buf)
time = gst_segment_to_stream_time (&self->segment, GST_FORMAT_TIME,
GST_BUFFER_PTS (buf));
} else {
- GST_ERROR_OBJECT (self,
+ GST_INFO_OBJECT (self,
"Buffer doesn't contain any valid DTS or PTS timestamp");
goto done;
}