HomeSort by relevance Sort by last modified time
    Searched full:suppressor (Results 1 - 25 of 41) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_processing/
noise_suppression_impl.cc 31 class NoiseSuppressionImpl::Suppressor {
33 explicit Suppressor(int sample_rate_hz) {
39 ~Suppressor() {
45 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(Suppressor);
59 std::vector<rtc::scoped_ptr<Suppressor>> new_suppressors;
63 new_suppressors[i].reset(new Suppressor(sample_rate_hz));
145 for (auto& suppressor : suppressors_) {
146 int error = NS_SET_POLICY(suppressor->state(), policy);
161 for (auto& suppressor : suppressors_) {
163 WebRtcNs_prior_speech_probability(suppressor->state())
    [all...]
noise_suppression_impl.h 41 class Suppressor;
47 std::vector<rtc::scoped_ptr<Suppressor>> suppressors_ GUARDED_BY(crit_);
  /external/guava/guava-tests/test/com/google/common/io/
CloserTest.java 46 private TestSuppressor suppressor; field in class:CloserTest
50 suppressor = new TestSuppressor();
59 assertTrue(closer.suppressor instanceof Closer.LoggingSuppressor);
61 assertTrue(closer.suppressor instanceof Closer.SuppressingSuppressor);
66 Closer closer = new Closer(suppressor);
82 assertTrue(suppressor.suppressions.isEmpty());
86 Closer closer = new Closer(suppressor);
108 assertTrue(suppressor.suppressions.isEmpty());
112 Closer closer = new Closer(suppressor);
135 assertTrue(suppressor.suppressions.isEmpty())
    [all...]
  /external/guava/guava/src/com/google/common/io/
Closer.java 94 * The suppressor implementation to use for the current Java version.
96 private static final Suppressor SUPPRESSOR = SuppressingSuppressor.isAvailable()
104 return new Closer(SUPPRESSOR);
107 @VisibleForTesting final Suppressor suppressor; field in class:Closer
113 @VisibleForTesting Closer(Suppressor suppressor) {
114 this.suppressor = checkNotNull(suppressor); // checkNotNull to satisfy null test
    [all...]
  /external/pdfium/testing/tools/
run_pixel_tests.py 14 import suppressor
73 test_suppressor = suppressor.Suppressor(finder)
suppressor.py 10 class Suppressor:
run_corpus_tests.py 18 import suppressor
105 test_suppressor = suppressor.Suppressor(finder)
  /external/webrtc/webrtc/modules/audio_processing/transient/
transient_suppression_test.cc 143 // It gets an audio file, and its voice gain information, and the suppressor
175 TransientSuppressor suppressor; local
176 suppressor.Initialize(
217 suppressor.Suppress(audio_buffer_f.get(),
226 << "The transient suppressor could not suppress the frame";
transient_suppressor.h 45 // This suppressor performs better if voice information is available.
  /packages/apps/Settings/src/com/android/settings/notification/
SoundSettings.java 295 final ComponentName suppressor = NotificationManager.from(mContext).getEffectsSuppressor(); local
296 if (Objects.equals(suppressor, mSuppressor)) return;
297 mSuppressor = suppressor;
299 final String text = suppressor != null ?
301 getSuppressorCaption(suppressor)) : null;
307 private String getSuppressorCaption(ComponentName suppressor) {
310 final ServiceInfo info = pm.getServiceInfo(suppressor, 0);
321 Log.w(TAG, "Error loading suppressor caption", e);
323 return suppressor.getPackageName();
  /docs/source.android.com/src/devices/audio/
implement-pre-processing.jd 125 <li>Noise Suppressor
127 <li>Tuned for wind noise suppressor for <code>CAMCORDER</code></li>
128 <li>Tuned for stationary noise suppressor for <code>VOICE_COMMUNICATION</code></li>
  /frameworks/base/media/java/android/media/audiofx/
NoiseSuppressor.java 22 * Noise Suppressor (NS).
  /external/iproute2/man/man8/
ip-rule.8 49 .I SUPPRESSOR
52 .IR SUPPRESSOR " := [ "
  /external/webrtc/webrtc/modules/audio_device/android/
audio_manager_unittest.cc 70 PRINT("%sNoise Suppressor support: %s\n", kTag,
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_internal.h 156 // Suppressor.
aec_core.c     [all...]
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
EffectsTest.java 174 return "Noise Suppressor";
  /external/iproute2/ip/
iprule.c 43 fprintf(stderr, " SUPPRESSOR\n");
44 fprintf(stderr, "SUPPRESSOR := [ suppress_prefixlength NUMBER ]\n");
  /cts/tests/tests/media/src/android/media/cts/
AudioPreProcessingTest.java 42 // 1 - Noise Suppressor
  /external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
WebRtcAudioEffects.java 370 // Noise Suppressor (NS). Note that, an extra check for support is needed
  /external/opencv3/samples/cpp/
videostab.cpp 416 // init wobble suppressor if necessary
  /hardware/qcom/audio/voice_processing/
voice_processing.c 39 NS_ID, // Noise Suppressor
  /frameworks/native/include/media/openmax/
OMX_Audio.h     [all...]
  /hardware/qcom/media/msm8974/mm-core/inc/
OMX_Audio.h     [all...]
  /hardware/qcom/media/msm8974/mm-core/omxcore/inc/
OMX_Audio.h     [all...]

Completed in 562 milliseconds

1 2