msdk: dec: rename the function to what it means more exactly.
authorHyunjun Ko <zzoon@igalia.com>
Mon, 2 Apr 2018 23:49:59 +0000 (15:49 -0800)
committerSreerenj Balachandran <sreerenj.balachandran@intel.com>
Mon, 2 Apr 2018 23:55:55 +0000 (15:55 -0800)
https://bugzilla.gnome.org/show_bug.cgi?id=793707

sys/msdk/gstmsdkdec.c

index f7d26003c759724830651854c6530367d09a4a4c..97c05f7e3dffb4235e36cd5ee8bf3cbe13bb8dda 100644 (file)
@@ -377,7 +377,7 @@ _gst_caps_has_feature (const GstCaps * caps, const gchar * feature)
 }
 
 static gboolean
-gst_msdk_find_preferred_caps_feature (GstMsdkDec * thiz, const char *feature)
+srcpad_can_dmabuf (GstMsdkDec * thiz)
 {
   gboolean ret = FALSE;
   GstCaps *caps, *out_caps;
@@ -394,7 +394,7 @@ gst_msdk_find_preferred_caps_feature (GstMsdkDec * thiz, const char *feature)
       || out_caps == caps)
     goto done;
 
-  if (_gst_caps_has_feature (out_caps, feature))
+  if (_gst_caps_has_feature (out_caps, GST_CAPS_FEATURE_MEMORY_DMABUF))
     ret = TRUE;
 
 done:
@@ -426,8 +426,7 @@ gst_msdkdec_set_src_caps (GstMsdkDec * thiz)
     gst_caps_unref (output_state->caps);
   output_state->caps = gst_video_info_to_caps (&output_state->info);
 
-  if (gst_msdk_find_preferred_caps_feature (thiz,
-          GST_CAPS_FEATURE_MEMORY_DMABUF))
+  if (srcpad_can_dmabuf (thiz))
     gst_caps_set_features (output_state->caps, 0,
         gst_caps_features_new (GST_CAPS_FEATURE_MEMORY_DMABUF, NULL));