Use backticks not vertical bars to denote variables in comments for /modules/audio_coding
Bug: webrtc:12338 Change-Id: I02613d9fca45d00e2477f334b7a0416e7912e26b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/227037 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#34621}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
0146a34b3f
commit
d00ce747c7
@ -208,12 +208,12 @@ TEST(DtmfBuffer, ExtrapolationTime) {
|
||||
DtmfEvent event2(timestamp, event_no, volume, duration, end_bit);
|
||||
EXPECT_EQ(DtmfBuffer::kOK, buffer.InsertEvent(event2));
|
||||
EXPECT_EQ(2u, buffer.Length());
|
||||
// Now we expect to get the new event when supplying |timestamp_now|.
|
||||
// Now we expect to get the new event when supplying `timestamp_now`.
|
||||
EXPECT_TRUE(buffer.GetEvent(timestamp_now, &out_event));
|
||||
EXPECT_TRUE(EqualEvents(event2, out_event));
|
||||
// Expect the the first event to be erased now.
|
||||
EXPECT_EQ(1u, buffer.Length());
|
||||
// Move |timestamp_now| to more than 560 samples after the end of the second
|
||||
// Move `timestamp_now` to more than 560 samples after the end of the second
|
||||
// event. Expect that event to be erased.
|
||||
timestamp_now = timestamp + duration + 600;
|
||||
#ifdef LEGACY_BITEXACT
|
||||
|
||||
Reference in New Issue
Block a user