HomeSort by relevance Sort by last modified time
    Searched defs:agc (Results 1 - 10 of 10) sorted by null

  /cts/tests/tests/media/src/android/media/cts/
AudioPreProcessingTest.java 171 //Test case 3.1: test AGC creation and release
182 AutomaticGainControl agc = AutomaticGainControl.create(ar.getAudioSessionId()); local
183 assertTrue("AGC not available but created or available and not created",
184 isAvailable == (agc != null));
185 if (agc != null) {
186 agc.release();
195 //Test case 3.2: test AGC setEnabled() and getEnabled()
208 AutomaticGainControl agc = AutomaticGainControl.create(ar.getAudioSessionId()); local
209 assertNotNull("could not create AutomaticGainControl", agc);
211 agc.setEnabled(true)
    [all...]
  /bionic/libc/kernel/uapi/linux/
meye.h 25 unsigned char agc; member in struct:meye_params
  /external/kernel-headers/original/uapi/linux/
meye.h 42 unsigned char agc; member in struct:meye_params
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
agc.cpp 34 Pathname: ./audio/gsm-amr/c/src/agc.c
40 agc
57 #include "agc.h"
120 agc.c, UMTS GSM AMR speech codec, R99 - Version 3.2.0, March 2, 2001
311 agc.c, UMTS GSM AMR speech codec, R99 - Version 3.2.0, March 2, 2001
526 Reset of agc (i.e. set state memory to 1.0).
536 agc.c, UMTS GSM AMR speech codec, R99 - Version 3.2.0, March 2, 2001
594 FUNCTION NAME: agc
599 st = pointer to agc state
602 agc_fac = AGC facto
737 void agc( function
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/transient/
transient_suppression_test.cc 21 #include "webrtc/modules/audio_processing/agc/agc.h"
173 Agc agc; local
207 agc.Process(audio_buffer_i.get(),
210 << "The AGC could not process the frame";
224 agc.voice_probability(),
  /external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
WebRtcAudioEffects.java 28 // effects are: AcousticEchoCanceler (AEC), AutomaticGainControl (AGC) and
55 private AutomaticGainControl agc = null; field in class:WebRtcAudioEffects
74 // Checks if the device implements Automatic Gain Control (AGC).
75 // Returns true if the device implements AGC, false otherwise.
99 // Returns true if the device is blacklisted for HW AGC usage.
105 Logging.w(TAG, Build.MODEL + " is blacklisted for HW AGC usage!");
134 // Returns true if the platform AGC should be excluded based on its UUID.
175 // Returns true if all conditions for supporting the HW AGC are fulfilled.
176 // It will not be possible to enable the HW AGC if this method returns false.
205 // Return null if VoIP effects (AEC, AGC and NS) are not supported
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
debug_dump_test.cc 441 // AGC configs.
568 // AGC may not be supported on Android.
579 GainControl* agc = generator.apm()->gain_control(); local
580 EXPECT_EQ(AudioProcessing::kNoError, agc->Enable(!agc->is_enabled()));
  /external/webrtc/webrtc/voice_engine/
voe_base_impl.cc 354 GainControl* agc = audioproc->gain_control(); local
355 if (agc->set_analog_level_limits(kMinVolumeLevel, kMaxVolumeLevel) != 0) {
360 if (agc->set_mode(kDefaultAgcMode) != 0) {
364 if (agc->Enable(kDefaultAgcState) != 0) {
365 LOG_F(LS_ERROR) << "Failed to set agc state: " << kDefaultAgcState;
372 agc->mode() == GainControl::kAdaptiveAnalog && agc->is_enabled();
374 LOG_F(LS_ERROR) << "Failed to set agc to enabled: " << agc_enabled;
757 // Return the new volume if AGC has changed the volume.
transmit_mixer.cc 1247 GainControl* agc = audioproc_->gain_control(); local
    [all...]
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp 262 // Automatic Gain Control (AGC)
272 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine); local
273 agc->set_mode(webrtc::GainControl::kFixedDigital);
274 agc->set_target_level_dbfs(kAgcDefaultTargetLevel);
275 agc->set_compression_gain_db(kAgcDefaultCompGain);
276 agc->enable_limiter(kAgcDefaultLimiter);
282 webrtc::GainControl *agc = effect->session->apm->gain_control(); local
283 ALOGV("AgcCreate got agc %p", agc);
284 if (agc == NULL)
301 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine); local
362 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine); local
401 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine); local
409 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine); local
    [all...]

Completed in 306 milliseconds