mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 05:56:31 +00:00
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:
parent
fcd5faf825
commit
c84a427f7b
2 changed files with 8 additions and 2 deletions
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue