vaapivideocontext: rename context structure
authorVíctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Mon, 2 Nov 2015 17:20:07 +0000 (18:20 +0100)
committerVíctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Mon, 9 Nov 2015 15:18:19 +0000 (16:18 +0100)
The context structure is named "display" which is too generic. The contrary
happens, for example, with GstGL, what uses the same name as the context, and
its logs make more sense.

This patch renames the context structure with the same name as the
context, thus GST_PTR_FORMAT can pretty print it.

https://bugzilla.gnome.org/show_bug.cgi?id=757598

gst/vaapi/gstvaapivideocontext.c

index 534477555fe215f37ad53379de18034465250d86..36737a0b2de783f0b1c9a3176143d4a82e8b4fa0 100644 (file)
@@ -61,8 +61,8 @@ gst_vaapi_video_context_new_with_display (GstVaapiDisplay * display,
 
   context = gst_context_new (GST_VAAPI_DISPLAY_CONTEXT_TYPE_NAME, persistent);
   structure = gst_context_writable_structure (context);
-  gst_structure_set (structure, "display", GST_VAAPI_TYPE_DISPLAY,
-      display, NULL);
+  gst_structure_set (structure, GST_VAAPI_DISPLAY_CONTEXT_TYPE_NAME,
+      GST_VAAPI_TYPE_DISPLAY, display, NULL);
   return context;
 }
 
@@ -77,8 +77,8 @@ gst_vaapi_video_context_get_display (GstContext * context,
           GST_VAAPI_DISPLAY_CONTEXT_TYPE_NAME) == 0, FALSE);
 
   structure = gst_context_get_structure (context);
-  return gst_structure_get (structure, "display", GST_VAAPI_TYPE_DISPLAY,
-      display_ptr, NULL);
+  return gst_structure_get (structure, GST_VAAPI_DISPLAY_CONTEXT_TYPE_NAME,
+      GST_VAAPI_TYPE_DISPLAY, display_ptr, NULL);
 }
 
 static gboolean