Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: webrtc/modules/audio_processing/include/mock_audio_processing.h

Issue 1234463003: Integrate Intelligibility with APM (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updated interface, how VAD is used, other issues Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/include/mock_audio_processing.h
diff --git a/webrtc/modules/audio_processing/include/mock_audio_processing.h b/webrtc/modules/audio_processing/include/mock_audio_processing.h
index 480d0e34b2c686574ed7301b48be3530def35b5d..005c36fb97fc513d2c90a5bed5fb9875b76ab8ad 100644
--- a/webrtc/modules/audio_processing/include/mock_audio_processing.h
+++ b/webrtc/modules/audio_processing/include/mock_audio_processing.h
@@ -221,8 +221,15 @@ class MockAudioProcessing : public AudioProcessing {
MOCK_METHOD1(AnalyzeReverseStream,
int(AudioFrame* frame));
MOCK_METHOD4(AnalyzeReverseStream,
- int(const float* const* data, int frames, int sample_rate_hz,
- ChannelLayout input_layout));
+ int(const float* const* data,
+ int frames,
+ int sample_rate_hz,
+ ChannelLayout input_layout));
+ MOCK_METHOD4(ProcessReverseStream,
+ int(float* const* data,
+ int samples_per_channel,
aluebs-webrtc 2015/07/20 19:33:43 Maybe change both to num_frames, since it is the n
ekm 2015/07/21 01:02:44 Done.
+ int sample_rate_hz,
+ ChannelLayout layout));
aluebs-webrtc 2015/07/20 19:33:43 input_layout, to be consistent.
ekm 2015/07/21 01:02:43 Done.
MOCK_METHOD1(set_stream_delay_ms,
int(int delay));
MOCK_CONST_METHOD0(stream_delay_ms,

Powered by Google App Engine
This is Rietveld 408576698