From 13fc18068f3e9013e036d584c9c18acaa6f1430b Mon Sep 17 00:00:00 2001 From: alessiob Date: Wed, 19 Apr 2017 05:35:51 -0700 Subject: [PATCH] Minor correction in the docstring of AudioProcessing::set_stream_delay_ms(). BUG=webrtc:7494 NOTRY=True Review-Url: https://codereview.webrtc.org/2822253002 Cr-Commit-Position: refs/heads/master@{#17762} --- webrtc/modules/audio_processing/include/audio_processing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/audio_processing/include/audio_processing.h b/webrtc/modules/audio_processing/include/audio_processing.h index cc6772bf71..a1cd398b02 100644 --- a/webrtc/modules/audio_processing/include/audio_processing.h +++ b/webrtc/modules/audio_processing/include/audio_processing.h @@ -429,7 +429,7 @@ class AudioProcessing { // t_render is the time the first sample of the same frame is rendered by // the audio hardware. // - t_capture is the time the first sample of a frame is captured by the - // audio hardware and t_pull is the time the same frame is passed to + // audio hardware and t_process is the time the same frame is passed to // ProcessStream(). virtual int set_stream_delay_ms(int delay) = 0; virtual int stream_delay_ms() const = 0;