Add receive time to decode unit

This commit is contained in:
Cameron Gutman 2017-06-10 16:08:52 -07:00
commit 99cfae7acc
5 changed files with 17 additions and 11 deletions

View file

@ -42,10 +42,11 @@ static int queuePacket(PRTP_FEC_QUEUE queue, PRTPFEC_QUEUE_ENTRY newEntry, int h
entry = entry->next;
}
newEntry->packet = packet;
newEntry->length = length;
newEntry->isParity = isParity;
newEntry->receiveTimeMs = PltGetMillis();
newEntry->prev = NULL;
newEntry->next = NULL;