Change wayland default res to 1024x768

Change wayland backend default window resolution
from 320x240 to 1024x768

Upstream Status: Inappropriate [i.MX specific]

Signed-off-by: Jian <Jian.Li@freescale.com>
diff --git a/gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.c b/gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.c
index 3852818..84025e4 100644
--- a/gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.c
+++ b/gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.c
@@ -307,13 +307,13 @@
   if (window_egl->window.window_width > 0)
     width = window_egl->window.window_width;
   else
-    width = 320;
+    width = 1024;
   window_egl->window.window_width = width;
 
   if (window_egl->window.window_height > 0)
     height = window_egl->window.window_height;
   else
-    height = 240;
+    height = 768;
   window_egl->window.window_height = height;
 
   if (!window_egl->window.native) {