mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
gst/playback/gstqueue2.c: Use other metrics as well when estimating the buffer level.
Original commit message from CVS: * gst/playback/gstqueue2.c: (apply_segment), (update_buffering): Use other metrics as well when estimating the buffer level.
This commit is contained in:
parent
ee4e5d2be0
commit
da7a699c5f
1 changed files with 7 additions and 7 deletions
|
@ -664,13 +664,13 @@ update_buffering (GstQueue * queue)
|
|||
percent = 100;
|
||||
} else {
|
||||
/* figure out the percent we are filled, we take the max of all formats. */
|
||||
if (queue->use_rate_estimate) {
|
||||
percent = GET_PERCENT (rate_time);
|
||||
} else {
|
||||
percent = GET_PERCENT (bytes);
|
||||
percent = MAX (percent, GET_PERCENT (time));
|
||||
percent = MAX (percent, GET_PERCENT (buffers));
|
||||
}
|
||||
percent = GET_PERCENT (bytes);
|
||||
percent = MAX (percent, GET_PERCENT (time));
|
||||
percent = MAX (percent, GET_PERCENT (buffers));
|
||||
|
||||
/* also apply the rate estimate when we need to */
|
||||
if (queue->use_rate_estimate)
|
||||
percent = MAX (percent, GET_PERCENT (rate_time));
|
||||
}
|
||||
|
||||
if (queue->is_buffering) {
|
||||
|
|
Loading…
Reference in a new issue