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:
parent
43e5eaeda1
commit
801189c02f
@ -283,12 +283,14 @@ gst_msdk_context_new_with_parent (GstMsdkContext * parent)
|
|||||||
status = MFXCloneSession (parent_priv->session, &priv->session);
|
status = MFXCloneSession (parent_priv->session, &priv->session);
|
||||||
if (status != MFX_ERR_NONE) {
|
if (status != MFX_ERR_NONE) {
|
||||||
GST_ERROR ("Failed to clone mfx session");
|
GST_ERROR ("Failed to clone mfx session");
|
||||||
|
g_object_unref (obj);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
status = MFXJoinSession (parent_priv->session, priv->session);
|
status = MFXJoinSession (parent_priv->session, priv->session);
|
||||||
if (status != MFX_ERR_NONE) {
|
if (status != MFX_ERR_NONE) {
|
||||||
GST_ERROR ("Failed to join mfx session");
|
GST_ERROR ("Failed to join mfx session");
|
||||||
|
g_object_unref (obj);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user