]> code.ossystems Code Review - meta-freescale.git/commitdiff
gstreamer1.0-plugins-bad: work around for no frame when imxplayer using glimagesink
authorYuqing Zhu <carol.zhu@nxp.com>
Thu, 13 Oct 2016 01:59:53 +0000 (09:59 +0800)
committerOtavio Salvador <otavio@ossystems.com.br>
Thu, 27 Oct 2016 12:36:28 +0000 (10:36 -0200)
Workaround:
Change parent window of internal_window in window_show function.

Signed-off-by: Yuqing Zhu <carol.zhu@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0006-glwindow-work-around-for-no-frame-when-imxplayer-use.patch [new file with mode: 0644]
recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend

diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0006-glwindow-work-around-for-no-frame-when-imxplayer-use.patch b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0006-glwindow-work-around-for-no-frame-when-imxplayer-use.patch
new file mode 100644 (file)
index 0000000..de53df4
--- /dev/null
@@ -0,0 +1,63 @@
+From 61b6bc77cb939a778e2ddfee68d0378680f69f71 Mon Sep 17 00:00:00 2001
+From: Haihua Hu <b55597@freescale.com>
+Date: Wed, 9 Mar 2016 13:00:39 +0800
+Subject: [PATCH 18/18] glwindow: work around for no frame when imxplayer use
+ glimagesink
+
+change parent window of internal_window in window_show function.
+
+Upstream-Status: Inappropriate [i.MX specific]
+
+Signed-off-by: Haihua Hu <b55597@freescale.com>
+Signed-off-by: Lyon Wang <lyon.wang@freescale.com>
+---
+ gst-libs/gst/gl/x11/gstglwindow_x11.c | 14 +++++++++++---
+ 1 file changed, 11 insertions(+), 3 deletions(-)
+
+diff --git a/gst-libs/gst/gl/x11/gstglwindow_x11.c b/gst-libs/gst/gl/x11/gstglwindow_x11.c
+index a330825..67160f6 100644
+--- a/gst-libs/gst/gl/x11/gstglwindow_x11.c
++++ b/gst-libs/gst/gl/x11/gstglwindow_x11.c
+@@ -322,13 +322,13 @@ gst_gl_window_x11_set_window_handle (GstGLWindow * window, guintptr id)
+         g_main_context_get_thread_default ());
+   }
+-  XGetWindowAttributes (window_x11->device, window_x11->parent_win, &attr);
++  /*XGetWindowAttributes (window_x11->device, window_x11->parent_win, &attr);
+   XResizeWindow (window_x11->device, window_x11->internal_win_id,
+       attr.width, attr.height);
+   XReparentWindow (window_x11->device, window_x11->internal_win_id,
+-      window_x11->parent_win, 0, 0);
++      window_x11->parent_win, 0, 0);*/
+   XSync (window_x11->device, FALSE);
+ }
+@@ -359,7 +359,7 @@ _show_window (GstGLWindow * window)
+   GstGLWindowX11 *window_x11 = GST_GL_WINDOW_X11 (window);
+   guint width = window_x11->priv->preferred_width;
+   guint height = window_x11->priv->preferred_height;
+-  XWindowAttributes attr;
++  XWindowAttributes attr, parent_attr;
+   XGetWindowAttributes (window_x11->device, window_x11->internal_win_id, &attr);
+@@ -371,6 +371,14 @@ _show_window (GstGLWindow * window)
+       XResizeWindow (window_x11->device, window_x11->internal_win_id,
+           attr.width, attr.height);
+       XSync (window_x11->device, FALSE);
++    }else{
++      XGetWindowAttributes (window_x11->device, window_x11->parent_win, &parent_attr);
++
++      XResizeWindow (window_x11->device, window_x11->internal_win_id,
++        parent_attr.width, parent_attr.height);
++
++      XReparentWindow (window_x11->device, window_x11->internal_win_id,
++        window_x11->parent_win, 0, 0);
+     }
+     XMapWindow (window_x11->device, window_x11->internal_win_id);
+-- 
+1.9.1
+
index 08eec1e49de7f87b88323c97d7b67050fbe4cc65..7fba6e210ca65d1849c96c7f3cce1c2ef88fdaca 100644 (file)
@@ -15,6 +15,7 @@ SRC_URI_append = " file://0001-glplugin-Change-wayland-default-res-to-1024x768.p
                    file://0003-MMFMWK-6930-glplugin-Accelerate-gldownload-with-dire.patch \
                    file://0004-Fix-dependence-issue-between-gst-plugin-.patch \
                    file://0005-glcolorconvert-convert-YUV-to-RGB-use-directviv.patch \
+                   file://0006-glwindow-work-around-for-no-frame-when-imxplayer-use.patch \
 "