mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 20:25:25 +00:00
gl: display: demote error level at display creation error
https://bugzilla.gnome.org/show_bug.cgi?id=791391
This commit is contained in:
parent
cbeebfea49
commit
c0d87b5dd3
3 changed files with 3 additions and 3 deletions
|
@ -185,7 +185,7 @@ gst_gl_display_egl_new (void)
|
||||||
gst_gl_display_egl_get_from_native (GST_GL_DISPLAY_TYPE_ANY, 0);
|
gst_gl_display_egl_get_from_native (GST_GL_DISPLAY_TYPE_ANY, 0);
|
||||||
|
|
||||||
if (!ret->display) {
|
if (!ret->display) {
|
||||||
GST_ERROR ("Failed to open EGL display connection");
|
GST_INFO ("Failed to open EGL display connection");
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
|
@ -128,7 +128,7 @@ gst_gl_display_wayland_new (const gchar * name)
|
||||||
GST_ERROR ("Failed to open Wayland display connection with name \'%s\'",
|
GST_ERROR ("Failed to open Wayland display connection with name \'%s\'",
|
||||||
name);
|
name);
|
||||||
} else {
|
} else {
|
||||||
GST_ERROR ("Failed to open Wayland display connection.");
|
GST_INFO ("Failed to open Wayland display connection.");
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -95,7 +95,7 @@ gst_gl_display_x11_new (const gchar * name)
|
||||||
ret->display = XOpenDisplay (ret->name);
|
ret->display = XOpenDisplay (ret->name);
|
||||||
|
|
||||||
if (!ret->display) {
|
if (!ret->display) {
|
||||||
GST_ERROR ("Failed to open X11 display connection with name, \'%s\'", name);
|
GST_INFO ("Failed to open X11 display connection with name, \'%s\'", name);
|
||||||
gst_object_unref (ret);
|
gst_object_unref (ret);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue