msdk: decrease the reference count of object

Otherwise there are reference leaks if failed to clone or join a
mfx session
This commit is contained in:
Haihao Xiang 2018-12-11 15:54:51 +08:00 committed by Víctor Manuel Jáquez Leal
parent 43e5eaeda1
commit 801189c02f

View file

@ -283,12 +283,14 @@ gst_msdk_context_new_with_parent (GstMsdkContext * parent)
status = MFXCloneSession (parent_priv->session, &priv->session);
if (status != MFX_ERR_NONE) {
GST_ERROR ("Failed to clone mfx session");
g_object_unref (obj);
return NULL;
}
status = MFXJoinSession (parent_priv->session, priv->session);
if (status != MFX_ERR_NONE) {
GST_ERROR ("Failed to join mfx session");
g_object_unref (obj);
return NULL;
}