summaryrefslogtreecommitdiffstats
path: root/recipes-multimedia/gstreamer/imx-gst1.0-plugin
diff options
context:
space:
mode:
authorAndrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>2020-09-01 20:21:07 +0000
committerOtavio Salvador <otavio@ossystems.com.br>2020-09-23 23:42:37 -0300
commiteee0beb7da54159853b540e8e0ea4bed74eeeeda (patch)
treef71c52f2bd73bf9dba369bb3e281aacf648b9d1a /recipes-multimedia/gstreamer/imx-gst1.0-plugin
parent34df3329607c1388774a46cd86ae2c107768cd9e (diff)
downloadmeta-freescale-eee0beb7da54159853b540e8e0ea4bed74eeeeda.tar.gz
gstreamer1.0: update to NXP release MM_04.05.05_2005_L5.4.24
Align recipes to match NXP release 5.4.24-2.1.0 by updating the branch to MM_04.05.05_2005_L5.4.24. Following notes are additions to the regular bump of recipes: -------------------------- gstreamer1.0-plugins-bad: Drop patches applied upstream and refresh all patches in layer with devtool to clean-up fuzz during apply. Backport patch to be able to compile with OpenCV 4.4.0 provided in upstream OE-Core. imx-gst1.0-plugin: Introduce the patch to solve compiler error reported when -fcommon is used in GCC10 configuration. -------------------------- Signed-off-by: Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>
Diffstat (limited to 'recipes-multimedia/gstreamer/imx-gst1.0-plugin')
-rw-r--r--recipes-multimedia/gstreamer/imx-gst1.0-plugin/0001-fsl_parser.h-fix-compiler-error-with-fcommon.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/recipes-multimedia/gstreamer/imx-gst1.0-plugin/0001-fsl_parser.h-fix-compiler-error-with-fcommon.patch b/recipes-multimedia/gstreamer/imx-gst1.0-plugin/0001-fsl_parser.h-fix-compiler-error-with-fcommon.patch
new file mode 100644
index 00000000..9a0afea5
--- /dev/null
+++ b/recipes-multimedia/gstreamer/imx-gst1.0-plugin/0001-fsl_parser.h-fix-compiler-error-with-fcommon.patch
@@ -0,0 +1,34 @@
1From eb89cd344535706c6194359bd1f1fed50162a041 Mon Sep 17 00:00:00 2001
2From: Andrey Zhizhikin <andrey.z@gmail.com>
3Date: Tue, 1 Sep 2020 08:24:52 +0000
4Subject: [PATCH] fsl_parser.h: fix compiler error with -fcommon
5
6When -fcommon is set in GCC10 configuration, following error is produced
7during linking:
8./git/ext-includes/fsl_parser.h:598: multiple definition of `TrackExtTagIndex';
9./git/ext-includes/fsl_parser.h:598: first defined here
10
11Remove unused enum name to resolve multiple definitions, it is not used
12anywhere in the code base.
13
14Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com>
15---
16 ext-includes/fsl_parser.h | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/ext-includes/fsl_parser.h b/ext-includes/fsl_parser.h
20index d3aae20..c037c9a 100755
21--- a/ext-includes/fsl_parser.h
22+++ b/ext-includes/fsl_parser.h
23@@ -595,7 +595,7 @@ enum{
24 FSL_PARSER_TRACKEXTTAG_CRYPTO_ENCRYPTED_BYTE_BLOCK,
25 FSL_PARSER_TRACKEXTTAG_CRYPTO_SKIP_BYTE_BLOCK,
26 FSL_PARSER_TRACKEXTTAG_CRYPTO_IV,
27-}TrackExtTagIndex;
28+};
29
30 typedef struct _SeiPosition
31 {
32--
332.17.1
34