Commit 2a605427 authored by Marian Ďurkovič's avatar Marian Ďurkovič

RTP: compute deadline for reordering from the current time

parent ef3f7c2f
...@@ -146,7 +146,7 @@ struct rtp_source_t ...@@ -146,7 +146,7 @@ struct rtp_source_t
uint16_t last_seq; /* sequence of the next dequeued packet */ uint16_t last_seq; /* sequence of the next dequeued packet */
block_t *blocks; /* re-ordered blocks queue */ block_t *blocks; /* re-ordered blocks queue */
mtime_t last_dq; /* last dequeued (decoded) packet local timestamp */ mtime_t ref_ts; /* reference timestamp for reordering */
void *opaque[0]; /* Per-source private payload data */ void *opaque[0]; /* Per-source private payload data */
}; };
...@@ -315,7 +315,6 @@ rtp_queue (demux_t *demux, rtp_session_t *session, block_t *block) ...@@ -315,7 +315,6 @@ rtp_queue (demux_t *demux, rtp_session_t *session, block_t *block)
} }
} }
src->last_rx = now; src->last_rx = now;
block->i_pts = now;
src->last_ts = rtp_timestamp (block); src->last_ts = rtp_timestamp (block);
/* Check sequence number */ /* Check sequence number */
...@@ -412,7 +411,7 @@ rtp_decode (demux_t *demux, const rtp_session_t *session, rtp_source_t *src) ...@@ -412,7 +411,7 @@ rtp_decode (demux_t *demux, const rtp_session_t *session, rtp_source_t *src)
/* FIXME: handle timestamp wrap properly */ /* FIXME: handle timestamp wrap properly */
/* TODO: inter-medias/sessions sync (using RTCP-SR) */ /* TODO: inter-medias/sessions sync (using RTCP-SR) */
const uint32_t timestamp = rtp_timestamp (block); const uint32_t timestamp = rtp_timestamp (block);
src->last_dq = block->i_pts; src->ref_ts = 0;
block->i_pts = CLOCK_FREQ * timestamp / pt->frequency; block->i_pts = CLOCK_FREQ * timestamp / pt->frequency;
/* CSRC count */ /* CSRC count */
...@@ -492,8 +491,10 @@ bool rtp_dequeue (demux_t *demux, const rtp_session_t *session, ...@@ -492,8 +491,10 @@ bool rtp_dequeue (demux_t *demux, const rtp_session_t *session,
* match for random gaussian jitter). Additionnaly, we implicitly * match for random gaussian jitter). Additionnaly, we implicitly
* wait for misordering times the packetization time. * wait for misordering times the packetization time.
*/ */
mtime_t deadline = src->last_dq; mtime_t deadline = src->ref_ts;
const rtp_pt_t *pt = rtp_find_ptype (session, src, block, NULL); const rtp_pt_t *pt = rtp_find_ptype (session, src, block, NULL);
if (!deadline)
deadline = src->ref_ts = now;
if (pt) if (pt)
deadline += CLOCK_FREQ * 3 * src->jitter / pt->frequency; deadline += CLOCK_FREQ * 3 * src->jitter / pt->frequency;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment