From 31660c3ad28f72c2e46c3201d2a05cc8ce22ed4c Mon Sep 17 00:00:00 2001 From: Robert Mader Date: Sat, 15 Mar 2025 16:55:47 +0100 Subject: [PATCH] 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: --- subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c b/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c index 9527bfd38e..0ffb7b33d3 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c @@ -3456,6 +3456,8 @@ gst_gl_upload_fixate_caps (GstGLUpload * upload, GstPadDirection direction, ret_caps = gst_caps_fixate (othercaps); 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; }