• Home
  • Raw
  • Download

Lines Matching full:late

48   + late
146 …JITTER_MAX_BUFFER_SIZE]; /**< Packet arrival time (0 means it was late, even though it's a…
154 …int late_cutoff; /**< How late must a packet be for it …
160 … /**< Total window over which the late frames are counted …
162 …int max_late_rate; /**< Absolute maximum amount of late p…
171 cost = delay + late_factor*[number of frames that would be late if we used that delay]
173 @param late_factor Equivalent cost of a late frame (in timestamp units)
180 int late = 0; in compute_opt_delay() local
209 /* Pick the TOP_DELAY "latest" packets (doesn't need to actually be late in compute_opt_delay()
236 cost = -latest + late_factor*late; in compute_opt_delay()
237 /*fprintf(stderr, "cost %d = %d + %f * %d\n", cost, -latest, late_factor, late);*/ in compute_opt_delay()
247 /* For the next timing we will consider, there will be one more late packet to count */ in compute_opt_delay()
248 late++; in compute_opt_delay()
249 /* Two-frame penalty if we're going to increase the amount of late frames (hysteresis) */ in compute_opt_delay()
253 late+=4; in compute_opt_delay()
371 int late; in jitter_buffer_put() local
379 …/* Make sure we don't discard a "just-late" packet in case we want to play it next (if we interpol… in jitter_buffer_put()
393 /* Check if packet is late (could still be useful though) */ in jitter_buffer_put()
397 late = 1; in jitter_buffer_put()
399 late = 0; in jitter_buffer_put()
409 /* Only insert the packet if it's not hopelessly late (i.e. totally useless) */ in jitter_buffer_put()
455 if (jitter->reset_state || late) in jitter_buffer_put()