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

  /external/webrtc/webrtc/modules/audio_processing/agc/legacy/
analog_agc.c 139 if (stt->micVol > stt->maxAnalog)
141 /* |maxLevel| is strictly >= |micVol|, so this condition should be
146 tmp16 = (int16_t)(stt->micVol - stt->maxAnalog);
153 * If micVol drops below maxAnalog, we allow the gain
349 gainIdx = stt->micVol;
350 if (stt->micVol > stt->maxAnalog)
358 stt->micVol = 127;
541 stt->micVol = *inMicLevel;
547 " micVol: %d\n",
549 stt->micVol);
    [all...]
analog_agc.h 106 int32_t micVol; // Remember volume between frames
  /external/webrtc/webrtc/voice_engine/
voe_volume_control_impl.cc 130 uint32_t micVol(0);
145 if (_shared->audio_device()->MicrophoneVolume(&micVol) != 0) {
150 if (micVol >= maxVol)
155 micVol = (uint32_t)((volume * maxVol + (int)(kMaxVolumeLevel / 2)) /
159 if (_shared->audio_device()->SetMicrophoneVolume(micVol) != 0) {
173 uint32_t micVol(0);
176 if (_shared->audio_device()->MicrophoneVolume(&micVol) != 0) {
188 if (micVol < maxVol) {
191 (uint32_t)((micVol * kMaxVolumeLevel + (int)(maxVol / 2)) / (maxVol));

Completed in 533 milliseconds