mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
vaapipostproc: use scoped variable for return value
Instead of reusing a parameter variable for the return value of gst_vaapipostproc_fixate_caps(), this patch uses the function scoped pointer. Thus, the code is cleaner. https://bugzilla.gnome.org/show_bug.cgi?id=785706
This commit is contained in:
parent
8fee85ecaa
commit
f6fc1774b9
1 changed files with 5 additions and 7 deletions
|
@ -1158,24 +1158,22 @@ gst_vaapipostproc_fixate_caps (GstBaseTransform * trans,
|
|||
|
||||
if (direction == GST_PAD_SRC) {
|
||||
/* @TODO: we can do better */
|
||||
othercaps = gst_caps_fixate (othercaps);
|
||||
outcaps = gst_caps_fixate (othercaps);
|
||||
goto done;
|
||||
}
|
||||
|
||||
g_mutex_lock (&postproc->postproc_lock);
|
||||
if ((outcaps = gst_vaapipostproc_fixate_srccaps (postproc, caps, othercaps)))
|
||||
gst_caps_replace (&othercaps, outcaps);
|
||||
outcaps = gst_vaapipostproc_fixate_srccaps (postproc, caps, othercaps);
|
||||
g_mutex_unlock (&postproc->postproc_lock);
|
||||
|
||||
/* set passthrough according to caps changes or filter changes */
|
||||
gst_vaapipostproc_set_passthrough (trans);
|
||||
|
||||
done:
|
||||
GST_DEBUG_OBJECT (trans, "fixated othercaps to %" GST_PTR_FORMAT, othercaps);
|
||||
if (outcaps)
|
||||
gst_caps_unref (outcaps);
|
||||
GST_DEBUG_OBJECT (trans, "fixated othercaps to %" GST_PTR_FORMAT, outcaps);
|
||||
gst_caps_unref (othercaps);
|
||||
|
||||
return othercaps;
|
||||
return outcaps;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue