Make local to capturer clock offset a separate entry in PacketInfo.
This also changes the meaning of |estimated_capture_clock_offset| in |absolute_capture_time_| to become a remote to capturer clock offset. Bug: chromium:1056230, webrtc:10739 Change-Id: Id658590e027bbe77ae0834ea224e1dc977a305f2 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/219163 Commit-Queue: Minyue Li <minyue@webrtc.org> Reviewed-by: Åsa Persson <asapersson@webrtc.org> Reviewed-by: Erik Språng <sprang@webrtc.org> Reviewed-by: Alessio Bazzica <alessiob@webrtc.org> Reviewed-by: Christoffer Rodbro <crodbro@webrtc.org> Reviewed-by: Gustaf Ullberg <gustaf@webrtc.org> Reviewed-by: Chen Xing <chxg@google.com> Cr-Commit-Position: refs/heads/master@{#34067}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
cbde0cf994
commit
63b3095d2b
@ -71,7 +71,9 @@ bool operator==(const RtpPacketInfo& lhs, const RtpPacketInfo& rhs) {
|
||||
(lhs.rtp_timestamp() == rhs.rtp_timestamp()) &&
|
||||
(lhs.audio_level() == rhs.audio_level()) &&
|
||||
(lhs.absolute_capture_time() == rhs.absolute_capture_time()) &&
|
||||
(lhs.receive_time() == rhs.receive_time());
|
||||
(lhs.receive_time() == rhs.receive_time() &&
|
||||
(lhs.local_capture_clock_offset() ==
|
||||
rhs.local_capture_clock_offset()));
|
||||
}
|
||||
|
||||
} // namespace webrtc
|
||||
|
||||
Reference in New Issue
Block a user