GNOME Bugzilla – Bug 139958
Leak in avidemux
Last modified: 2004-12-22 21:47:04 UTC
Caps are leaked in the avidemux. They should be freed in gst_avi_demux_reset(). for (i = 0; i < avi->num_streams; i++) { g_free (avi->stream[i].strh); gst_element_remove_pad (GST_ELEMENT (avi), avi->stream[i].pad); gst_caps_free (avi->stream[i].caps); }
Created attachment 26628 [details] [review] Patch to fix caps leak
Fixed in CVS, thanks.