diff options
2 files changed, 36 insertions, 0 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 new file mode 100644 index 0000000000..2a9a23e15d --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2object-Also-add-videometa-if-there-is-padding-to.patch | |||
| @@ -0,0 +1,35 @@ | |||
| 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 | |||
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.10.4.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.10.4.bb index fd5369a5c5..57447bffba 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.10.4.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.10.4.bb | |||
| @@ -10,6 +10,7 @@ SRC_URI = " \ | |||
| 10 | file://avoid-including-sys-poll.h-directly.patch \ | 10 | file://avoid-including-sys-poll.h-directly.patch \ |
| 11 | file://ensure-valid-sentinel-for-gst_structure_get.patch \ | 11 | file://ensure-valid-sentinel-for-gst_structure_get.patch \ |
| 12 | file://0001-introspection.m4-prefix-pkgconfig-paths-with-PKG_CON.patch \ | 12 | file://0001-introspection.m4-prefix-pkgconfig-paths-with-PKG_CON.patch \ |
| 13 | file://0001-v4l2object-Also-add-videometa-if-there-is-padding-to.patch \ | ||
| 13 | " | 14 | " |
| 14 | SRC_URI[md5sum] = "cc0cc13cdb07d4237600b6886b81f31d" | 15 | SRC_URI[md5sum] = "cc0cc13cdb07d4237600b6886b81f31d" |
| 15 | SRC_URI[sha256sum] = "8a86c61434a8c44665365bd0b3557a040937d1f44bf69caee4e9ea816ce74d7e" | 16 | SRC_URI[sha256sum] = "8a86c61434a8c44665365bd0b3557a040937d1f44bf69caee4e9ea816ce74d7e" |
