summaryrefslogtreecommitdiff
path: root/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0037-gleglimage-fix-YUY2-import-error-when-up.patch
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2018-06-20 16:52:30 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2018-06-20 16:52:30 +0200
commit97af9b54157142f500c0322b49e669d893768850 (patch)
treee19216da2dc490aa5504c6dd45b2983c4633bc9f /recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0037-gleglimage-fix-YUY2-import-error-when-up.patch
parent1ea27c0e94885dfe703dafd49fe42a40a180554a (diff)
Revert "imx-gst1.0-plugin: Add v4.3.1 and NXP specific gstreamer1.0 patches"
This resp. a later version got recently pulled into the rocko branch of meta-freescale. This reverts commit 5faa79028eead21680d490a1b589a3875f966e0e.
Diffstat (limited to 'recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0037-gleglimage-fix-YUY2-import-error-when-up.patch')
-rw-r--r--recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0037-gleglimage-fix-YUY2-import-error-when-up.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0037-gleglimage-fix-YUY2-import-error-when-up.patch b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0037-gleglimage-fix-YUY2-import-error-when-up.patch
deleted file mode 100644
index 3c2159c..0000000
--- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0037-gleglimage-fix-YUY2-import-error-when-up.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 0479a8e34369080c9beb5b36cd77d93b83a7b663 Mon Sep 17 00:00:00 2001
-From: Haihua Hu <jared.hu@nxp.com>
-Date: Wed, 27 Sep 2017 12:22:51 +0800
-Subject: [PATCH] [MMFMWK-7741] gleglimage: fix YUY2 import error when upload
- with dmafd
-
-gstreamer YUY2 fourcc is not match with that one in drm fourcc
-
-Upstream Status: [i.MX specific]
-Signed-off-by: Haihua Hu <jared.hu@nxp.com>
----
- gst-libs/gst/gl/egl/gsteglimage.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/gst-libs/gst/gl/egl/gsteglimage.c b/gst-libs/gst/gl/egl/gsteglimage.c
-index 75ed5cf..f0ab74b 100644
---- a/gst-libs/gst/gl/egl/gsteglimage.c
-+++ b/gst-libs/gst/gl/egl/gsteglimage.c
-@@ -496,6 +496,8 @@ gst_egl_image_from_dmabuf_singleplaner (GstGLContext * context,
- /* gstreamer fourcc is not compatible with DRM FOURCC*/
- if(GST_VIDEO_INFO_FORMAT(in_info) == GST_VIDEO_FORMAT_I420)
- fourcc = DRM_FORMAT_YUV420;
-+ if(GST_VIDEO_INFO_FORMAT(in_info) == GST_VIDEO_FORMAT_YUY2)
-+ fourcc = DRM_FORMAT_YUYV;
- }
-
- GST_DEBUG ("fourcc %.4s (%d) n_planes %d (%dx%d)",
---
-1.9.1
-