diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2023-08-03 10:16:20 -0700 |
---|---|---|
committer | Tom Hochstein <tom.hochstein@nxp.com> | 2023-08-03 10:16:20 -0700 |
commit | af8bc52e026897d379609cc51d33f628583dcfee (patch) | |
tree | b500649674c55f260b8d86caa6a5c747ff92f327 /recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad | |
parent | 2bccb1fce316b943a4acce350bcc12a69de2b2b9 (diff) | |
download | meta-freescale-af8bc52e026897d379609cc51d33f628583dcfee.tar.gz |
gstreamer: Upgrade 1.20.3.imx -> 1.22.0.imx
Note, this commit does also complete the 'snapshot' model being used by
including the .inc files.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad')
-rw-r--r-- | recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch deleted file mode 100644 index 13a673cd..00000000 --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | From f08ab3ac2ce43ac91d3bf65b26f26436690f499b Mon Sep 17 00:00:00 2001 | ||
2 | From: Andre McCurdy <armccurdy@gmail.com> | ||
3 | Date: Tue, 26 Jan 2016 15:16:01 -0800 | ||
4 | Subject: [PATCH 1/4] fix maybe-uninitialized warnings when compiling with -Os | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | |||
8 | Signed-off-by: Andre McCurdy <armccurdy@gmail.com> | ||
9 | --- | ||
10 | gst-libs/gst/codecparsers/gstvc1parser.c | 2 +- | ||
11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
12 | |||
13 | diff --git a/gst-libs/gst/codecparsers/gstvc1parser.c b/gst-libs/gst/codecparsers/gstvc1parser.c | ||
14 | index 2c60ced..e8226d8 100644 | ||
15 | --- a/gst-libs/gst/codecparsers/gstvc1parser.c | ||
16 | +++ b/gst-libs/gst/codecparsers/gstvc1parser.c | ||
17 | @@ -1730,7 +1730,7 @@ gst_vc1_parse_sequence_layer (const guint8 * data, gsize size, | ||
18 | GstVC1SeqLayer * seqlayer) | ||
19 | { | ||
20 | guint32 tmp; | ||
21 | - guint8 tmp8; | ||
22 | + guint8 tmp8 = 0; | ||
23 | guint8 structA[8] = { 0, }; | ||
24 | guint8 structB[12] = { 0, }; | ||
25 | GstBitReader br; | ||
26 | -- | ||
27 | 2.28.0 | ||
28 | |||