winks: adjust a couple of logging severities
authorOle André Vadla Ravnås <oravnas@cisco.com>
Thu, 28 Oct 2010 14:14:34 +0000 (16:14 +0200)
committerOle André Vadla Ravnås <oravnas@cisco.com>
Thu, 28 Oct 2010 14:14:34 +0000 (16:14 +0200)
Should clearly not be considered warnings, as they're quite common.

sys/winks/gstksvideodevice.c
sys/winks/gstksvideosrc.c

index db04d52..2f07542 100644 (file)
@@ -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));
index e922aed..16c19f2 100644 (file)
@@ -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;
       }