summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorOle André Vadla Ravnås <oravnas@cisco.com>2010-10-28 16:14:34 +0200
committerOle André Vadla Ravnås <oravnas@cisco.com>2010-10-28 16:14:34 +0200
commitb88b25ab9b20101ad4a8c49781ff27cc7cd6fc04 (patch)
tree85040b6a36e000c00607e6163f0eb3fc561a6b32 /sys
parent0e4e351b83401ae8dae062ffda390a61e5c020a6 (diff)
winks: adjust a couple of logging severities
Should clearly not be considered warnings, as they're quite common.
Diffstat (limited to 'sys')
-rw-r--r--sys/winks/gstksvideodevice.c2
-rw-r--r--sys/winks/gstksvideosrc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/winks/gstksvideodevice.c b/sys/winks/gstksvideodevice.c
index db04d5216..2f075427e 100644
--- a/sys/winks/gstksvideodevice.c
+++ b/sys/winks/gstksvideodevice.c
@@ -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));
diff --git a/sys/winks/gstksvideosrc.c b/sys/winks/gstksvideosrc.c
index e922aed18..16c19f226 100644
--- a/sys/winks/gstksvideosrc.c
+++ b/sys/winks/gstksvideosrc.c
@@ -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;
}