From: Andre McCurdy <armccurdy@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 3/6] gstreamer1.0-plugins-good_git: update 1.7.1 -> 1.7.2
Date: Fri, 19 Feb 2016 18:53:14 -0800 [thread overview]
Message-ID: <1455936797-13430-4-git-send-email-armccurdy@gmail.com> (raw)
In-Reply-To: <1455936797-13430-1-git-send-email-armccurdy@gmail.com>
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
...itialized-warnings-when-compiling-with-Os.patch | 41 ----------------------
.../gstreamer/gstreamer1.0-plugins-good_git.bb | 8 ++---
2 files changed, 4 insertions(+), 45 deletions(-)
delete mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch
deleted file mode 100644
index 59addae..0000000
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 63a838d9ae2be480be8d28d6f51762d288b2a54a Mon Sep 17 00:00:00 2001
-From: Andre McCurdy <armccurdy@gmail.com>
-Date: Tue, 26 Jan 2016 14:47:36 -0800
-Subject: [PATCH] fix maybe-uninitialized warnings when compiling with -Os
-
-Upstream-Status: Pending
-
-Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
----
- gst/isomp4/qtdemux.c | 1 +
- gst/rtp/gstrtph261pay.c | 2 +-
- 2 files changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c
-index 77bb73e..1fc60ac 100644
---- a/gst/isomp4/qtdemux.c
-+++ b/gst/isomp4/qtdemux.c
-@@ -3269,6 +3269,7 @@ qtdemux_parse_cenc_aux_info (GstQTDemux * qtdemux, QtDemuxStream * stream,
- gst_structure_set (properties, "iv", GST_TYPE_BUFFER, buf, NULL);
- size = info_sizes[i];
- if (size > iv_size) {
-+ n_subsamples = 0;
- if (!gst_byte_reader_get_uint16_be (br, &n_subsamples)
- || !(n_subsamples > 0)) {
- gst_structure_free (properties);
-diff --git a/gst/rtp/gstrtph261pay.c b/gst/rtp/gstrtph261pay.c
-index 7cdd323..ebcf80e 100644
---- a/gst/rtp/gstrtph261pay.c
-+++ b/gst/rtp/gstrtph261pay.c
-@@ -867,7 +867,7 @@ gst_rtp_h261_packetize_and_push (GstRtpH261Pay * pay, GstBuffer * buffer,
- gst_rtp_buffer_calc_payload_len (GST_RTP_BASE_PAYLOAD_MTU (pay) -
- GST_RTP_H261_PAYLOAD_HEADER_LEN, 0, 0);
- guint startpos;
-- gint num_gobs;
-+ gint num_gobs = 0;
- Gob gobs[MAX_NUM_GOB];
- Gob *gob;
- Macroblock last_mb_in_previous_packet = { 0 };
---
-1.9.1
-
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb
index e3a2019..9cadc9a 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb
@@ -9,16 +9,16 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
SRC_URI = " \
git://anongit.freedesktop.org/gstreamer/gst-plugins-good;name=base \
git://anongit.freedesktop.org/gstreamer/common;destsuffix=git/common;name=common \
- file://fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch \
file://avoid-including-sys-poll.h-directly.patch \
file://ensure-valid-sentinel-for-gst_structure_get.patch \
"
-PV = "1.7.1+git${SRCPV}"
+PV = "1.7.2+git${SRCPV}"
+
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
-SRCREV_base = "e016a70a7c97fc61c6cb5cd3821d38bc5ae5c9a4"
-SRCREV_common = "86e46630ed8af8d94796859db550a9c3d89c9f65"
+SRCREV_base = "1b6fdce67c15d59957e395b1957aa625322092d4"
+SRCREV_common = "b64f03f6090245624608beb5d2fff335e23a01c0"
SRCREV_FORMAT = "base"
S = "${WORKDIR}/git"
--
1.9.1
next prev parent reply other threads:[~2016-02-20 2:53 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-20 2:53 [PATCH 0/6] update gstreamer1.0 git recipes 1.7.1 -> 1.7.2 Andre McCurdy
2016-02-20 2:53 ` [PATCH 1/6] gstreamer1.0_git: update " Andre McCurdy
2016-02-20 2:53 ` [PATCH 2/6] gstreamer1.0-plugins-base_git: " Andre McCurdy
2016-02-20 2:53 ` Andre McCurdy [this message]
2016-02-20 2:53 ` [PATCH 4/6] gstreamer1.0-plugins-bad_git: " Andre McCurdy
2016-02-20 2:53 ` [PATCH 5/6] gstreamer1.0-plugins-ugly_git: " Andre McCurdy
2016-02-20 2:53 ` [PATCH 6/6] gstreamer1.0-libav_git: " Andre McCurdy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1455936797-13430-4-git-send-email-armccurdy@gmail.com \
--to=armccurdy@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox