Use backticks not vertical bars to denote variables in comments for /rtc_tools
Bug: webrtc:12338 Change-Id: Id47ef14982a6f31df6fc2e6d317e14f6e269e706 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/226954 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#34571}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
2dbb4c9775
commit
54500adead
@ -88,10 +88,10 @@ double AbsSendTimeToMicroseconds(int64_t abs_send_time) {
|
||||
return abs_send_time * kTimestampToMicroSec;
|
||||
}
|
||||
|
||||
// Computes the difference |later| - |earlier| where |later| and |earlier|
|
||||
// are counters that wrap at |modulus|. The difference is chosen to have the
|
||||
// least absolute value. For example if |modulus| is 8, then the difference will
|
||||
// be chosen in the range [-3, 4]. If |modulus| is 9, then the difference will
|
||||
// Computes the difference `later` - `earlier` where `later` and `earlier`
|
||||
// are counters that wrap at `modulus`. The difference is chosen to have the
|
||||
// least absolute value. For example if `modulus` is 8, then the difference will
|
||||
// be chosen in the range [-3, 4]. If `modulus` is 9, then the difference will
|
||||
// be in [-4, 4].
|
||||
int64_t WrappingDifference(uint32_t later, uint32_t earlier, int64_t modulus) {
|
||||
RTC_DCHECK_LE(1, modulus);
|
||||
|
||||
Reference in New Issue
Block a user