mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
baseaudiosink: fix max latency calculation
... to allow infinite max, as also claimed by comment.
This commit is contained in:
parent
5d0f279fea
commit
68231a645a
1 changed files with 5 additions and 1 deletions
|
@ -443,12 +443,16 @@ gst_base_audio_sink_query (GstElement * element, GstQuery * query)
|
|||
min_latency = min_latency + min_l;
|
||||
/* the max latency is the max of the peer, we can delay an infinite
|
||||
* amount of time. */
|
||||
max_latency = min_latency + (max_l == -1 ? 0 : max_l);
|
||||
max_latency = (max_l == -1) ? -1 : (min_latency + max_l);
|
||||
|
||||
GST_DEBUG_OBJECT (basesink,
|
||||
"peer min %" GST_TIME_FORMAT ", our min latency: %"
|
||||
GST_TIME_FORMAT, GST_TIME_ARGS (min_l),
|
||||
GST_TIME_ARGS (min_latency));
|
||||
GST_DEBUG_OBJECT (basesink,
|
||||
"peer max %" GST_TIME_FORMAT ", our max latency: %"
|
||||
GST_TIME_FORMAT, GST_TIME_ARGS (max_l),
|
||||
GST_TIME_ARGS (max_latency));
|
||||
} else {
|
||||
GST_DEBUG_OBJECT (basesink,
|
||||
"peer or we are not live, don't care about latency");
|
||||
|
|
Loading…
Reference in a new issue