glupload: Promote fixate caps results print to info

And include the input caps. The idea is that this info is
often among the most relevant and having it on INFO level
thus allows to avoid the more noisy DEBUG one.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8981>
This commit is contained in:
Robert Mader 2025-03-15 16:55:47 +01:00 committed by GStreamer Marge Bot
parent 635e0ad5c1
commit 31660c3ad2

View File

@ -3456,6 +3456,8 @@ gst_gl_upload_fixate_caps (GstGLUpload * upload, GstPadDirection direction,
ret_caps = gst_caps_fixate (othercaps); ret_caps = gst_caps_fixate (othercaps);
out: out:
GST_DEBUG_OBJECT (upload, "Fixate return %" GST_PTR_FORMAT, ret_caps); GST_INFO_OBJECT (upload, "Fixate return %" GST_PTR_FORMAT " using caps %"
GST_PTR_FORMAT ", direction is %s.", ret_caps, caps,
direction == GST_PAD_SRC ? "src" : "sink");
return ret_caps; return ret_caps;
} }