From b21f01276c35d1b62775514d609196ed27d20fff Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 29 Jul 2015 19:10:57 +0100 Subject: [PATCH] glupload: Remove debug output from gst_gl_upload_transform_caps() We can't know if the GstGLUpload type is initialized at this point already, and thus our debug category might not be initialized yet... and cause an assertion here. As we don't print debug output for any of the other transform functions, let's defer this problem for now. --- gst-libs/gst/gl/gstglupload.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gst-libs/gst/gl/gstglupload.c b/gst-libs/gst/gl/gstglupload.c index ff4b24ad9..9374c7ae6 100644 --- a/gst-libs/gst/gl/gstglupload.c +++ b/gst-libs/gst/gl/gstglupload.c @@ -987,8 +987,6 @@ gst_gl_upload_transform_caps (GstGLContext * context, GstPadDirection direction, if (filter) { result = gst_caps_intersect_full (filter, tmp, GST_CAPS_INTERSECT_FIRST); - GST_LOG ("Filtering transformed caps %" GST_PTR_FORMAT " against filter %" - GST_PTR_FORMAT " yields %" GST_PTR_FORMAT, tmp, filter, result); gst_caps_unref (tmp); } else { result = tmp; -- 2.34.1