mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
Fix GstVaapiDisplay refcounting in vaapidecode.
This commit is contained in:
parent
91c4c2c6b5
commit
76661d73d1
1 changed files with 9 additions and 4 deletions
|
@ -162,10 +162,15 @@ error_commit_buffer:
|
||||||
static inline gboolean
|
static inline gboolean
|
||||||
gst_vaapidecode_ensure_display(GstVaapiDecode *decode)
|
gst_vaapidecode_ensure_display(GstVaapiDecode *decode)
|
||||||
{
|
{
|
||||||
if (!decode->display)
|
GstVaapiDisplay *display;
|
||||||
decode->display =
|
|
||||||
gst_vaapi_display_lookup_downstream(GST_ELEMENT(decode));
|
if (!decode->display) {
|
||||||
return decode->display != NULL;
|
display = gst_vaapi_display_lookup_downstream(GST_ELEMENT(decode));
|
||||||
|
if (!display)
|
||||||
|
return FALSE;
|
||||||
|
decode->display = g_object_ref(display);
|
||||||
|
}
|
||||||
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
|
Loading…
Reference in a new issue