diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-03-15 18:36:40 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-03-16 01:12:05 -0700 |
commit | 010c2f388095c1615b99d9f38a26bbd0c9e77b39 (patch) | |
tree | 2563293e9fc25f1db158467f7909c48c0ae78e23 /meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31 | |
parent | 5c2c565e1de97a0f1c7b23fc5a136280e7f3eff2 (diff) | |
download | meta-openembedded-010c2f388095c1615b99d9f38a26bbd0c9e77b39.tar.gz |
gstreamer-0.10: Remove recipes
It has been over 5+ years for migration to gstreamer 1.x
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31')
3 files changed, 0 insertions, 125 deletions
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31/0001-v4l2-fix-build-with-recent-kernels-the-v4l2_buffer-i.patch b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31/0001-v4l2-fix-build-with-recent-kernels-the-v4l2_buffer-i.patch deleted file mode 100644 index 6456d3c6c..000000000 --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31/0001-v4l2-fix-build-with-recent-kernels-the-v4l2_buffer-i.patch +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | From 12d18fe4e98e7c232d59b56d529a0521f293fe6d Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> | ||
3 | Date: Wed, 5 Sep 2012 18:54:42 +0200 | ||
4 | Subject: [PATCH] v4l2: fix build with recent kernels, the v4l2_buffer input | ||
5 | field was removed | ||
6 | MIME-Version: 1.0 | ||
7 | Content-Type: text/plain; charset=UTF-8 | ||
8 | Content-Transfer-Encoding: 8bit | ||
9 | |||
10 | Upstream-Status: Backport | ||
11 | |||
12 | [1] http://cgit.freedesktop.org/gstreamer/gst-plugins-good/commit/?id=9f2aa8d47f835ea155aaf635f618c0fc1ca87012 | ||
13 | |||
14 | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> | ||
15 | --- | ||
16 | sys/v4l2/gstv4l2bufferpool.c | 1 - | ||
17 | 1 files changed, 0 insertions(+), 1 deletions(-) | ||
18 | |||
19 | diff --git a/sys/v4l2/gstv4l2bufferpool.c b/sys/v4l2/gstv4l2bufferpool.c | ||
20 | index b81c6a4..51cc0ce 100644 | ||
21 | --- a/sys/v4l2/gstv4l2bufferpool.c | ||
22 | +++ b/sys/v4l2/gstv4l2bufferpool.c | ||
23 | @@ -181,7 +181,6 @@ gst_v4l2_buffer_new (GstV4l2BufferPool * pool, guint index, GstCaps * caps) | ||
24 | GST_LOG_OBJECT (pool->v4l2elem, " MMAP offset: %u", | ||
25 | ret->vbuffer.m.offset); | ||
26 | GST_LOG_OBJECT (pool->v4l2elem, " length: %u", ret->vbuffer.length); | ||
27 | - GST_LOG_OBJECT (pool->v4l2elem, " input: %u", ret->vbuffer.input); | ||
28 | |||
29 | data = (guint8 *) v4l2_mmap (0, ret->vbuffer.length, | ||
30 | PROT_READ | PROT_WRITE, MAP_SHARED, pool->video_fd, | ||
31 | -- | ||
32 | 1.7.6.5 | ||
33 | |||
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31/0001-v4l2_calls-define-V4L2_CID_HCENTER-and-V4L2_CID_VCEN.patch b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31/0001-v4l2_calls-define-V4L2_CID_HCENTER-and-V4L2_CID_VCEN.patch deleted file mode 100644 index bd0de583a..000000000 --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31/0001-v4l2_calls-define-V4L2_CID_HCENTER-and-V4L2_CID_VCEN.patch +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | From ccb01de8096a32d86d47b0d92ec3416c57ee4d25 Mon Sep 17 00:00:00 2001 | ||
2 | From: Bruce Ashfield <bruce.ashfield@windriver.com> | ||
3 | Date: Thu, 22 Aug 2013 12:15:54 -0400 | ||
4 | Subject: [PATCH] v4l2_calls: define V4L2_CID_HCENTER and V4L2_CID_VCENTER | ||
5 | |||
6 | kernel commit 24b9f5017 [[media] V4L: Remove deprecated image centering controls] | ||
7 | removed the definitions of V4L2_CID_HCENTER and V4L2_CID_VCENTER after three | ||
8 | years of depreciation. | ||
9 | |||
10 | The ioctl values are still free, and the case statement which processess them | ||
11 | in v4l2 userspace falls through to the proper replacement. So in the short | ||
12 | term, we can explicitly define them using the old absolute values, and everything | ||
13 | will work. | ||
14 | |||
15 | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> | ||
16 | --- | ||
17 | sys/v4l2/v4l2_calls.c | 9 +++++++-- | ||
18 | 1 file changed, 7 insertions(+), 2 deletions(-) | ||
19 | |||
20 | diff --git a/sys/v4l2/v4l2_calls.c b/sys/v4l2/v4l2_calls.c | ||
21 | index 309bfb6..3c64544 100644 | ||
22 | --- a/sys/v4l2/v4l2_calls.c | ||
23 | +++ b/sys/v4l2/v4l2_calls.c | ||
24 | @@ -54,11 +54,16 @@ | ||
25 | #include "gst/gst-i18n-plugin.h" | ||
26 | |||
27 | /* Those are ioctl calls */ | ||
28 | + | ||
29 | +/* V4L2_CID_HCENTER has been removed from the mainline kernel, but | ||
30 | + the ioctl space is still present. Since these values fall through | ||
31 | + to their replacement, it is safe (in the short term) to re-use the | ||
32 | + old values explictily */ | ||
33 | #ifndef V4L2_CID_HCENTER | ||
34 | -#define V4L2_CID_HCENTER V4L2_CID_HCENTER_DEPRECATED | ||
35 | +#define V4L2_CID_HCENTER V4L2_CID_BASE+22 | ||
36 | #endif | ||
37 | #ifndef V4L2_CID_VCENTER | ||
38 | -#define V4L2_CID_VCENTER V4L2_CID_VCENTER_DEPRECATED | ||
39 | +#define V4L2_CID_VCENTER V4L2_CID_BASE+23 | ||
40 | #endif | ||
41 | |||
42 | GST_DEBUG_CATEGORY_EXTERN (v4l2_debug); | ||
43 | -- | ||
44 | 1.7.10.4 | ||
45 | |||
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31/0407-mulawdec-fix-integer-overrun.patch b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31/0407-mulawdec-fix-integer-overrun.patch deleted file mode 100644 index 48b8e98b8..000000000 --- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-plugins-good-0.10.31/0407-mulawdec-fix-integer-overrun.patch +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | From ce94b2c2b91b6db190c121860e12a6afafce7ae1 Mon Sep 17 00:00:00 2001 | ||
2 | From: Roland Krikava <rkrikava@gmail.com> | ||
3 | Date: Fri, 2 Nov 2012 12:38:44 -0400 | ||
4 | Subject: [PATCH 407/440] mulawdec: fix integer overrun | ||
5 | |||
6 | There might be more than 65535 samples in a chunk of data. | ||
7 | |||
8 | https://bugzilla.gnome.org/show_bug.cgi?id=687469 | ||
9 | |||
10 | Commit - 3be45f70220310ec1c60d819f90b5f2ae03b5d83 in 0.10 branch | ||
11 | |||
12 | Upstream Status: Backported | ||
13 | |||
14 | Signed-off-by: Roland Krikava <rkrikava@gmail.com> | ||
15 | --- | ||
16 | gst/law/mulaw-conversion.c | 6 ++++-- | ||
17 | 1 file changed, 4 insertions(+), 2 deletions(-) | ||
18 | |||
19 | diff --git a/gst/law/mulaw-conversion.c b/gst/law/mulaw-conversion.c | ||
20 | index 8afae80..190a9f5 100644 | ||
21 | --- a/gst/law/mulaw-conversion.c | ||
22 | +++ b/gst/law/mulaw-conversion.c | ||
23 | @@ -51,9 +51,10 @@ mulaw_encode (gint16 * in, guint8 * out, gint numsamples) | ||
24 | 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, | ||
25 | 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 | ||
26 | }; | ||
27 | - gint16 sign, exponent, mantissa, i; | ||
28 | + gint16 sign, exponent, mantissa; | ||
29 | gint16 sample; | ||
30 | guint8 ulawbyte; | ||
31 | + gint i; | ||
32 | |||
33 | for (i = 0; i < numsamples; i++) { | ||
34 | sample = in[i]; | ||
35 | @@ -102,7 +103,8 @@ mulaw_decode (guint8 * in, gint16 * out, gint numsamples) | ||
36 | static gint16 exp_lut[8] = { 0, 132, 396, 924, 1980, 4092, 8316, 16764 }; | ||
37 | gint16 sign, exponent, mantissa; | ||
38 | guint8 ulawbyte; | ||
39 | - gint16 linear, i; | ||
40 | + gint16 linear; | ||
41 | + gint i; | ||
42 | |||
43 | for (i = 0; i < numsamples; i++) { | ||
44 | ulawbyte = in[i]; | ||
45 | -- | ||
46 | 1.7.9.5 | ||
47 | |||