mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-01 05:39:51 +00:00
basesrc: Lower verbosity of often happening warning
decodebin(3) runs a scheduling query before pads are activated which ultimately triggers basesrc->start which will automatically call `gst_base_src_start_complete` for any source that is not marked as 'async'. This calls will harmlessly bail out in `not_activated_yet` so we should not warn in that case. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6011>
This commit is contained in:
parent
e1a8ce16b4
commit
726dd5f09f
1 changed files with 1 additions and 1 deletions
|
@ -3731,7 +3731,7 @@ not_activated_yet:
|
|||
{
|
||||
GST_PAD_STREAM_UNLOCK (basesrc->srcpad);
|
||||
gst_base_src_stop (basesrc);
|
||||
GST_WARNING_OBJECT (basesrc, "pad not activated yet");
|
||||
GST_INFO_OBJECT (basesrc, "pad not activated yet");
|
||||
ret = GST_FLOW_ERROR;
|
||||
goto error;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue