glupload: remove unsed convert field in private struct
authorMatthew Waters <matthew@centricular.com>
Mon, 2 Feb 2015 13:13:07 +0000 (00:13 +1100)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 9 Dec 2017 19:31:54 +0000 (19:31 +0000)
gst-libs/gst/gl/gstglupload.c

index 356ad47..2f22ff3 100644 (file)
@@ -59,8 +59,6 @@ struct _GstGLUploadPrivate
   GstCaps *in_caps;
   GstCaps *out_caps;
 
-  GstGLColorConvert *convert;
-
   GstBuffer *outbuf;
 
   /* all method impl pointers */
@@ -783,11 +781,6 @@ gst_gl_upload_finalize (GObject * object)
     upload->context = NULL;
   }
 
-  if (upload->priv->convert) {
-    gst_object_unref (upload->priv->convert);
-    upload->priv->convert = NULL;
-  }
-
   if (upload->priv->in_caps) {
     gst_caps_unref (upload->priv->in_caps);
     upload->priv->in_caps = NULL;