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

  /cts/tests/tests/media/src/android/media/cts/
AudioPreProcessingTest.java 154 //Test case 3.1: test AGC creation and release
161 AutomaticGainControl agc = AutomaticGainControl.create(ar.getAudioSessionId()); local
162 assertTrue("AGC not available but created or available and not created",
163 isAvailable == (agc != null));
164 if (agc != null) {
165 agc.release();
174 //Test case 3.2: test AGC setEnabled() and getEnabled()
183 AutomaticGainControl agc = AutomaticGainControl.create(ar.getAudioSessionId()); local
184 assertNotNull("could not create AutomaticGainControl", agc);
186 agc.setEnabled(true)
    [all...]
  /frameworks/base/media/java/android/media/audiofx/
AutomaticGainControl.java 22 * Automatic Gain Control (AGC).
23 * <p>Automatic Gain Control (AGC) is an audio pre-processing which automatically normalizes the
26 * AGC can be used by applications where the input signal dynamic range is not important but where
28 * <p>An application creates a AutomaticGainControl object to instantiate and control an AGC
34 * <p>On some devices, an AGC can be inserted by default in the capture path by the platform
36 * call AutomaticGainControl.getEnable() after creating the AGC to check the default AGC activation
59 * @return AutomaticGainControl created or null if the device does not implement AGC.
62 AutomaticGainControl agc = null; local
64 agc = new AutomaticGainControl(audioSession)
    [all...]
  /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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
meye.h 41 unsigned char agc; member in struct:meye_params
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
meye.h 41 unsigned char agc; member in struct:meye_params
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
meye.h 41 unsigned char agc; member in struct:meye_params
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp 261 // Automatic Gain Control (AGC)
271 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine); local
272 agc->set_mode(webrtc::GainControl::kFixedDigital);
273 agc->set_target_level_dbfs(kAgcDefaultTargetLevel);
274 agc->set_compression_gain_db(kAgcDefaultCompGain);
275 agc->enable_limiter(kAgcDefaultLimiter);
281 webrtc::GainControl *agc = effect->session->apm->gain_control(); local
282 ALOGV("AgcCreate got agc %p", agc);
283 if (agc == NULL)
300 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine); local
361 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine); local
400 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine); local
408 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine); local
    [all...]
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/
wlioctl.h 1350 bool agc; member in struct:wl_samplecollect_args
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 1667 bool agc; member in struct:wl_samplecollect_args
    [all...]

Completed in 1303 milliseconds