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
Yeongjin Jeong
gst-plugins-bad
Commits
fc834b42
Commit
fc834b42
authored
May 09, 2017
by
Carlos Rafael Giani
Committed by
Matthew Waters
May 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gl/viv-fb: Fix user-choice string comparisons
https://bugzilla.gnome.org/show_bug.cgi?id=782921
parent
f98403ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
gst-libs/gst/gl/gstgldisplay.c
gst-libs/gst/gl/gstgldisplay.c
+1
-1
gst-libs/gst/gl/gstglwindow.c
gst-libs/gst/gl/gstglwindow.c
+1
-1
No files found.
gst-libs/gst/gl/gstgldisplay.c
View file @
fc834b42
...
...
@@ -301,7 +301,7 @@ gst_gl_display_new (void)
display
=
GST_GL_DISPLAY
(
gst_gl_display_wayland_new
(
NULL
));
#endif
#if GST_GL_HAVE_WINDOW_VIV_FB
if
(
!
display
&&
(
!
user_choice
||
g_strstr_len
(
user_choice
,
2
,
"viv-fb"
)))
{
if
(
!
display
&&
(
!
user_choice
||
g_strstr_len
(
user_choice
,
6
,
"viv-fb"
)))
{
const
gchar
*
disp_idx_str
=
NULL
;
gint
disp_idx
=
0
;
disp_idx_str
=
g_getenv
(
"GST_GL_VIV_FB"
);
...
...
gst-libs/gst/gl/gstglwindow.c
View file @
fc834b42
...
...
@@ -275,7 +275,7 @@ gst_gl_window_new (GstGLDisplay * display)
window
=
GST_GL_WINDOW
(
gst_gl_window_eagl_new
(
display
));
#endif
#if GST_GL_HAVE_WINDOW_VIV_FB
if
(
!
window
&&
(
!
user_choice
||
g_strstr_len
(
user_choice
,
2
,
"viv-fb"
)))
if
(
!
window
&&
(
!
user_choice
||
g_strstr_len
(
user_choice
,
6
,
"viv-fb"
)))
window
=
GST_GL_WINDOW
(
gst_gl_window_viv_fb_egl_new
(
display
));
#endif
...
...
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