basesrc: demote error to warning
authorStefan Sauer <ensonic@users.sf.net>
Mon, 6 Jan 2014 20:04:32 +0000 (21:04 +0100)
committerStefan Sauer <ensonic@users.sf.net>
Mon, 6 Jan 2014 20:10:33 +0000 (21:10 +0100)
This is not an error. A subclass returning FALSE for is_seekable() is one way of
saying that we can't operate in pull mode.

libs/gst/base/gstbasesrc.c

index 39dd04b..b69ac87 100644 (file)
@@ -3356,7 +3356,8 @@ no_get_range:
   {
     GST_PAD_STREAM_UNLOCK (basesrc->srcpad);
     gst_base_src_stop (basesrc);
-    GST_ERROR_OBJECT (basesrc, "Cannot operate in pull mode, stopping");
+    GST_WARNING_OBJECT (basesrc,
+        "Cannot operate in pull mode, stopping pad task");
     ret = GST_FLOW_ERROR;
     goto error;
   }