class Syncable { public: struct Info { // Local time when the the last RTP packet was received.
Timestamp latest_receive_time = Timestamp::Zero(); // RTP timestamp of the last RTP packet received.
uint32_t latest_received_capture_rtp_timestamp = 0;
// NTP and RTP timestamp from the last RTCP sender report received.
uint32_t capture_time_rtp = 0;
NtpTime capture_time_ntp;
// Current playout delay for the given `Syncable`.
TimeDelta current_delay;
};
// Mapping between capture/render time in RTP timestamps and local clock. struct PlayoutInfo {
Timestamp time;
uint32_t rtp_timestamp;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.