mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/equalizer/gstiirequalizer.c: Unparent all bands from the equalizer when finalizing to stop leaking them.
Original commit message from CVS: * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_finalize): Unparent all bands from the equalizer when finalizing to stop leaking them.
This commit is contained in:
parent
5761e2f212
commit
6fcf22d5a3
1 changed files with 8 additions and 0 deletions
|
@ -340,6 +340,14 @@ static void
|
|||
gst_iir_equalizer_finalize (GObject * object)
|
||||
{
|
||||
GstIirEqualizer *equ = GST_IIR_EQUALIZER (object);
|
||||
gint i;
|
||||
|
||||
for (i = 0; i < equ->freq_band_count; i++) {
|
||||
if (equ->bands[i])
|
||||
gst_object_unparent (GST_OBJECT (equ->bands[i]));
|
||||
equ->bands[i] = NULL;
|
||||
}
|
||||
equ->freq_band_count = 0;
|
||||
|
||||
g_free (equ->bands);
|
||||
g_free (equ->history);
|
||||
|
|
Loading…
Reference in a new issue