vtenc: Avoid leaking caps object and its copy
authorSebastian Rasmussen <sebras@hotmail.com>
Sat, 9 Aug 2014 11:20:41 +0000 (13:20 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Mon, 11 Aug 2014 06:48:52 +0000 (08:48 +0200)
gst_pad_get_pad_template_caps() returns a reference which is unreferenced,
so creating a copy using gst_caps_copy() results in a reference leak. Also
the caps are pushed as an event downstream, but this doesn't consume the
caps so it must still be unreferenced.

Fixes https://bugzilla.gnome.org/show_bug.cgi?id=734534

sys/applemedia/vtenc.c

index 7dee340..59e57bb 100644 (file)
@@ -425,7 +425,8 @@ gst_vtenc_negotiate_downstream (GstVTEnc * self, CMSampleBufferRef sbuf)
     return TRUE;
   }
 
-  caps = gst_caps_copy (gst_pad_get_pad_template_caps (self->srcpad));
+  caps = gst_pad_get_pad_template_caps (self->srcpad);
+  caps = gst_caps_make_writable (caps);
   s = gst_caps_get_structure (caps, 0);
   gst_structure_set (s,
       "width", G_TYPE_INT, self->negotiated_width,
@@ -459,6 +460,7 @@ gst_vtenc_negotiate_downstream (GstVTEnc * self, CMSampleBufferRef sbuf)
   }
 
   result = gst_pad_push_event (self->srcpad, gst_event_new_caps (caps));
+  gst_caps_unref (caps);
 
   self->caps_width = self->negotiated_width;
   self->caps_height = self->negotiated_height;