summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia
diff options
context:
space:
mode:
authorAlistair Francis <Alistair.Francis@wdc.com>2019-01-17 18:35:17 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-01-18 16:24:40 +0000
commit0f74cc32b7c7e9ae7a4b007ca5c43f5686745c4d (patch)
tree80cc963b4145ef8cc35a98f681b786241f47e3d4 /meta/recipes-multimedia
parentacd03552ac46ff8123b1243dad1b0aa437f0a6ce (diff)
downloadpoky-0f74cc32b7c7e9ae7a4b007ca5c43f5686745c4d.tar.gz
gstreamer: Add RISC-V support
Backport RISC-V support from master Gstreamer. (From OE-Core rev: 2417a4e9f5b79815e5dcaf6b836a9239bd168c15) Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia')
-rw-r--r--meta/recipes-multimedia/gstreamer/files/0002-gstconfig.h.in-initial-RISC-V-support.patch30
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0_1.14.4.bb1
2 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/files/0002-gstconfig.h.in-initial-RISC-V-support.patch b/meta/recipes-multimedia/gstreamer/files/0002-gstconfig.h.in-initial-RISC-V-support.patch
new file mode 100644
index 0000000000..db742dea23
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/files/0002-gstconfig.h.in-initial-RISC-V-support.patch
@@ -0,0 +1,30 @@
1From 8a156d1725ecd03f2e8cdc8874e081dda2d3b43d Mon Sep 17 00:00:00 2001
2From: Aurelien Jarno <aurelien@aurel32.net>
3Date: Sun, 15 Apr 2018 00:49:55 +0200
4Subject: [PATCH] gstconfig.h.in: initial RISC-V support
5
6RISC-V supports unaligned accesses, but these might run extremely slowly
7depending on the implementation. Therefore set GST_HAVE_UNALIGNED_ACCESS
8to 0 on this architecture.
9
10https://bugzilla.gnome.org/show_bug.cgi?id=795271
11
12Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
13Upstream-Status: Accepted [1.15.1 - https://bugzilla.gnome.org/show_bug.cgi?id=795271]
14---
15 gst/gstconfig.h.in | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/gst/gstconfig.h.in b/gst/gstconfig.h.in
19index 6351c04da..33dfed1f6 100644
20--- a/gst/gstconfig.h.in
21+++ b/gst/gstconfig.h.in
22@@ -104,7 +104,7 @@
23 * http://docs.oracle.com/cd/E19205-01/820-4155/c++_faq.html#Vers6
24 * https://software.intel.com/en-us/node/583402
25 */
26-#if defined(__alpha__) || defined(__arc__) || defined(__arm__) || defined(__aarch64__) || defined(__bfin) || defined(__hppa__) || defined(__nios2__) || defined(__MICROBLAZE__) || defined(__mips__) || defined(__or1k__) || defined(__sh__) || defined(__SH4__) || defined(__sparc__) || defined(__sparc) || defined(__ia64__) || defined(_M_ALPHA) || defined(_M_ARM) || defined(_M_IA64) || defined(__xtensa__) || defined(__e2k__)
27+#if defined(__alpha__) || defined(__arc__) || defined(__arm__) || defined(__aarch64__) || defined(__bfin) || defined(__hppa__) || defined(__nios2__) || defined(__MICROBLAZE__) || defined(__mips__) || defined(__or1k__) || defined(__sh__) || defined(__SH4__) || defined(__sparc__) || defined(__sparc) || defined(__ia64__) || defined(_M_ALPHA) || defined(_M_ARM) || defined(_M_IA64) || defined(__xtensa__) || defined(__e2k__) || defined(__riscv)
28 # define GST_HAVE_UNALIGNED_ACCESS 0
29 #elif defined(__i386__) || defined(__i386) || defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__ppc__) || defined(__ppc64__) || defined(__powerpc__) || defined(__powerpc64__) || defined(__m68k__) || defined(_M_IX86) || defined(_M_AMD64) || defined(_M_X64) || defined(__s390__) || defined(__s390x__) || defined(__zarch__)
30 # define GST_HAVE_UNALIGNED_ACCESS 1
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.14.4.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.14.4.bb
index 232234b888..98c9a28e39 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.14.4.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.14.4.bb
@@ -25,6 +25,7 @@ SRC_URI = " \
25 file://gtk-doc-tweaks.patch \ 25 file://gtk-doc-tweaks.patch \
26 file://0001-gst-gstpluginloader.c-when-env-var-is-set-do-not-fal.patch \ 26 file://0001-gst-gstpluginloader.c-when-env-var-is-set-do-not-fal.patch \
27 file://add-a-target-to-compile-tests.patch \ 27 file://add-a-target-to-compile-tests.patch \
28 file://0002-gstconfig.h.in-initial-RISC-V-support.patch \
28 file://run-ptest \ 29 file://run-ptest \
29" 30"
30SRC_URI[md5sum] = "f67fbbc42bd85a0701df119f52fb52bd" 31SRC_URI[md5sum] = "f67fbbc42bd85a0701df119f52fb52bd"