projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d18b6de
)
aggregator: Wait for the minimum latency, not the maximum
author
Sebastian Dröge
<sebastian@centricular.com>
Sat, 27 Dec 2014 08:42:57 +0000
(09:42 +0100)
committer
Tim-Philipp Müller
<tim@centricular.com>
Sat, 2 Dec 2017 15:10:26 +0000
(15:10 +0000)
The minimum latency is the latency we have to wait at least
to guarantee that all upstreams have produced data. The maximum
latency has no meaning like that and shouldn't be used for waiting.
libs/gst/base/gstaggregator.c
patch
|
blob
|
history
diff --git
a/libs/gst/base/gstaggregator.c
b/libs/gst/base/gstaggregator.c
index fbd088c0af689db93260939d11930d1bc609979e..bb8924e1595d6f045dcbf4abb8f3c0bebcd9b7f4 100644
(file)
--- a/
libs/gst/base/gstaggregator.c
+++ b/
libs/gst/base/gstaggregator.c
@@
-539,9
+539,7
@@
_wait_and_check (GstAggregator * self, gboolean * timeout)
time = base_time + start;
- if (GST_CLOCK_TIME_IS_VALID (latency_max)) {
- time += latency_max;
- } else if (GST_CLOCK_TIME_IS_VALID (latency_min)) {
+ if (GST_CLOCK_TIME_IS_VALID (latency_min)) {
time += latency_min;
} else {
time += self->latency;