• Home
  • Raw
  • Download

Lines Matching full:late

48   + late
144 …JITTER_MAX_BUFFER_SIZE]; /**< Packet arrival time (0 means it was late, even though it's a…
152 …int late_cutoff; /**< How late must a packet be for it …
158 … /**< Total window over which the late frames are counted …
160 …int max_late_rate; /**< Absolute maximum amount of late p…
169 cost = delay + late_factor*[number of frames that would be late if we used that delay]
171 @param late_factor Equivalent cost of a late frame (in timestamp units)
178 int late = 0; in compute_opt_delay() local
207 /* Pick the TOP_DELAY "latest" packets (doesn't need to actually be late in compute_opt_delay()
234 cost = -latest + late_factor*late; in compute_opt_delay()
235 /*fprintf(stderr, "cost %d = %d + %f * %d\n", cost, -latest, late_factor, late);*/ in compute_opt_delay()
245 /* For the next timing we will consider, there will be one more late packet to count */ in compute_opt_delay()
246 late++; in compute_opt_delay()
247 /* Two-frame penalty if we're going to increase the amount of late frames (hysteresis) */ in compute_opt_delay()
251 late+=4; in compute_opt_delay()
369 int late; in jitter_buffer_put() local
377 …/* 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()
391 /* Check if packet is late (could still be useful though) */ in jitter_buffer_put()
395 late = 1; in jitter_buffer_put()
397 late = 0; in jitter_buffer_put()
407 /* Only insert the packet if it's not hopelessly late (i.e. totally useless) */ in jitter_buffer_put()
453 if (jitter->reset_state || late) in jitter_buffer_put()