va: utils: fix code style and wrong log message
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>
Sat, 19 Sep 2020 19:36:58 +0000 (21:36 +0200)
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Mon, 21 Sep 2020 17:07:51 +0000 (17:07 +0000)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1586>

sys/va/gstvautils.c

index 95bfaee44b33904fa840d3f7ee5a9491fb828ae7..c7a213506da19e0bb96279777d6be1bbe5bf7d63 100644 (file)
@@ -158,7 +158,7 @@ gst_va_element_propagate_display_context (GstElement * element,
   GstMessage *msg;
 
   if (!display) {
-    GST_ERROR_OBJECT (element, "Could not get GL display connection");
+    GST_ERROR_OBJECT (element, "Could not get VA display connection");
     return;
   }
 
@@ -339,10 +339,11 @@ gst_context_set_va_display (GstContext * context, GstVaDisplay * display)
 
   g_return_if_fail (context != NULL);
 
-  if (display)
+  if (display) {
     GST_CAT_LOG (GST_CAT_CONTEXT,
         "setting GstVaDisplay (%" GST_PTR_FORMAT ") on context (%"
         GST_PTR_FORMAT ")", display, context);
+  }
 
   s = gst_context_writable_structure (context);
   gst_structure_set (s, "gst-display", GST_TYPE_VA_DISPLAY, display, NULL);