msdkenc: remove unneeded label
authorHaihao Xiang <haihao.xiang@intel.com>
Mon, 16 Sep 2019 02:52:53 +0000 (10:52 +0800)
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>
Mon, 16 Sep 2019 10:09:00 +0000 (10:09 +0000)
sys/msdk/gstmsdkenc.c

index 1b926b8..df600e5 100644 (file)
@@ -330,7 +330,7 @@ gst_msdkenc_init_encoder (GstMsdkEnc * thiz)
     if (status < MFX_ERR_NONE) {
       GST_ERROR_OBJECT (thiz, "Video VPP Query failed (%s)",
           msdk_status_to_string (status));
-      goto no_vpp;
+      goto failed;
     } else if (status > MFX_ERR_NONE) {
       GST_WARNING_OBJECT (thiz, "Video VPP Query returned: %s",
           msdk_status_to_string (status));
@@ -340,7 +340,7 @@ gst_msdkenc_init_encoder (GstMsdkEnc * thiz)
     if (status < MFX_ERR_NONE) {
       GST_ERROR_OBJECT (thiz, "VPP Query IO surfaces failed (%s)",
           msdk_status_to_string (status));
-      goto no_vpp;
+      goto failed;
     } else if (status > MFX_ERR_NONE) {
       GST_WARNING_OBJECT (thiz, "VPP Query IO surfaces returned: %s",
           msdk_status_to_string (status));
@@ -532,7 +532,6 @@ gst_msdkenc_init_encoder (GstMsdkEnc * thiz)
 no_vpp_free_resource:
   if (thiz->use_video_memory)
     gst_msdk_frame_free (thiz->context, &thiz->vpp_alloc_resp);
-no_vpp:
 failed:
   GST_OBJECT_UNLOCK (thiz);
   return FALSE;