Skip to content
Snippets Groups Projects
Commit e5494e21 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

rtp:session: convert vlc_tick_t to seconds explicitly using SEC_FROM_VLC_TICK()

parent 1f94bfb9
No related branches found
No related tags found
No related merge requests found
......@@ -313,7 +313,7 @@ rtp_queue (demux_t *demux, rtp_session_t *session, block_t *block)
* It is independent of RTP sequence. */
uint32_t freq = pt->frequency;
int64_t ts = rtp_timestamp (block);
int64_t d = ((now - src->last_rx) * freq) / CLOCK_FREQ;
int64_t d = SEC_FROM_VLC_TICK((now - src->last_rx) * freq);
d -= ts - src->last_ts;
if (d < 0) d = -d;
src->jitter += ((d - src->jitter) + 8) >> 4;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment