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

  /external/chromium_org/media/audio/
audio_input_volume_unittest.cc 137 double max_volume = ais->GetMaxVolume(); local
138 EXPECT_GT(max_volume, 0.0);
144 // Note that |original_volume| can be higher than |max_volume| on Linux.
145 EXPECT_LE(original_volume, max_volume);
149 ais->SetVolume(max_volume);
151 EXPECT_EQ(max_volume, current_volume);
165 new_volume = max_volume / 2;
172 EXPECT_LT(current_volume, max_volume);
174 EXPECT_NEAR(current_volume, new_volume, 0.25 * max_volume);
  /external/chromium_org/media/audio/cras/
cras_input_unittest.cc 177 double max_volume = test_stream->GetMaxVolume(); local
178 EXPECT_GE(max_volume, 1.0);
180 test_stream->SetVolume(max_volume / 2);
185 EXPECT_LE(new_volume, max_volume);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakeaudiocapturemodule.h 143 virtual int32_t MaxSpeakerVolume(uint32_t* max_volume) const OVERRIDE;
150 virtual int32_t MaxMicrophoneVolume(uint32_t* max_volume) const OVERRIDE;
fakeaudiocapturemodule.cc 357 uint32_t* /*max_volume*/) const {
393 uint32_t* max_volume) const {
394 *max_volume = kMaxVolume;
  /external/chromium_org/third_party/webrtc/voice_engine/
voe_base_impl.cc 1027 uint32_t max_volume = 0; local
    [all...]
  /external/chromium_org/content/browser/media/capture/
web_contents_audio_input_stream_unittest.cc 252 const double max_volume = wcais_->GetMaxVolume(); local
254 if (volume < max_volume) {
255 volume = max_volume;
  /external/chromium_org/content/renderer/media/
webrtc_audio_device_impl.h 319 virtual int32_t MaxMicrophoneVolume(uint32_t* max_volume) const OVERRIDE;
webrtc_audio_device_not_impl.cc 132 int32_t WebRtcAudioDeviceNotImpl::MaxSpeakerVolume(uint32_t* max_volume) const {
webrtc_audio_device_not_impl.h 68 virtual int32_t MaxSpeakerVolume(uint32_t* max_volume) const OVERRIDE;
webrtc_audio_device_impl.cc 391 int32_t WebRtcAudioDeviceImpl::MaxMicrophoneVolume(uint32_t* max_volume) const {
393 *max_volume = kMaxVolumeLevel;

Completed in 1109 milliseconds