vaapiplugin: fix gst_vaapi_ensure_display() to use system defaults.

This ensures the display name provided to gst_vaapi_display_*_new()
maps to the system defaults, instead of forcing "" that could be different
from the current DISPLAY name.
This commit is contained in:
Gwenole Beauchesne 2012-01-11 14:13:06 +01:00
parent b7e5a48e5e
commit 6b03d30162

View file

@ -62,9 +62,9 @@ gst_vaapi_ensure_display (gpointer element, GstVaapiDisplay **display)
/* If no neighboor, or application not interested, use system default */
if (!*display)
#if USE_VAAPI_GLX
*display = gst_vaapi_display_glx_new ("");
*display = gst_vaapi_display_glx_new (NULL);
#else
*display = gst_vaapi_display_x11_new ("");
*display = gst_vaapi_display_x11_new (NULL);
#endif
/* FIXME allocator should return NULL in case of failure */