summaryrefslogtreecommitdiffstats
path: root/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx/0001-pxp-Check-for-new-format-specifier-from-the-new-FSL-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx/0001-pxp-Check-for-new-format-specifier-from-the-new-FSL-.patch')
-rw-r--r--recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx/0001-pxp-Check-for-new-format-specifier-from-the-new-FSL-.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx/0001-pxp-Check-for-new-format-specifier-from-the-new-FSL-.patch b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx/0001-pxp-Check-for-new-format-specifier-from-the-new-FSL-.patch
deleted file mode 100644
index 9390a00..0000000
--- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx/0001-pxp-Check-for-new-format-specifier-from-the-new-FSL-.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From 66c2285aff440d2cdbd16ee6893bdbbbd814a08b Mon Sep 17 00:00:00 2001
2From: Carlos Rafael Giani <carlos.giani@streamunlimited.com>
3Date: Tue, 7 Apr 2015 18:34:05 +0200
4Subject: [PATCH] pxp: Check for new format specifier from the new FSL 3.14
5 kernel
6
7Signed-off-by: Carlos Rafael Giani <carlos.giani@streamunlimited.com>
8---
9 src/pxp/blitter.c | 4 ++++
10 1 file changed, 4 insertions(+)
11
12diff --git a/src/pxp/blitter.c b/src/pxp/blitter.c
13index b96b3b9..7f44d03 100644
14--- a/src/pxp/blitter.c
15+++ b/src/pxp/blitter.c
16@@ -391,7 +391,11 @@ static GstImxPxPFormatDetails const * gst_imx_pxp_blitter_get_pxp_format_details
17 case GST_VIDEO_FORMAT_YUY2: FORMAT_DETAILS(PXP_PIX_FMT_YUYV, 16);
18 case GST_VIDEO_FORMAT_UYVY: FORMAT_DETAILS(PXP_PIX_FMT_UYVY, 16);
19 case GST_VIDEO_FORMAT_YVYU: FORMAT_DETAILS(PXP_PIX_FMT_YVYU, 16);
20+#ifdef PXP_PIX_FMT_VUY444
21+ case GST_VIDEO_FORMAT_v308: FORMAT_DETAILS(PXP_PIX_FMT_VUY444, 24);
22+#else
23 case GST_VIDEO_FORMAT_v308: FORMAT_DETAILS(PXP_PIX_FMT_YUV444, 24);
24+#endif
25 case GST_VIDEO_FORMAT_IYU1: FORMAT_DETAILS(PXP_PIX_FMT_Y41P, 12);
26
27 /* planar formats; bits per pixel is always 8 for these */
28--
291.9.1
30