projects
/
platform
/
upstream
/
gst-plugins-bad.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f5fd70
)
[MOVED FROM GST-P-FARSIGHT] Use g_cond_broadcast instead of g_cond_signal
author
Youness Alaoui
<youness.alaoui@collabora.co.uk>
Mon, 28 Apr 2008 23:49:35 +0000
(23:49 +0000)
committer
Edward Hervey
<bilboed@bilboed.com>
Tue, 17 Feb 2009 18:29:04 +0000
(19:29 +0100)
20080428234935
-4f0f6-
e51fab31772b32f2fb080ad70c6bedefc5c26dc6
.gz
gst/liveadder/liveadder.c
patch
|
blob
|
history
diff --git
a/gst/liveadder/liveadder.c
b/gst/liveadder/liveadder.c
index 5ab45655a11869dfc99a8bb9d7e6d8d82e54cf4e..1a9b633e54f62f78e70fdf23be78cbb728c4a26d 100644
(file)
--- a/
gst/liveadder/liveadder.c
+++ b/
gst/liveadder/liveadder.c
@@
-550,7
+550,7
@@
gst_live_adder_sink_event (GstPad * pad, GstEvent * event)
if (ret && !padprivate->eos) {
GST_DEBUG_OBJECT (adder, "queuing EOS");
padprivate->eos = TRUE;
- g_cond_
signal
(adder->not_empty_cond);
+ g_cond_
broadcast
(adder->not_empty_cond);
} else if (padprivate->eos) {
GST_DEBUG_OBJECT (adder, "dropping EOS, we are already EOS");
} else {
@@
-943,7
+943,7
@@
gst_live_live_adder_chain (GstPad *pad, GstBuffer *buffer)
skip += mix_duration;
}
- g_cond_
signal
(adder->not_empty_cond);
+ g_cond_
broadcast
(adder->not_empty_cond);
if (skip == GST_BUFFER_DURATION (buffer)) {
gst_buffer_unref (buffer);