mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
winks: adjust a couple of logging severities
Should clearly not be considered warnings, as they're quite common.
This commit is contained in:
parent
0e4e351b83
commit
b88b25ab9b
2 changed files with 2 additions and 2 deletions
|
@ -1000,7 +1000,7 @@ gst_ks_video_device_read_frame (GstKsVideoDevice * self, guint8 * buf,
|
|||
if (G_LIKELY (GST_CLOCK_TIME_IS_VALID (timestamp))) {
|
||||
if (G_UNLIKELY (GST_CLOCK_TIME_IS_VALID (priv->last_timestamp) &&
|
||||
timestamp < priv->last_timestamp)) {
|
||||
GST_WARNING ("got an old frame (last_timestamp=%" GST_TIME_FORMAT
|
||||
GST_INFO ("got an old frame (last_timestamp=%" GST_TIME_FORMAT
|
||||
", timestamp=%" GST_TIME_FORMAT ")",
|
||||
GST_TIME_ARGS (priv->last_timestamp),
|
||||
GST_TIME_ARGS (timestamp));
|
||||
|
|
|
@ -809,7 +809,7 @@ gst_ks_video_src_timestamp_buffer (GstKsVideoSrc * self, GstBuffer * buf,
|
|||
/* REVISIT: I've seen this happen with the GstSystemClock on Windows,
|
||||
* scary... */
|
||||
if (timestamp < priv->prev_ts) {
|
||||
GST_WARNING_OBJECT (self, "clock is ticking backwards");
|
||||
GST_INFO_OBJECT (self, "clock is ticking backwards");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue