glupload: Remove debug output from gst_gl_upload_transform_caps()
authorSebastian Dröge <sebastian@centricular.com>
Wed, 29 Jul 2015 18:10:57 +0000 (19:10 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Wed, 29 Jul 2015 18:11:58 +0000 (19:11 +0100)
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

index ff4b24ad9dc354ce186b7d416e1bcf3ea7ba9a4b..9374c7ae6f1ecce4fba7b8d6a929f5be3191ed09 100644 (file)
@@ -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;