libs/gst/base/gstbasesrc.c: Change some GST_ERROR_OBJECT that aren't really errors to
authorTim-Philipp Müller <tim@centricular.net>
Fri, 5 Jan 2007 11:57:49 +0000 (11:57 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Fri, 5 Jan 2007 11:57:49 +0000 (11:57 +0000)
Original commit message from CVS:
* libs/gst/base/gstbasesrc.c: (gst_base_src_activate_push):
Change some GST_ERROR_OBJECT that aren't really errors to
GST_WARNING_OBJECT in order to reduce terminal spam.

ChangeLog
libs/gst/base/gstbasesrc.c

index c3cfade..732389a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * libs/gst/base/gstbasesrc.c: (gst_base_src_activate_push):
+         Change some GST_ERROR_OBJECT that aren't really errors to
+         GST_WARNING_OBJECT in order to reduce terminal spam.
+
 2007-01-04  Stefan Kost  <ensonic@users.sf.net>
 
        * tests/check/Makefile.am:
index a60c07e..e1d015e 100644 (file)
@@ -1930,12 +1930,12 @@ gst_base_src_activate_push (GstPad * pad, gboolean active)
   /* ERRORS */
 no_push_activation:
   {
-    GST_ERROR_OBJECT (basesrc, "Subclass disabled push-mode activation");
+    GST_WARNING_OBJECT (basesrc, "Subclass disabled push-mode activation");
     return FALSE;
   }
 error_start:
   {
-    GST_ERROR_OBJECT (basesrc, "Failed to start in push mode");
+    GST_WARNING_OBJECT (basesrc, "Failed to start in push mode");
     return FALSE;
   }
 seek_failed: