mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00
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:
parent
270306d6bb
commit
bc88b54d91
1 changed files with 5 additions and 5 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue