diff options
author | Jose Quaresma <quaresma.jose@gmail.com> | 2020-12-08 15:05:42 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-12-15 22:51:55 +0000 |
commit | d54a590ffe7f9debb43ca2b9aa9141d08248d9c7 (patch) | |
tree | e7fd775d56d5cf516c35433eb392a38fcfcbbbdb /meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good | |
parent | df7bccf25496393ee58ec28afb00ad42d7abf70e (diff) | |
download | poky-d54a590ffe7f9debb43ca2b9aa9141d08248d9c7.tar.gz |
gstreamer1.0: upgrade 1.18.1 -> 1.18.2
Drop patches as it as merged upstream:
* gstreamer1.0: 0001-gst_private.h-increse-padding-in-struct-_GstClockEnt.patch
* gstreamer1.0-plugins-good: 0001-rpicamsrc-add-vchostif-library-as-it-is-required-to-.patch
Update pacthes:
* gstreamer1.0: 0001-gst-gstpluginloader.c-when-env-var-is-set-do-not-fal.patch
(From OE-Core rev: 44803c0ae61072cd64228f31cca6990dbd817b02)
Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-rpicamsrc-add-vchostif-library-as-it-is-required-to-.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-rpicamsrc-add-vchostif-library-as-it-is-required-to-.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-rpicamsrc-add-vchostif-library-as-it-is-required-to-.patch deleted file mode 100644 index 685ee08e50..0000000000 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-rpicamsrc-add-vchostif-library-as-it-is-required-to-.patch +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | From 3ec4fe5507a39383b161f1ab7687acb4a57c32f8 Mon Sep 17 00:00:00 2001 | ||
2 | From: Jose Quaresma <quaresma.jose@gmail.com> | ||
3 | Date: Sun, 15 Nov 2020 11:30:07 +0000 | ||
4 | Subject: [PATCH] rpicamsrc: add vchostif library as it is required to build | ||
5 | successful | ||
6 | |||
7 | fix: undefined reference to `vc_gencmd' | ||
8 | /usr/src/debug/gstreamer1.0-plugins-good/1.18.1-r0/build/../gst-plugins-good-1.18.1/sys/rpicamsrc/RaspiCamControl.c:1440: undefined reference to `vc_gencmd' | ||
9 | |||
10 | Upstream-Status: Submitted [https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/818] | ||
11 | |||
12 | Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com> | ||
13 | --- | ||
14 | sys/rpicamsrc/meson.build | 2 +- | ||
15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
16 | |||
17 | diff --git a/sys/rpicamsrc/meson.build b/sys/rpicamsrc/meson.build | ||
18 | index dc18a8345..48b2ceb66 100644 | ||
19 | --- a/sys/rpicamsrc/meson.build | ||
20 | +++ b/sys/rpicamsrc/meson.build | ||
21 | @@ -34,7 +34,7 @@ if not cc.has_header('bcm_host.h', args: rpi_inc_args) | ||
22 | endif | ||
23 | |||
24 | mmal_deps = [] | ||
25 | -foreach rpi_lib : ['mmal_core', 'mmal_util', 'mmal_vc_client', 'vcos', 'bcm_host'] | ||
26 | +foreach rpi_lib : ['mmal_core', 'mmal_util', 'mmal_vc_client', 'vcos', 'vchostif', 'bcm_host'] | ||
27 | l = cc.find_library(rpi_lib, dirs: rpi_lib_path, required: false) | ||
28 | if not l.found() | ||
29 | if get_option('rpicamsrc').enabled() | ||
30 | -- | ||
31 | 2.29.2 | ||
32 | |||