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

Bug: webrtc:12338
Change-Id: I6500650a1bb327f7a6b3b1dcffd2b861377da647
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/227092
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34625}
This commit is contained in:
Artem Titov 2021-07-28 20:23:40 +02:00 committed by WebRTC LUCI CQ
parent 270306d6bb
commit bc88b54d91

View file

@ -53,16 +53,16 @@ class AsyncAudioProcessing final {
~AsyncAudioProcessing();
// Creates AsyncAudioProcessing which will pass audio frames to
// |frame_processor| on |task_queue_| and reply with processed frames passed
// into |on_frame_processed_callback|, which is posted back onto
// |task_queue_|. |task_queue_| is created using the provided
// |task_queue_factory|.
// `frame_processor` on `task_queue_` and reply with processed frames passed
// into `on_frame_processed_callback`, which is posted back onto
// `task_queue_`. `task_queue_` is created using the provided
// `task_queue_factory`.
AsyncAudioProcessing(
AudioFrameProcessor& frame_processor,
TaskQueueFactory& task_queue_factory,
AudioFrameProcessor::OnAudioFrameCallback on_frame_processed_callback);
// Accepts |frame| for asynchronous processing. Thread-safe.
// Accepts `frame` for asynchronous processing. Thread-safe.
void Process(std::unique_ptr<AudioFrame> frame);
private: