summaryrefslogtreecommitdiff
path: root/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-Need-to-check-if-pa-stream-is-still-valid.patch
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2018-06-20 16:52:30 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2018-06-20 16:52:30 +0200
commit97af9b54157142f500c0322b49e669d893768850 (patch)
treee19216da2dc490aa5504c6dd45b2983c4633bc9f /recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-Need-to-check-if-pa-stream-is-still-valid.patch
parent1ea27c0e94885dfe703dafd49fe42a40a180554a (diff)
Revert "imx-gst1.0-plugin: Add v4.3.1 and NXP specific gstreamer1.0 patches"
This resp. a later version got recently pulled into the rocko branch of meta-freescale. This reverts commit 5faa79028eead21680d490a1b589a3875f966e0e.
Diffstat (limited to 'recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-Need-to-check-if-pa-stream-is-still-valid.patch')
-rw-r--r--recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-Need-to-check-if-pa-stream-is-still-valid.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-Need-to-check-if-pa-stream-is-still-valid.patch b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-Need-to-check-if-pa-stream-is-still-valid.patch
deleted file mode 100644
index f2ee02e..0000000
--- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-Need-to-check-if-pa-stream-is-still-valid.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From a4af947cb793cd3b9550c76d1ea8db7d3a94612a Mon Sep 17 00:00:00 2001
-From: Jian <Jian.Li@freescale.com>
-Date: Tue, 3 Feb 2015 17:08:40 +0800
-Subject: [PATCH 2/4] Need to check if pa stream is still valid
-
-Fixed the issue that will report pulse server is dead
-when doing audio track switching.
-Need to check if pa stream is valid as it may be released
-by caps change.
-
-Upstream-Status: Submitted
-https://bugzilla.gnome.org/show_bug.cgi?id=743912
-
-Signed-off-by: Jian <Jian.Li@freescale.com>
----
- ext/pulse/pulsesink.c | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c
-index 521c4a6..931f1c8 100644
---- a/ext/pulse/pulsesink.c
-+++ b/ext/pulse/pulsesink.c
-@@ -2022,6 +2022,13 @@ gst_pulsesink_get_time (GstClock * clock, GstAudioBaseSink * sink)
- }
-
- pa_threaded_mainloop_lock (mainloop);
-+
-+ /* Need to check if pa stream is valid as it may be released by caps change*/
-+ if (!pbuf->stream) {
-+ pa_threaded_mainloop_unlock (mainloop);
-+ return GST_CLOCK_TIME_NONE;
-+ }
-+
- if (gst_pulsering_is_dead (psink, pbuf, TRUE))
- goto server_dead;
-
---
-1.9.1
-