Searched refs:volume (Results 76 - 100 of 421) sorted by relevance

1234567891011>>

/external/chromium_org/media/audio/
H A Dnull_audio_sink.cc67 bool NullAudioSink::SetVolume(double volume) { argument
69 return volume == 0.0;
H A Daudio_input_controller.h141 double volume,
221 // Sets the capture volume of the input stream. The value 0.0 corresponds
222 // to muted and 1.0 to maximum volume.
223 virtual void SetVolume(double volume);
234 double volume) OVERRIDE;
262 void DoSetVolume(double volume);
H A Daudio_output_dispatcher.h58 // Called by AudioOutputProxy when the volume is set.
60 double volume) = 0;
H A Dclockless_audio_sink.h34 virtual bool SetVolume(double volume) OVERRIDE;
H A Dnull_audio_sink.h34 virtual bool SetVolume(double volume) OVERRIDE;
/external/chromium_org/media/audio/pulse/
H A Dpulse_input.cc140 void PulseAudioInputStream::SetVolume(double volume) { argument
160 pa_cvolume_set(&pa_volume, channels_, volume);
223 pa_volume_t volume = PA_VOLUME_MUTED; // Minimum possible value. local
224 // Use the max volume of any channel as the volume.
226 if (volume < info->volume.values[i])
227 volume = info->volume.values[i];
232 stream->volume_ = static_cast<double>(volume);
[all...]
H A Dpulse_output.h51 virtual void SetVolume(double volume) OVERRIDE;
52 virtual void GetVolume(double* volume) OVERRIDE;
84 // Float representation of volume from 0.0 to 1.0.
/external/chromium_org/media/audio/win/
H A Dwaveout_output_win.h48 virtual void SetVolume(double volume);
49 virtual void GetVolume(double* volume);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaController.idl50 [RaisesException=Setter] attribute double volume;
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesisUtterance.idl35 attribute float volume;
/external/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Daudio_device_template.h199 int32_t SetSpeakerVolume(uint32_t volume) { argument
200 return output_.SetSpeakerVolume(volume);
204 uint32_t& volume) const { // NOLINT
205 return output_.SpeakerVolume(volume);
228 int32_t SetMicrophoneVolume(uint32_t volume) { argument
229 return input_.SetMicrophoneVolume(volume);
233 uint32_t& volume) const { // NOLINT
234 return input_.MicrophoneVolume(volume);
/external/chromium_org/third_party/webrtc/voice_engine/
H A Ddtmf_inband.h54 int16_t volume,
65 int16_t volume,
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_mixer.c89 /* The volume ranges from 0 - 128 */
93 void SDL_MixAudio (Uint8 *dst, const Uint8 *src, Uint32 len, int volume) argument
97 if ( volume == 0 ) {
115 SDL_MixAudio_m68k_U8((char*)dst,(char*)src,(unsigned long)len,(long)volume,(char *)mix8);
121 ADJUST_VOLUME_U8(src_sample, volume);
135 SDL_MixAudio_MMX_S8((char*)dst,(char*)src,(unsigned int)len,(int)volume);
141 SDL_MixAudio_MMX_S8_VC((char*)dst,(char*)src,(unsigned int)len,(int)volume);
148 SDL_MixAudio_m68k_S8((char*)dst,(char*)src,(unsigned long)len,(long)volume);
161 ADJUST_VOLUME(src_sample, volume);
184 SDL_MixAudio_MMX_S16((char*)dst,(char*)src,(unsigned int)len,(int)volume);
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_device/linux/
H A Daudio_mixer_manager_pulse_linux.cc230 uint32_t volume)
233 "AudioMixerManagerLinuxPulse::SetSpeakerVolume(volume=%u)",
234 volume);
250 // We can only really set the volume if we have a connected stream
264 // Set the same volume for all channels
266 LATE(pa_cvolume_set)(&cVolumes, spec->channels, volume);
286 // Save the volume to be set at connection
287 _paSpeakerVolume = volume;
293 " could not set speaker volume, error%d",
303 AudioMixerManagerLinuxPulse::SpeakerVolume(uint32_t& volume) cons
229 SetSpeakerVolume( uint32_t volume) argument
804 SetMicrophoneVolume(uint32_t volume) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DMovieHeaderBox.java41 private float volume = 1.0f; field in class:MovieHeaderBox
80 return volume;
117 volume = IsoTypeReader.readFixedPoint88(content);
150 result.append("volume=").append(getVolume());
177 IsoTypeWriter.writeFixedPont88(byteBuffer, volume);
219 public void setVolume(float volume) { argument
220 this.volume = volume;
H A DTrackHeaderBox.java45 private float volume; field in class:TrackHeaderBox
81 return volume;
127 volume = IsoTypeReader.readFixedPoint88(content);
156 IsoTypeWriter.writeFixedPont88(byteBuffer, volume);
180 result.append("volume=").append(getVolume());
217 public void setVolume(float volume) { argument
218 this.volume = volume;
/external/chromium_org/chrome/browser/resources/network_speech_synthesis/
H A Dtts_extension.js218 if (this.currentUtterance_.options.volume !== undefined) {
219 // Both APIs use the same range for volume, between 0.0 and 1.0.
220 this.audioElement_.volume = this.currentUtterance_.options.volume;
/external/chromium_org/content/renderer/media/
H A Dwebaudio_capturer_source.cc112 int volume = 0; local
115 capturer_->GetAudioProcessingParams(&delay, &volume, &key_pressed);
129 track_->Capture(audio_data_.get(), delay, volume, key_pressed,
H A Dwebrtc_audio_capturer.h85 void SetVolume(int volume);
112 void GetAudioProcessingParams(base::TimeDelta* delay, int* volume,
138 double volume,
193 // Stores latest microphone volume received in a CaptureData() callback.
H A Dwebrtc_audio_capturer_unittest.cc33 MOCK_METHOD1(SetVolume, void(double volume));
118 double volume = 0.9; local
122 int expected_volume_value = volume * capturer_->MaxVolume() + 0.5;
134 callback->Capture(audio_bus.get(), delay_ms, volume, key_pressed);
157 // Pass the delay value, volume and key_pressed info via capture callback, and
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMediaControls.cpp84 if (mediaElement->muted() || mediaElement->volume() <= 0)
87 if (mediaElement->volume() <= 0.33)
90 if (mediaElement->volume() <= 0.66)
274 // Calculate volume position for white background rectangle.
275 float volume = mediaElement->volume(); local
276 if (std::isnan(volume) || volume < 0)
278 if (volume > 1)
279 volume
[all...]
/external/srec/audio/AudioIn/UNIX/src/
H A Daudioinwrapper.cpp149 int AudioSetVolume(int stream_type, int volume) argument
154 return AudioSystem::setStreamVolume(stream_type, volume, 0);
206 int AudioSetVolume(int stream_type, int volume) argument
/external/chromium_org/chrome/browser/extensions/api/audio/
H A Daudio_service.h50 // Set the muted and volume/gain properties of a device.
53 int volume,
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
H A Dearcons_background.js71 this.currentAudio.volume = 0.7;
/external/chromium_org/chrome/common/
H A Dtts_messages.h20 IPC_STRUCT_TRAITS_MEMBER(volume)

Completed in 2712 milliseconds

1234567891011>>