summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2017-12-08 14:46:35 +0100
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2017-12-11 22:47:01 +0100
commitc0d87b5dd3565cc9bd086e36ffa323d7131052a4 (patch)
tree1646b0eb0bd9b74f3fe8079aa934da2261f3be5c /gst-libs
parentcbeebfea4927b474d56a40f446af67f3230ef6fe (diff)
downloadgstreamer-plugins-bad-c0d87b5dd3565cc9bd086e36ffa323d7131052a4.tar.gz
gl: display: demote error level at display creation error
https://bugzilla.gnome.org/show_bug.cgi?id=791391
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/gl/egl/gstgldisplay_egl.c2
-rw-r--r--gst-libs/gst/gl/wayland/gstgldisplay_wayland.c2
-rw-r--r--gst-libs/gst/gl/x11/gstgldisplay_x11.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/gst-libs/gst/gl/egl/gstgldisplay_egl.c b/gst-libs/gst/gl/egl/gstgldisplay_egl.c
index 83b7b41bd..448899ccc 100644
--- a/gst-libs/gst/gl/egl/gstgldisplay_egl.c
+++ b/gst-libs/gst/gl/egl/gstgldisplay_egl.c
@@ -185,7 +185,7 @@ gst_gl_display_egl_new (void)
gst_gl_display_egl_get_from_native (GST_GL_DISPLAY_TYPE_ANY, 0);
if (!ret->display) {
- GST_ERROR ("Failed to open EGL display connection");
+ GST_INFO ("Failed to open EGL display connection");
}
return ret;
diff --git a/gst-libs/gst/gl/wayland/gstgldisplay_wayland.c b/gst-libs/gst/gl/wayland/gstgldisplay_wayland.c
index ed974a88c..054dcf432 100644
--- a/gst-libs/gst/gl/wayland/gstgldisplay_wayland.c
+++ b/gst-libs/gst/gl/wayland/gstgldisplay_wayland.c
@@ -128,7 +128,7 @@ gst_gl_display_wayland_new (const gchar * name)
GST_ERROR ("Failed to open Wayland display connection with name \'%s\'",
name);
} else {
- GST_ERROR ("Failed to open Wayland display connection.");
+ GST_INFO ("Failed to open Wayland display connection.");
}
return NULL;
}
diff --git a/gst-libs/gst/gl/x11/gstgldisplay_x11.c b/gst-libs/gst/gl/x11/gstgldisplay_x11.c
index 07c296214..00cdd3f9a 100644
--- a/gst-libs/gst/gl/x11/gstgldisplay_x11.c
+++ b/gst-libs/gst/gl/x11/gstgldisplay_x11.c
@@ -95,7 +95,7 @@ gst_gl_display_x11_new (const gchar * name)
ret->display = XOpenDisplay (ret->name);
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);
return NULL;
}