gl/window: fix string length check for eagl
authorMatthew Waters <ystreet00@gmail.com>
Tue, 6 May 2014 06:39:55 +0000 (16:39 +1000)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 9 Dec 2017 19:31:39 +0000 (19:31 +0000)
gst-libs/gst/gl/gstglwindow.c

index 49ab3ca..84dbd31 100644 (file)
@@ -182,7 +182,7 @@ gst_gl_window_new (GstGLDisplay * display)
     window = GST_GL_WINDOW (gst_gl_window_android_egl_new ());
 #endif
 #if GST_GL_HAVE_WINDOW_EAGL
-  if (!window && (!user_choice || g_strstr_len (user_choice, 7, "eagl")))
+  if (!window && (!user_choice || g_strstr_len (user_choice, 4, "eagl")))
     window = GST_GL_WINDOW (gst_gl_window_eagl_new ());
 #endif
   if (!window) {