va: filter: don't destroy pipeline buffer
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>
Tue, 2 Feb 2021 15:23:28 +0000 (16:23 +0100)
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>
Fri, 5 Feb 2021 15:54:07 +0000 (16:54 +0100)
This was only required by i915 driver before libva-2.0 because it didn't
conform.

Also changes the way _destroy_filters() is called, now inside a locked block, so
it must not lock in it.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2006>

sys/va/gstvafilter.c

index 5e0820ee8b24e2a10ca6ea92e8a49e92dd186ab5..03243f5801961ae33615586953e7f87f88cabc8d 100644 (file)
@@ -902,7 +902,7 @@ fail:
 }
 
 static gboolean
-_destroy_filters (GstVaFilter * self)
+_destroy_filters_unlocked (GstVaFilter * self)
 {
   VABufferID buffer;
   VADisplay dpy;
@@ -910,14 +910,10 @@ _destroy_filters (GstVaFilter * self)
   gboolean ret = TRUE;
   guint i;
 
-  if (!self->filters)
-    return TRUE;
-
   GST_TRACE_OBJECT (self, "Destroy filter buffers");
 
   dpy = gst_va_display_get_va_dpy (self->display);
 
-  GST_OBJECT_LOCK (self);
   for (i = 0; i < self->filters->len; i++) {
     buffer = g_array_index (self->filters, VABufferID, i);
 
@@ -926,12 +922,12 @@ _destroy_filters (GstVaFilter * self)
     gst_va_display_unlock (self->display);
     if (status != VA_STATUS_SUCCESS) {
       ret = FALSE;
-      GST_WARNING ("Failed to destroy filter buffer: %s", vaErrorStr (status));
+      GST_WARNING_OBJECT (self, "Failed to destroy filter buffer: %s",
+          vaErrorStr (status));
     }
   }
 
   self->filters = g_array_set_size (self->filters, 0);
-  GST_OBJECT_UNLOCK (self);
 
   return ret;
 }
@@ -1102,22 +1098,13 @@ gst_va_filter_convert_surface (GstVaFilter * self, VASurfaceID in_surface,
   ret = TRUE;
 
 bail:
-  gst_va_display_lock (self->display);
-  status = vaDestroyBuffer (dpy, buffer);
-  gst_va_display_unlock (self->display);
-  if (status != VA_STATUS_SUCCESS) {
-    ret = FALSE;
-    GST_WARNING ("Failed to destroy filter buffer: %s", vaErrorStr (status));
-  }
-
   GST_OBJECT_LOCK (self);
-  if (self->filters)
+  if (self->filters) {
     g_array_unref (self->filters);
+    _destroy_filters_unlocked (self);
+  }
   GST_OBJECT_UNLOCK (self);
 
-  if (!_destroy_filters (self))
-    return FALSE;
-
   return ret;
 
 fail_end_pic: