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

  /external/chromium_org/media/audio/
audio_input_volume_unittest.cc 150 double current_volume = ais->GetVolume(); local
151 EXPECT_EQ(max_volume, current_volume);
157 current_volume = GetVolumeAfterSetVolumeOnLinux(ais, new_volume);
159 current_volume = ais->GetVolume();
161 EXPECT_EQ(new_volume, current_volume);
168 current_volume = GetVolumeAfterSetVolumeOnLinux(ais, new_volume);
170 current_volume = ais->GetVolume();
172 EXPECT_LT(current_volume, max_volume);
173 EXPECT_GT(current_volume, 0);
174 EXPECT_NEAR(current_volume, new_volume, 0.25 * max_volume)
    [all...]
  /external/chromium_org/media/audio/alsa/
alsa_input.cc 327 long current_volume = 0; local
330 &current_volume);
336 return static_cast<double>(current_volume);
  /external/chromium_org/ash/system/audio/
volume_view.cc 304 float current_volume = audio_delegate_->GetOutputVolumeLevel(); local
307 if (std::abs(new_volume - current_volume) < 1.0f)
313 if (new_volume > current_volume)
  /external/chromium_org/content/renderer/media/
webrtc_audio_capturer.cc 478 int current_volume = 0; local
490 current_volume = volume_ > MaxVolume() ? MaxVolume() : volume_;
547 audio_delay, current_volume, key_pressed, &new_volume, &output)) {
551 (*it)->Capture(output, audio_delay, current_volume, key_pressed,
558 // Update the |current_volume| to avoid passing the old volume to AGC.
559 current_volume = new_volume;

Completed in 944 milliseconds