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:
Thibault Saunier 2024-01-29 16:10:38 -03:00 committed by GStreamer Marge Bot
parent e1a8ce16b4
commit 726dd5f09f

View file

@ -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;
}