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

Side by Side Diff: talk/media/webrtc/fakewebrtcvoiceengine.h

Issue 1229443003: audio_processing: Adds two UMA histograms logging delay jumps in AEC (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Changed to use ENUMERATION 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/audio_processing_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2010 Google Inc. 3 * Copyright 2010 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 WEBRTC_STUB(set_stream_delay_ms, (int delay)); 145 WEBRTC_STUB(set_stream_delay_ms, (int delay));
146 WEBRTC_STUB_CONST(stream_delay_ms, ()); 146 WEBRTC_STUB_CONST(stream_delay_ms, ());
147 WEBRTC_BOOL_STUB_CONST(was_stream_delay_set, ()); 147 WEBRTC_BOOL_STUB_CONST(was_stream_delay_set, ());
148 WEBRTC_VOID_STUB(set_stream_key_pressed, (bool key_pressed)); 148 WEBRTC_VOID_STUB(set_stream_key_pressed, (bool key_pressed));
149 WEBRTC_BOOL_STUB_CONST(stream_key_pressed, ()); 149 WEBRTC_BOOL_STUB_CONST(stream_key_pressed, ());
150 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset)); 150 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset));
151 WEBRTC_STUB_CONST(delay_offset_ms, ()); 151 WEBRTC_STUB_CONST(delay_offset_ms, ());
152 WEBRTC_STUB(StartDebugRecording, (const char filename[kMaxFilenameSize])); 152 WEBRTC_STUB(StartDebugRecording, (const char filename[kMaxFilenameSize]));
153 WEBRTC_STUB(StartDebugRecording, (FILE* handle)); 153 WEBRTC_STUB(StartDebugRecording, (FILE* handle));
154 WEBRTC_STUB(StopDebugRecording, ()); 154 WEBRTC_STUB(StopDebugRecording, ());
155 WEBRTC_VOID_STUB(UpdateHistogramsOnCallEnd, ());
155 webrtc::EchoCancellation* echo_cancellation() const override { return NULL; } 156 webrtc::EchoCancellation* echo_cancellation() const override { return NULL; }
156 webrtc::EchoControlMobile* echo_control_mobile() const override { 157 webrtc::EchoControlMobile* echo_control_mobile() const override {
157 return NULL; 158 return NULL;
158 } 159 }
159 webrtc::GainControl* gain_control() const override { return NULL; } 160 webrtc::GainControl* gain_control() const override { return NULL; }
160 webrtc::HighPassFilter* high_pass_filter() const override { return NULL; } 161 webrtc::HighPassFilter* high_pass_filter() const override { return NULL; }
161 webrtc::LevelEstimator* level_estimator() const override { return NULL; } 162 webrtc::LevelEstimator* level_estimator() const override { return NULL; }
162 webrtc::NoiseSuppression* noise_suppression() const override { return NULL; } 163 webrtc::NoiseSuppression* noise_suppression() const override { return NULL; }
163 webrtc::VoiceDetection* voice_detection() const override { return NULL; } 164 webrtc::VoiceDetection* voice_detection() const override { return NULL; }
164 165
(...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 DtmfInfo dtmf_info_; 1270 DtmfInfo dtmf_info_;
1270 webrtc::VoEMediaProcess* media_processor_; 1271 webrtc::VoEMediaProcess* media_processor_;
1271 FakeAudioProcessing audio_processing_; 1272 FakeAudioProcessing audio_processing_;
1272 }; 1273 };
1273 1274
1274 #undef WEBRTC_CHECK_HEADER_EXTENSION_ID 1275 #undef WEBRTC_CHECK_HEADER_EXTENSION_ID
1275 1276
1276 } // namespace cricket 1277 } // namespace cricket
1277 1278
1278 #endif // TALK_SESSION_PHONE_FAKEWEBRTCVOICEENGINE_H_ 1279 #endif // TALK_SESSION_PHONE_FAKEWEBRTCVOICEENGINE_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/audio_processing_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698