Use backticks not vertical bars to denote variables in comments for /modules/audio_processing

Bug: webrtc:12338
Change-Id: I85bff694dd2ead83c939c4d1945eff82e1296001
No-Presubmit: True
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/227161
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34690}
This commit is contained in:
Artem Titov
2021-07-28 20:50:03 +02:00
committed by WebRTC LUCI CQ
parent dc6801c618
commit 0b489303d2
102 changed files with 483 additions and 483 deletions

View File

@ -22,7 +22,7 @@ class RTC_EXPORT TypingDetection {
// Run the detection algortihm. Shall be called every 10 ms. Returns true if
// typing is detected, or false if not, based on the update period as set with
// SetParameters(). See |report_detection_update_period_| description below.
// SetParameters(). See `report_detection_update_period_` description below.
bool Process(bool key_pressed, bool vad_activity);
// Gets the time in seconds since the last detection.
@ -43,14 +43,14 @@ class RTC_EXPORT TypingDetection {
int penalty_counter_;
// Counter since last time the detection status reported by Process() was
// updated. See also |report_detection_update_period_|.
// updated. See also `report_detection_update_period_`.
int counter_since_last_detection_update_;
// The detection status to report. Updated every
// |report_detection_update_period_| call to Process().
// `report_detection_update_period_` call to Process().
bool detection_to_report_;
// What |detection_to_report_| should be set to next time it is updated.
// What `detection_to_report_` should be set to next time it is updated.
bool new_detection_to_report_;
// Settable threshold values.
@ -61,10 +61,10 @@ class RTC_EXPORT TypingDetection {
// Penalty added for a typing + activity coincide.
int cost_per_typing_;
// Threshold for |penalty_counter_|.
// Threshold for `penalty_counter_`.
int reporting_threshold_;
// How much we reduce |penalty_counter_| every 10 ms.
// How much we reduce `penalty_counter_` every 10 ms.
int penalty_decay_;
// How old typing events we allow.