Commit a7b554f8 authored by Diego Elio 'Flameeyes' Pettenò's avatar Diego Elio 'Flameeyes' Pettenò Committed by Michael Niedermayer

rtpdec: make the NTP time values unsigned.

As per RFC3550, section 4, the NTP time is provided as 64-bit unsigned
integer, so follow the same logic here.
Reviewed-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent bc478019
......@@ -173,9 +173,9 @@ struct RTPDemuxContext {
/*@}*/
/* rtcp sender statistics receive */
int64_t last_rtcp_ntp_time;
uint64_t last_rtcp_ntp_time;
int64_t last_rtcp_reception_time;
int64_t first_rtcp_ntp_time;
uint64_t first_rtcp_ntp_time;
uint32_t last_rtcp_timestamp;
int64_t rtcp_ts_offset;
......
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