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

Unified Diff: webrtc/modules/audio_processing/intelligibility/intelligibility_proc.cc

Issue 1235643003: Miscellaneous changes split from https://codereview.webrtc.org/1230503003 . (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: 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/intelligibility/intelligibility_proc.cc
diff --git a/webrtc/modules/audio_processing/intelligibility/intelligibility_proc.cc b/webrtc/modules/audio_processing/intelligibility/intelligibility_proc.cc
index 9f7d84e701af6b0a9f303866ae999e6dbec8c613..bdff3f048fd92f03ed45915200b869ebf1910c00 100644
--- a/webrtc/modules/audio_processing/intelligibility/intelligibility_proc.cc
+++ b/webrtc/modules/audio_processing/intelligibility/intelligibility_proc.cc
@@ -33,9 +33,11 @@
using std::complex;
namespace webrtc {
+namespace {
-using webrtc::RealFourier;
-using webrtc::IntelligibilityEnhancer;
+bool ValidateClearWindow(const char* flagname, int32_t value) {
+ return value >= 0;
+}
Peter Kasting 2015/07/10 18:48:46 This validator is necessary since we're going to w
DEFINE_int32(clear_type,
webrtc::intelligibility::VarianceArray::kStepInfinite,
@@ -44,6 +46,8 @@ DEFINE_double(clear_alpha, 0.9, "Variance decay factor for clear data.");
DEFINE_int32(clear_window,
475,
"Window size for windowed variance for clear data.");
+const bool clear_window_dummy =
+ google::RegisterFlagValidator(&FLAGS_clear_window, &ValidateClearWindow);
DEFINE_int32(sample_rate,
16000,
"Audio sample rate used in the input and output files.");
@@ -137,6 +141,7 @@ void void_main(int argc, char* argv[]) {
}
}
+} // namespace
} // namespace webrtc
int main(int argc, char* argv[]) {

Powered by Google App Engine
This is Rietveld 408576698