summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gst-openmax
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2015-05-18 16:58:40 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-20 21:41:08 +0100
commitf8232d79aff4fa419c2a0e7ccae38615c9c1157a (patch)
tree961c014e1a648027e8a53722c0b576fc8181ddeb /meta/recipes-multimedia/gstreamer/gst-openmax
parent443d25ace122ac91efc4e7412188623a2df9f120 (diff)
downloadpoky-f8232d79aff4fa419c2a0e7ccae38615c9c1157a.tar.gz
gstreamer: remove 0.10 recipes
gstreamer 0.10 is still available from meta-openembedded/meta-multimedia See also https://bugzilla.yoctoproject.org/show_bug.cgi?id=6294 http://lists.openembedded.org/pipermail/openembedded-core/2015-April/104276.html (From OE-Core rev: fe44ac167a2a76531af3519f3889fce92024567b) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-openmax')
-rw-r--r--meta/recipes-multimedia/gstreamer/gst-openmax/gcc_4.6.patch18
-rw-r--r--meta/recipes-multimedia/gstreamer/gst-openmax/ptr-array.patch46
2 files changed, 0 insertions, 64 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-openmax/gcc_4.6.patch b/meta/recipes-multimedia/gstreamer/gst-openmax/gcc_4.6.patch
deleted file mode 100644
index 57a63b5a0f..0000000000
--- a/meta/recipes-multimedia/gstreamer/gst-openmax/gcc_4.6.patch
+++ /dev/null
@@ -1,18 +0,0 @@
1Upstream-Status: Pending
2
3Signed-off-by: Saul Wold <sgw@linux.intel.com>
4
5Index: gst-openmax-0.10.1/omx/gstomx.c
6===================================================================
7--- gst-openmax-0.10.1.orig/omx/gstomx.c 2010-09-30 18:00:24.000000000 -0700
8+++ gst-openmax-0.10.1/omx/gstomx.c 2011-05-17 23:08:08.794535872 -0700
9@@ -238,7 +238,8 @@
10 const gchar *element_name = gst_structure_nth_field_name (element_table, i);
11 GstStructure *element = get_element_entry (element_name);
12 const gchar *type_name, *parent_type_name;
13- const gchar *component_name, *component_role, *library_name;
14+ const gchar *component_name, *library_name;
15+ const gchar __attribute__((__unused__)) *component_role;
16 GType type;
17 gint rank;
18
diff --git a/meta/recipes-multimedia/gstreamer/gst-openmax/ptr-array.patch b/meta/recipes-multimedia/gstreamer/gst-openmax/ptr-array.patch
deleted file mode 100644
index 5965bbafbb..0000000000
--- a/meta/recipes-multimedia/gstreamer/gst-openmax/ptr-array.patch
+++ /dev/null
@@ -1,46 +0,0 @@
1Rename static functions that use GLib naming conventions as one of them
2(g_ptr_array_insert) has now been added to GLib.
3
4Upstream-Status: Pending
5Signed-off-by: Ross Burton <ross.burton@intel.com>
6
7diff --git a/omx/gstomx_util.c b/omx/gstomx_util.c
8index 423e441..579dbf5 100644
9--- a/omx/gstomx_util.c
10+++ b/omx/gstomx_util.c
11@@ -85,7 +85,7 @@ static gboolean initialized;
12 */
13
14 static void
15-g_ptr_array_clear (GPtrArray * array)
16+omx_g_ptr_array_clear (GPtrArray * array)
17 {
18 guint index;
19 for (index = 0; index < array->len; index++)
20@@ -93,7 +93,7 @@ g_ptr_array_clear (GPtrArray * array)
21 }
22
23 static void
24-g_ptr_array_insert (GPtrArray * array, guint index, gpointer data)
25+omx_g_ptr_array_insert (GPtrArray * array, guint index, gpointer data)
26 {
27 if (index + 1 > array->len) {
28 g_ptr_array_set_size (array, index + 1);
29@@ -394,7 +394,7 @@ g_omx_core_unload (GOmxCore * core)
30 }
31
32 core_for_each_port (core, g_omx_port_free);
33- g_ptr_array_clear (core->ports);
34+ omx_g_ptr_array_clear (core->ports);
35 }
36
37 static inline GOmxPort *
38@@ -418,7 +418,7 @@ g_omx_core_new_port (GOmxCore * core, guint index)
39 }
40
41 port = g_omx_port_new (core, index);
42- g_ptr_array_insert (core->ports, index, port);
43+ omx_g_ptr_array_insert (core->ports, index, port);
44
45 return port;
46 }