mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
cogmse: fix pad leaks
This commit is contained in:
parent
76a481c726
commit
409816b5ba
1 changed files with 3 additions and 0 deletions
|
@ -203,6 +203,9 @@ gst_mse_finalize (GObject * object)
|
|||
{
|
||||
GstMSE *fs = GST_MSE (object);
|
||||
|
||||
gst_object_unref (fs->srcpad);
|
||||
gst_object_unref (fs->sinkpad_ref);
|
||||
gst_object_unref (fs->sinkpad_test);
|
||||
g_mutex_free (fs->lock);
|
||||
g_cond_free (fs->cond);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue