mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +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) {
|
if (direction == GST_PAD_SRC) {
|
||||||
/* @TODO: we can do better */
|
/* @TODO: we can do better */
|
||||||
othercaps = gst_caps_fixate (othercaps);
|
outcaps = gst_caps_fixate (othercaps);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
||||||
g_mutex_lock (&postproc->postproc_lock);
|
g_mutex_lock (&postproc->postproc_lock);
|
||||||
if ((outcaps = gst_vaapipostproc_fixate_srccaps (postproc, caps, othercaps)))
|
outcaps = gst_vaapipostproc_fixate_srccaps (postproc, caps, othercaps);
|
||||||
gst_caps_replace (&othercaps, outcaps);
|
|
||||||
g_mutex_unlock (&postproc->postproc_lock);
|
g_mutex_unlock (&postproc->postproc_lock);
|
||||||
|
|
||||||
/* set passthrough according to caps changes or filter changes */
|
/* set passthrough according to caps changes or filter changes */
|
||||||
gst_vaapipostproc_set_passthrough (trans);
|
gst_vaapipostproc_set_passthrough (trans);
|
||||||
|
|
||||||
done:
|
done:
|
||||||
GST_DEBUG_OBJECT (trans, "fixated othercaps to %" GST_PTR_FORMAT, othercaps);
|
GST_DEBUG_OBJECT (trans, "fixated othercaps to %" GST_PTR_FORMAT, outcaps);
|
||||||
if (outcaps)
|
gst_caps_unref (othercaps);
|
||||||
gst_caps_unref (outcaps);
|
|
||||||
|
|
||||||
return othercaps;
|
return outcaps;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
|
Loading…
Reference in a new issue