HomeSort by relevance Sort by last modified time
    Searched refs:micVol (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
analog_agc.c 201 if (stt->micVol > stt->maxAnalog)
203 /* |maxLevel| is strictly >= |micVol|, so this condition should be
208 tmp16 = (int16_t)(stt->micVol - stt->maxAnalog);
215 * If micVol drops below maxAnalog, we allow the gain
460 gainIdx = stt->micVol;
461 if (stt->micVol > stt->maxAnalog)
469 stt->micVol = 127;
657 stt->micVol = *inMicLevel;
663 " micVol: %d\n",
665 stt->micVol);
    [all...]
analog_agc.h 106 int32_t micVol; // Remember volume between frames
  /external/chromium_org/third_party/webrtc/voice_engine/
voe_volume_control_impl.cc 150 uint32_t micVol(0);
166 if (_shared->audio_device()->MicrophoneVolume(&micVol) != 0) {
171 if (micVol >= maxVol)
176 micVol = (uint32_t) ((volume * maxVol +
180 if (_shared->audio_device()->SetMicrophoneVolume(micVol) != 0)
200 uint32_t micVol(0);
203 if (_shared->audio_device()->MicrophoneVolume(&micVol) != 0)
217 if (micVol < maxVol) {
219 volume = (uint32_t) ((micVol * kMaxVolumeLevel +

Completed in 31 milliseconds