mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 19:42:26 +00:00
basesrc: demote error to warning
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.
This commit is contained in:
parent
1de533735b
commit
74adc33982
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue