Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
GStreamer
gst-plugins-base
Commits
7b8108a4
Commit
7b8108a4
authored
Dec 08, 2017
by
Víctor Manuel Jáquez Leal
Committed by
Tim-Philipp Müller
Dec 19, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gl: display: demote error level at display creation error
https://bugzilla.gnome.org/show_bug.cgi?id=791391
parent
e9b740d8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
gst-libs/gst/gl/egl/gstgldisplay_egl.c
gst-libs/gst/gl/egl/gstgldisplay_egl.c
+1
-1
gst-libs/gst/gl/wayland/gstgldisplay_wayland.c
gst-libs/gst/gl/wayland/gstgldisplay_wayland.c
+1
-1
gst-libs/gst/gl/x11/gstgldisplay_x11.c
gst-libs/gst/gl/x11/gstgldisplay_x11.c
+1
-1
No files found.
gst-libs/gst/gl/egl/gstgldisplay_egl.c
View file @
7b8108a4
...
...
@@ -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
;
...
...
gst-libs/gst/gl/wayland/gstgldisplay_wayland.c
View file @
7b8108a4
...
...
@@ -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
;
}
...
...
gst-libs/gst/gl/x11/gstgldisplay_x11.c
View file @
7b8108a4
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment