diff options
author | Maxin John <maxin.john@intel.com> | 2017-08-11 23:36:54 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-16 00:03:14 +0100 |
commit | 71c2f1d0470aaf0402cf19a35b60ddae8e6b49fb (patch) | |
tree | bb9eb89efc652fe0b4b760070b9aeb8bfb4ca88f /meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good | |
parent | 58a7c2bd377409e1ec647038511351fd76144a55 (diff) | |
download | poky-71c2f1d0470aaf0402cf19a35b60ddae8e6b49fb.tar.gz |
gstreamer1.0-plugins-good: upgrade to version 1.12.2
* Remove backported patch:
1. 0001-v4l2object-Also-add-videometa-if-there-is-padding-to.patch
* Added RPROVIDES to handle the renamed plugins (oss4 is not enabled):
1. libgstpulse -> libgstpulseaudio
2. libgstsouphttpsrc -> libgstsoup
* Updated gstreamer1.0-meta-base to include this change:
1.gstsouphttpsrc plugin was renamed to gstsoup
(From OE-Core rev: 142d9e3d68147cdad18a3a60eaa22c33c418ffec)
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org>
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-v4l2object-Also-add-videometa-if-there-is-padding-to.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2object-Also-add-videometa-if-there-is-padding-to.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2object-Also-add-videometa-if-there-is-padding-to.patch deleted file mode 100644 index 2a9a23e15d..0000000000 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2object-Also-add-videometa-if-there-is-padding-to.patch +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | From 22be02612adc757f6a43cefc6ee65ecaef68f0d9 Mon Sep 17 00:00:00 2001 | ||
2 | From: Carlos Rafael Giani <dv@pseudoterminal.org> | ||
3 | Date: Thu, 23 Mar 2017 22:13:05 +0100 | ||
4 | Subject: [PATCH] v4l2object: Also add videometa if there is padding to the | ||
5 | right and bottom | ||
6 | |||
7 | https://bugzilla.gnome.org/show_bug.cgi?id=780478 | ||
8 | |||
9 | Upstream-Status: Backport [1.10.5] | ||
10 | |||
11 | Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org> | ||
12 | --- | ||
13 | sys/v4l2/gstv4l2object.c | 5 +++-- | ||
14 | 1 file changed, 3 insertions(+), 2 deletions(-) | ||
15 | |||
16 | diff --git a/sys/v4l2/gstv4l2object.c b/sys/v4l2/gstv4l2object.c | ||
17 | index 91c8ff0..ed4654e 100644 | ||
18 | --- a/sys/v4l2/gstv4l2object.c | ||
19 | +++ b/sys/v4l2/gstv4l2object.c | ||
20 | @@ -3070,9 +3070,10 @@ store_info: | ||
21 | GST_DEBUG_OBJECT (v4l2object->element, "Got sizeimage %" G_GSIZE_FORMAT, | ||
22 | info->size); | ||
23 | |||
24 | - /* to avoid copies we need video meta if top or left padding */ | ||
25 | + /* to avoid copies we need video meta if there is padding */ | ||
26 | v4l2object->need_video_meta = | ||
27 | - ((align->padding_top + align->padding_left) != 0); | ||
28 | + ((align->padding_top + align->padding_left + align->padding_right + | ||
29 | + align->padding_bottom) != 0); | ||
30 | |||
31 | /* ... or if stride is non "standard" */ | ||
32 | if (!standard_stride) | ||
33 | -- | ||
34 | 2.7.4 | ||
35 | |||