mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
gst/rtpmanager/async_jitter_queue.c (tail_buffer_duration, async_jitter_queue_ref, async_jitter_queue_ref_unlocked, a...
Original commit message from CVS: * gst/rtpmanager/async_jitter_queue.c (tail_buffer_duration, async_jitter_queue_ref, async_jitter_queue_ref_unlocked, async_jitter_queue_set_low_threshold, async_jitter_queue_length_ts_units_unlocked, async_jitter_queue_unref_and_unlock, async_jitter_queue_unref, async_jitter_queue_lock, async_jitter_queue_push, async_jitter_queue_push_unlocked, async_jitter_queue_push_sorted, async_jitter_queue_pop_intern_unlocked, async_jitter_queue_pop, async_jitter_queue_pop_unlocked, async_jitter_queue_length_unlocked, async_jitter_queue_set_flushing_unlocked, async_jitter_queue_unset_flushing_unlocked): Format arg fix (spotted by Ali Sabil <ali.sabil@gmail.com>)
This commit is contained in:
parent
88f2441722
commit
091c2cfbc0
1 changed files with 30 additions and 30 deletions
|
@ -491,7 +491,7 @@ async_jitter_queue_pop_intern_unlocked (AsyncJitterQueue * queue)
|
||||||
tsunits = async_jitter_queue_length_ts_units_unlocked (queue);
|
tsunits = async_jitter_queue_length_ts_units_unlocked (queue);
|
||||||
|
|
||||||
GST_DEBUG ("tsunits %u, pops: %u, limit %d", tsunits, queue->pops_remaining,
|
GST_DEBUG ("tsunits %u, pops: %u, limit %d", tsunits, queue->pops_remaining,
|
||||||
queue->low_threshold * queue->max_queue_length);
|
(int) (queue->low_threshold * queue->max_queue_length));
|
||||||
|
|
||||||
if (tsunits <= queue->low_threshold * queue->max_queue_length
|
if (tsunits <= queue->low_threshold * queue->max_queue_length
|
||||||
&& queue->pops_remaining == 0) {
|
&& queue->pops_remaining == 0) {
|
||||||
|
|
Loading…
Reference in a new issue