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}
diff --git a/modules/audio_coding/neteq/accelerate.h b/modules/audio_coding/neteq/accelerate.h index 124b633..e03f609 100644 --- a/modules/audio_coding/neteq/accelerate.h +++ b/modules/audio_coding/neteq/accelerate.h
@@ -34,10 +34,10 @@ : TimeStretch(sample_rate_hz, num_channels, background_noise) {} // This method performs the actual Accelerate operation. The samples are - // read from |input|, of length |input_length| elements, and are written to - // |output|. The number of samples removed through time-stretching is - // is provided in the output |length_change_samples|. The method returns - // the outcome of the operation as an enumerator value. If |fast_accelerate| + // read from `input`, of length `input_length` elements, and are written to + // `output`. The number of samples removed through time-stretching is + // is provided in the output `length_change_samples`. The method returns + // the outcome of the operation as an enumerator value. If `fast_accelerate` // is true, the algorithm will relax the requirements on finding strong // correlations, and may remove multiple pitch periods if possible. ReturnCodes Process(const int16_t* input, @@ -47,7 +47,7 @@ size_t* length_change_samples); protected: - // Sets the parameters |best_correlation| and |peak_index| to suitable + // Sets the parameters `best_correlation` and `peak_index` to suitable // values when the signal contains no active speech. void SetParametersForPassiveSpeech(size_t len, int16_t* best_correlation,