Searched refs:volume (Results 201 - 225 of 421) sorted by relevance

1234567891011>>

/external/chromium_org/media/audio/win/
H A Daudio_low_latency_input_win.cc223 // The effective volume value is always in the range 0.0 to 1.0, hence
228 void WASAPIAudioInputStream::SetVolume(double volume) { argument
229 DVLOG(1) << "SetVolume(volume=" << volume << ")";
231 DCHECK_GE(volume, 0.0);
232 DCHECK_LE(volume, 1.0);
238 // Set a new master volume level. Valid volume levels are in the range
239 // 0.0 to 1.0. Ignore volume-change events.
240 HRESULT hr = simple_audio_volume_->SetMasterVolume(static_cast<float>(volume),
364 double volume = GetVolume(); local
[all...]
H A Daudio_low_latency_input_win.h49 // the ISimpleAudioVolume interface to manage stream volume levels on a
51 // interface to control the master volume level of an audio endpoint device.
103 virtual void SetVolume(double volume) OVERRIDE;
203 // master volume level of an audio session.
204 // The volume-level is a value in the range 0.0 to 1.0.
H A Dwavein_input_win.h42 // TODO(henrika): Add volume support using the Audio Mixer API.
44 virtual void SetVolume(double volume) OVERRIDE;
H A Dwaveout_output_win.cc304 void PCMWaveOutAudioOutputStream::SetVolume(double volume) { argument
307 volume_ = static_cast<float>(volume);
310 void PCMWaveOutAudioOutputStream::GetVolume(double* volume) { argument
313 *volume = volume_;
/external/chromium_org/media/cast/test/utility/
H A Daudio_utility.cc21 float volume)
24 volume_(volume),
74 // changed changed the volume of the audio.
18 TestAudioBusFactory(int num_channels, int sample_rate, float sine_wave_frequency, float volume) argument
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dmediastreaminterface.h149 virtual void OnSetVolume(double volume) = 0;
157 // Sets the volume to the source. |volume| is in the range of [0, 10].
158 virtual void SetVolume(double volume) {} argument
/external/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Dopensles_output.h80 // Speaker volume controls
82 int32_t SetSpeakerVolume(uint32_t volume);
83 int32_t SpeakerVolume(uint32_t& volume) const { return 0; } // NOLINT
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_base_impl.h93 int volume,
130 // It returns new AGC microphone volume or 0 if no volume changes
140 uint32_t volume,
/external/lzma/CPP/7zip/Archive/7z/
H A D7zProperties.cpp102 const CVolume &volume = _volumes.Front(); local
103 const CArchiveDatabaseEx &_db = volume.Database;
/external/chromium_org/chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/
H A Dconsole_tts_engine.js12 var properties = ['voiceName', 'lang', 'gender', 'rate', 'pitch', 'volume'];
37 getTtsElement("volume").innerHTML = curOptions.volume;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/talking_alarm_clock/
H A Dpopup.js341 var volumeElement = $('volume');
343 var volume = localStorage['volume'] || DEFAULT_VOLUME;
345 volumeElement.value = volume;
349 volume = volumeElement.value;
350 localStorage['volume'] = volume;
/external/chromium_org/content/browser/renderer_host/media/
H A Daudio_renderer_host.h132 // Set the volume of the audio stream referenced by |stream_id|.
133 void OnSetVolume(int stream_id, double volume);
/external/chromium_org/content/renderer/media/
H A Dwebrtc_local_audio_renderer.h65 virtual void SetVolume(float volume) OVERRIDE;
156 // Cache value for the volume.
/external/chromium_org/content/renderer/pepper/
H A Dpepper_platform_audio_input.h66 virtual void OnVolume(double volume) OVERRIDE;
/external/chromium_org/media/audio/mac/
H A Daudio_auhal_mac.cc171 void AUHALStream::SetVolume(double volume) { argument
172 volume_ = static_cast<float>(volume);
175 void AUHALStream::GetVolume(double* volume) { argument
176 *volume = volume_;
H A Daudio_low_latency_input_mac.h74 virtual void SetVolume(double volume) OVERRIDE;
110 // Helper function to check if the volume control is avialable on specific
152 // when querying the volume of each channel.
/external/chromium_org/media/base/
H A Daudio_bus.h103 // Scale internal channel values by |volume| >= 0. If an invalid value
105 void Scale(float volume);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaController.h72 double volume() const { return m_volume; } function in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebMediaPlayerClient.h83 virtual double volume() const = 0;
/external/chromium_org/third_party/webrtc/modules/audio_device/
H A Daudio_device_impl.h123 // Speaker volume controls
125 virtual int32_t SetSpeakerVolume(uint32_t volume) OVERRIDE;
126 virtual int32_t SpeakerVolume(uint32_t* volume) const OVERRIDE;
132 // Microphone volume controls
134 virtual int32_t SetMicrophoneVolume(uint32_t volume) OVERRIDE;
135 virtual int32_t MicrophoneVolume(uint32_t* volume) const OVERRIDE;
/external/chromium_org/third_party/webrtc/modules/audio_device/linux/
H A Daudio_device_alsa_linux.h98 // Speaker volume controls
100 virtual int32_t SetSpeakerVolume(uint32_t volume) OVERRIDE;
101 virtual int32_t SpeakerVolume(uint32_t& volume) const OVERRIDE;
106 // Microphone volume controls
108 virtual int32_t SetMicrophoneVolume(uint32_t volume) OVERRIDE;
109 virtual int32_t MicrophoneVolume(uint32_t& volume) const OVERRIDE;
/external/chromium_org/third_party/webrtc/modules/audio_device/mac/
H A Daudio_device_mac.h116 // Speaker volume controls
118 virtual int32_t SetSpeakerVolume(uint32_t volume);
119 virtual int32_t SpeakerVolume(uint32_t& volume) const;
124 // Microphone volume controls
126 virtual int32_t SetMicrophoneVolume(uint32_t volume);
127 virtual int32_t MicrophoneVolume(uint32_t& volume) const;
/external/chromium_org/third_party/webrtc/modules/audio_device/win/
H A Daudio_device_wave_win.h102 // Speaker volume controls
104 virtual int32_t SetSpeakerVolume(uint32_t volume);
105 virtual int32_t SpeakerVolume(uint32_t& volume) const;
110 // Microphone volume controls
112 virtual int32_t SetMicrophoneVolume(uint32_t volume);
113 virtual int32_t MicrophoneVolume(uint32_t& volume) const;
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dmedia_controls.css36 /* Custom sliders for progress and volume. */
332 /* Volume controls: sound button and volume slider */
334 .volume-controls {
433 .custom-slider.volume {
441 .custom-slider.volume > input[type='range']::-webkit-slider-thumb {
448 .custom-slider.volume > input[type='range']::-webkit-slider-thumb:hover {
454 .custom-slider.volume > input[type='range']::-webkit-slider-thumb:active {
460 .custom-slider.volume.disabled > input[type='range']::-webkit-slider-thumb {
464 .custom-slider.volume > .bar {
487 .video-controls .volume
[all...]
/external/chromium_org/chrome/browser/chromeos/audio/
H A Daudio_devices_pref_handler_impl.cc184 double volume = kDefaultOutputVolume; local
185 bool success = it.value().GetAsDouble(&volume);
187 dict_update->SetDouble(it.key(), volume);

Completed in 550 milliseconds

1234567891011>>