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:
Stefan Sauer 2014-01-06 21:04:32 +01:00
parent 1de533735b
commit 74adc33982

View file

@ -3356,7 +3356,8 @@ no_get_range:
{ {
GST_PAD_STREAM_UNLOCK (basesrc->srcpad); GST_PAD_STREAM_UNLOCK (basesrc->srcpad);
gst_base_src_stop (basesrc); 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; ret = GST_FLOW_ERROR;
goto error; goto error;
} }