libs/gst/base/gstbasesrc.c: Change some GST_ERROR_OBJECT that aren't really errors to

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.
This commit is contained in:
Tim-Philipp Müller 2007-01-05 11:57:49 +00:00
parent fcd5faf825
commit c84a427f7b
2 changed files with 8 additions and 2 deletions

View file

@ -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:

View 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: