msdk: correct the error message

It is VPP session instead of Encoder session
This commit is contained in:
Haihao Xiang 2018-12-12 13:45:34 +08:00 committed by Víctor Manuel Jáquez Leal
parent 718b7d0b5d
commit 51dc388783

View file

@ -754,7 +754,7 @@ gst_msdkvpp_close (GstMsdkVPP * thiz)
GST_DEBUG_OBJECT (thiz, "Closing VPP 0x%p", thiz->context);
status = MFXVideoVPP_Close (gst_msdk_context_get_session (thiz->context));
if (status != MFX_ERR_NONE && status != MFX_ERR_NOT_INITIALIZED) {
GST_WARNING_OBJECT (thiz, "Encoder close failed (%s)",
GST_WARNING_OBJECT (thiz, "VPP close failed (%s)",
msdk_status_to_string (status));
}