Home
last modified time | relevance | path

Searched refs:suppressor (Results 1 – 23 of 23) sorted by relevance

/external/webrtc/api/audio/test/
Decho_canceller3_config_json_unittest.cc25 cfg.suppressor.normal_tuning.mask_hf.enr_suppress = .5f; in TEST()
26 cfg.suppressor.subband_nearend_detection.nearend_average_blocks = 3; in TEST()
27 cfg.suppressor.subband_nearend_detection.subband1 = {1, 3}; in TEST()
28 cfg.suppressor.subband_nearend_detection.subband1 = {4, 5}; in TEST()
29 cfg.suppressor.subband_nearend_detection.nearend_threshold = 2.f; in TEST()
30 cfg.suppressor.subband_nearend_detection.snr_threshold = 100.f; in TEST()
37 EXPECT_EQ(cfg.suppressor.normal_tuning.mask_lf.enr_suppress, in TEST()
38 cfg_transformed.suppressor.normal_tuning.mask_lf.enr_suppress); in TEST()
51 EXPECT_EQ(cfg.suppressor.normal_tuning.mask_hf.enr_suppress, in TEST()
52 cfg_transformed.suppressor.normal_tuning.mask_hf.enr_suppress); in TEST()
[all …]
/external/webrtc/modules/audio_processing/aec3/
Decho_canceller3_unittest.cc711 default_config.suppressor.high_bands_suppression.anti_howling_gain, in TEST()
712 adjusted_config.suppressor.high_bands_suppression.anti_howling_gain); in TEST()
719 default_config.suppressor.high_bands_suppression.anti_howling_gain, in TEST()
720 adjusted_config.suppressor.high_bands_suppression.anti_howling_gain); in TEST()
723 adjusted_config.suppressor.high_bands_suppression.anti_howling_gain); in TEST()
763 ASSERT_NE(adjusted_config.suppressor.nearend_tuning.mask_lf.enr_transparent, in TEST()
764 default_config.suppressor.nearend_tuning.mask_lf.enr_transparent); in TEST()
765 ASSERT_NE(adjusted_config.suppressor.nearend_tuning.mask_lf.enr_suppress, in TEST()
766 default_config.suppressor.nearend_tuning.mask_lf.enr_suppress); in TEST()
767 ASSERT_NE(adjusted_config.suppressor.nearend_tuning.mask_hf.enr_transparent, in TEST()
[all …]
Decho_canceller3.cc311 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = 0.5f; in AdjustConfig()
314 adjusted_cfg.suppressor.dominant_nearend_detection.enr_threshold = 0.75f; in AdjustConfig()
318 adjusted_cfg.suppressor.high_bands_suppression.anti_howling_gain = 1.f; in AdjustConfig()
323 adjusted_cfg.suppressor.normal_tuning.mask_lf.enr_transparent = 0.4f; in AdjustConfig()
324 adjusted_cfg.suppressor.normal_tuning.mask_lf.enr_suppress = 0.5f; in AdjustConfig()
329 adjusted_cfg.suppressor.nearend_tuning.mask_lf.enr_transparent = 1.29f; in AdjustConfig()
330 adjusted_cfg.suppressor.nearend_tuning.mask_lf.enr_suppress = 1.3f; in AdjustConfig()
335 adjusted_cfg.suppressor.normal_tuning.mask_hf.enr_transparent = 0.3f; in AdjustConfig()
336 adjusted_cfg.suppressor.normal_tuning.mask_hf.enr_suppress = 0.4f; in AdjustConfig()
341 adjusted_cfg.suppressor.nearend_tuning.mask_hf.enr_transparent = 1.09f; in AdjustConfig()
[all …]
Dsuppression_gain.cc155 kBlockSize * config_.suppressor.high_bands_suppression in UpperBandsGain()
164 config_.suppressor.high_bands_suppression.anti_howling_gain * in UpperBandsGain()
171 const auto& cfg = config_.suppressor.high_bands_suppression; in UpperBandsGain()
255 const auto& floor = config_.suppressor.floor_first_increase; in GetMaxGain()
327 config.suppressor.nearend_average_blocks)),
328 nearend_params_(config_.suppressor.nearend_tuning),
329 normal_params_(config_.suppressor.normal_tuning) {
332 if (config_.suppressor.use_subband_nearend_detection) {
334 config_.suppressor.subband_nearend_detection, num_capture_channels_);
337 config_.suppressor.dominant_nearend_detection, num_capture_channels_);
/external/webrtc/api/audio/
Decho_canceller3_config_json.cc314 &cfg.suppressor.nearend_average_blocks); in Aec3ConfigFromJsonString()
317 ReadParam(subsection, "mask_lf", &cfg.suppressor.normal_tuning.mask_lf); in Aec3ConfigFromJsonString()
318 ReadParam(subsection, "mask_hf", &cfg.suppressor.normal_tuning.mask_hf); in Aec3ConfigFromJsonString()
320 &cfg.suppressor.normal_tuning.max_inc_factor); in Aec3ConfigFromJsonString()
322 &cfg.suppressor.normal_tuning.max_dec_factor_lf); in Aec3ConfigFromJsonString()
326 ReadParam(subsection, "mask_lf", &cfg.suppressor.nearend_tuning.mask_lf); in Aec3ConfigFromJsonString()
327 ReadParam(subsection, "mask_hf", &cfg.suppressor.nearend_tuning.mask_hf); in Aec3ConfigFromJsonString()
329 &cfg.suppressor.nearend_tuning.max_inc_factor); in Aec3ConfigFromJsonString()
331 &cfg.suppressor.nearend_tuning.max_dec_factor_lf); in Aec3ConfigFromJsonString()
337 &cfg.suppressor.dominant_nearend_detection.enr_threshold); in Aec3ConfigFromJsonString()
[all …]
Decho_canceller3_config.cc198 res = res & Limit(&c->suppressor.nearend_average_blocks, 1, 5000); in Validate()
201 Limit(&c->suppressor.normal_tuning.mask_lf.enr_transparent, 0.f, 100.f); in Validate()
203 Limit(&c->suppressor.normal_tuning.mask_lf.enr_suppress, 0.f, 100.f); in Validate()
205 Limit(&c->suppressor.normal_tuning.mask_lf.emr_transparent, 0.f, 100.f); in Validate()
207 Limit(&c->suppressor.normal_tuning.mask_hf.enr_transparent, 0.f, 100.f); in Validate()
209 Limit(&c->suppressor.normal_tuning.mask_hf.enr_suppress, 0.f, 100.f); in Validate()
211 Limit(&c->suppressor.normal_tuning.mask_hf.emr_transparent, 0.f, 100.f); in Validate()
212 res = res & Limit(&c->suppressor.normal_tuning.max_inc_factor, 0.f, 100.f); in Validate()
213 res = res & Limit(&c->suppressor.normal_tuning.max_dec_factor_lf, 0.f, 100.f); in Validate()
215 res = res & Limit(&c->suppressor.nearend_tuning.mask_lf.enr_transparent, 0.f, in Validate()
[all …]
Decho_canceller3_config.h223 } suppressor; member
/external/guava/guava-tests/test/com/google/common/io/
DCloserTest.java43 private TestSuppressor suppressor; field in CloserTest
47 suppressor = new TestSuppressor(); in setUp()
52 assertThat(Closer.create().suppressor).isInstanceOf(Closer.SuppressingSuppressor.class); in testCreate()
56 Closer closer = new Closer(suppressor); in testNoExceptionsThrown()
72 assertTrue(suppressor.suppressions.isEmpty()); in testNoExceptionsThrown()
76 Closer closer = new Closer(suppressor); in testExceptionThrown_fromTryBlock()
98 assertTrue(suppressor.suppressions.isEmpty()); in testExceptionThrown_fromTryBlock()
102 Closer closer = new Closer(suppressor); in testExceptionThrown_whenCreatingCloseables()
125 assertTrue(suppressor.suppressions.isEmpty()); in testExceptionThrown_whenCreatingCloseables()
129 Closer closer = new Closer(suppressor); in testExceptionThrown_whileClosingLastCloseable()
[all …]
/external/guava/android/guava-tests/test/com/google/common/io/
DCloserTest.java43 private TestSuppressor suppressor; field in CloserTest
47 suppressor = new TestSuppressor(); in setUp()
52 assertThat(Closer.create().suppressor).isInstanceOf(Closer.SuppressingSuppressor.class); in testCreate()
56 Closer closer = new Closer(suppressor); in testNoExceptionsThrown()
72 assertTrue(suppressor.suppressions.isEmpty()); in testNoExceptionsThrown()
76 Closer closer = new Closer(suppressor); in testExceptionThrown_fromTryBlock()
98 assertTrue(suppressor.suppressions.isEmpty()); in testExceptionThrown_fromTryBlock()
102 Closer closer = new Closer(suppressor); in testExceptionThrown_whenCreatingCloseables()
125 assertTrue(suppressor.suppressions.isEmpty()); in testExceptionThrown_whenCreatingCloseables()
129 Closer closer = new Closer(suppressor); in testExceptionThrown_whileClosingLastCloseable()
[all …]
/external/desugar/test/java/com/google/devtools/build/android/desugar/runtime/
DThrowableExtensionTest.java132 Exception suppressor = new Exception(); in testCloseResource() local
133 ThrowableExtension.closeResource(suppressor, r); in testCloseResource()
135 assertThat(ThrowableExtension.getSuppressed(suppressor)).isEmpty(); in testCloseResource()
146 Exception suppressor = new Exception(); in testCloseResource() local
147 assertThrows(Exception.class, () -> ThrowableExtension.closeResource(suppressor, r)); in testCloseResource()
150 assertThat(ThrowableExtension.getSuppressed(suppressor)).hasLength(1); in testCloseResource()
151 assertThat(ThrowableExtension.getSuppressed(suppressor)[0].getClass()) in testCloseResource()
164 Exception suppressor = new Exception(); in testCloseResource() local
165 ThrowableExtension.closeResource(suppressor, r); in testCloseResource()
167 assertThat(ThrowableExtension.getSuppressed(suppressor)).isEmpty(); in testCloseResource()
[all …]
/external/guava/android/guava/src/com/google/common/io/
DCloser.java104 @VisibleForTesting final Suppressor suppressor; field in Closer
111 Closer(Suppressor suppressor) { in Closer() argument
112 this.suppressor = checkNotNull(suppressor); // checkNotNull to satisfy null tests in Closer()
218 suppressor.suppress(closeable, throwable, e); in close()
/external/guava/guava/src/com/google/common/io/
DCloser.java104 @VisibleForTesting final Suppressor suppressor; field in Closer
111 Closer(Suppressor suppressor) { in Closer() argument
112 this.suppressor = checkNotNull(suppressor); // checkNotNull to satisfy null tests in Closer()
218 suppressor.suppress(closeable, throwable, e); in close()
/external/desugar/test/java/com/google/devtools/build/android/desugar/classes_for_testing_type_inference/testsubjects/
DTestSubject.java118 public void closeResource(AutoCloseable resource, Throwable suppressor) throws Exception { in closeResource() argument
125 if (suppressor != null) { in closeResource()
126 suppressor.addSuppressed(e); in closeResource()
/external/webrtc/modules/audio_processing/transient/
Dtransient_suppression_test.cc168 TransientSuppressorImpl suppressor; in void_main() local
169 suppressor.Initialize(absl::GetFlag(FLAGS_sample_rate_hz), detection_rate_hz, in void_main()
202 ASSERT_EQ(0, suppressor.Suppress( in void_main()
/external/rnnoise/doc/
DDoxyfile.in5 PROJECT_BRIEF = "RNN-based noise suppressor."
/external/pdfium/testing/tools/
Dtest_runner.py19 import suppressor
360 self.test_suppressor = suppressor.Suppressor(
/external/webrtc/
Dnative-api.md111 The transient suppressor functionality in the audio processing module is not
Dwebrtc.gni265 # Set this to true to exclude the transient suppressor in the audio processing
/external/autotest/site_utils/
Dgenerate_test_report45 self.suppressor = person
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Den-IPA.txt4424 $x{suppressor → səprɛsər ; # səprɛsor
Dinternal_raw_IPA-old.txt190142 suppressor %20652 səprˈɛsər
Dinternal_raw_IPA.txt159151 suppressor %32149 səprˈɛsər