From 0afd2e5c425eb1538b5c470c514306194acc19cc Mon Sep 17 00:00:00 2001 From: Gwenole Beauchesne Date: Thu, 5 Jan 2012 14:50:26 +0100 Subject: [PATCH] context: avoid self reference loops with surfaces. --- gst-libs/gst/vaapi/gstvaapicontext.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/vaapi/gstvaapicontext.c b/gst-libs/gst/vaapi/gstvaapicontext.c index 29654cd..f982fe0 100644 --- a/gst-libs/gst/vaapi/gstvaapicontext.c +++ b/gst-libs/gst/vaapi/gstvaapicontext.c @@ -271,7 +271,6 @@ gst_vaapi_context_create_surfaces(GstVaapiContext *context) g_ptr_array_add(priv->surfaces, surface); if (!gst_vaapi_video_pool_add_object(priv->surfaces_pool, surface)) return FALSE; - gst_vaapi_surface_set_parent_context(surface, context); } return TRUE; } @@ -707,9 +706,16 @@ gst_vaapi_context_get_size( GstVaapiSurface * gst_vaapi_context_get_surface(GstVaapiContext *context) { + GstVaapiSurface *surface; + g_return_val_if_fail(GST_VAAPI_IS_CONTEXT(context), NULL); - return gst_vaapi_video_pool_get_object(context->priv->surfaces_pool); + surface = gst_vaapi_video_pool_get_object(context->priv->surfaces_pool); + if (!surface) + return NULL; + + gst_vaapi_surface_set_parent_context(surface, context); + return surface; } /** @@ -741,6 +747,7 @@ gst_vaapi_context_put_surface(GstVaapiContext *context, GstVaapiSurface *surface g_return_if_fail(GST_VAAPI_IS_CONTEXT(context)); g_return_if_fail(GST_VAAPI_IS_SURFACE(surface)); + gst_vaapi_surface_set_parent_context(surface, NULL); gst_vaapi_video_pool_put_object(context->priv->surfaces_pool, surface); } -- 2.7.4