HomeSort by relevance Sort by last modified time
    Searched refs:volume (Results 26 - 50 of 978) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/media/audio/
audio_input_ipc.h 44 // Called when the input stream volume has changed.
45 virtual void OnVolume(double volume) = 0;
79 // Sets the volume of the audio stream.
80 virtual void SetVolume(double volume) = 0;
audio_output_proxy.h 38 virtual void SetVolume(double volume) OVERRIDE;
39 virtual void GetVolume(double* volume) OVERRIDE;
57 // Need to save volume here, so that we can restore it in case the stream
fake_audio_output_stream.h 29 virtual void SetVolume(double volume) OVERRIDE;
30 virtual void GetVolume(double* volume) OVERRIDE;
virtual_audio_output_stream.cc 64 void VirtualAudioOutputStream::SetVolume(double volume) {
66 volume_ = volume;
69 void VirtualAudioOutputStream::GetVolume(double* volume) {
71 *volume = volume_;
  /external/chromium_org/media/base/
fake_audio_render_callback.h 47 // Set volume information used by ProvideAudioTransformInput().
48 void set_volume(double volume) { volume_ = volume; }
audio_renderer_sink.h 55 // Sets the playback volume, with range [0.0, 1.0] inclusive.
57 virtual bool SetVolume(double volume) = 0;
mock_audio_renderer_sink.h 22 MOCK_METHOD1(SetVolume, bool(double volume));
  /frameworks/base/media/java/android/media/
IRemoteDisplayProvider.aidl 29 void setVolume(String id, int volume);
  /external/chromium_org/chrome/browser/extensions/api/system_private/
system_private_api.h 58 void DispatchVolumeChangedEvent(double volume, bool is_volume_muted);
  /external/chromium_org/content/renderer/media/
media_stream_audio_renderer.h 29 // Sets the output volume.
30 virtual void SetVolume(float volume) = 0;
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesisUtterance.h 56 float volume() const { return m_platformUtterance->volume(); } function in class:WebCore::FINAL
57 void setVolume(float volume) { m_platformUtterance->setVolume(volume); }
  /external/chromium_org/third_party/webrtc/modules/audio_device/linux/
audio_mixer_manager_alsa_linux.h 29 int32_t SetSpeakerVolume(uint32_t volume);
30 int32_t SpeakerVolume(uint32_t& volume) const;
45 int32_t SetMicrophoneVolume(uint32_t volume);
46 int32_t MicrophoneVolume(uint32_t& volume) const;
  /external/chromium_org/third_party/webrtc/modules/audio_device/mac/
audio_mixer_manager_mac.h 27 int32_t SetSpeakerVolume(uint32_t volume);
28 int32_t SpeakerVolume(uint32_t& volume) const;
45 int32_t SetMicrophoneVolume(uint32_t volume);
46 int32_t MicrophoneVolume(uint32_t& volume) const;
  /external/sonivox/arm-fm-22k/lib_src/
eas_math.c 148 * Transform volume control in 1dB increments to gain multiplier
151 * volume - 100 = 0dB, 99 = -1dB, 0 = -inf
157 EAS_I16 EAS_VolumeToGain (EAS_INT volume)
160 if (volume <= 0)
162 if (volume >= 100)
166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1);
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_math.c 148 * Transform volume control in 1dB increments to gain multiplier
151 * volume - 100 = 0dB, 99 = -1dB, 0 = -inf
157 EAS_I16 EAS_VolumeToGain (EAS_INT volume)
160 if (volume <= 0)
162 if (volume >= 100)
166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1);
  /external/sonivox/arm-wt-22k/lib_src/
eas_math.c 148 * Transform volume control in 1dB increments to gain multiplier
151 * volume - 100 = 0dB, 99 = -1dB, 0 = -inf
157 EAS_I16 EAS_VolumeToGain (EAS_INT volume)
160 if (volume <= 0)
162 if (volume >= 100)
166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1);
  /frameworks/wilhelm/src/itf/
IDeviceVolume.c 49 static SLresult IDeviceVolume_SetVolume(SLDeviceVolumeItf self, SLuint32 deviceID, SLint32 volume)
64 thiz->mVolume[~deviceID] = volume;
96 SLint32 volume = thiz->mVolume[~deviceID]; local
98 *pVolume = volume;
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpService.java 63 for (StorageVolume volume : mVolumeMap.values()) {
64 addStorageLocked(volume);
103 StorageVolume volume = mVolumeMap.remove(path);
104 if (volume != null) {
105 removeStorageLocked(volume);
241 StorageVolume volume = mVolumes[i]; local
242 if (volume.getPath().equals(path)) {
243 mVolumeMap.put(path, volume);
246 if (volume.isPrimary() || !mPtpMode) {
247 addStorageLocked(volume);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
options.js 15 var volumeElement = document.getElementById('volume');
18 var volume = localStorage['volume'] || 1.0;
21 volumeElement.value = volume;
27 volume = volumeElement.value;
28 localStorage['volume'] = volume;
41 volume = 1.0;
44 localStorage['volume'] = volume;
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
dtmf_buffer_unittest.cc 32 static uint32_t MakeDtmfPayload(int event, bool end, int volume, int duration) {
37 // | event |E|R| volume | duration |
41 payload |= (volume & 0x003F) << 16;
53 && a.volume == b.volume);
65 int volume = 17; local
68 uint32_t payload = MakeDtmfPayload(event_no, end_bit, volume, duration);
78 EXPECT_EQ(volume, event.volume);
93 int volume = 17 local
128 int volume = 17; local
154 int volume = 1; local
198 int volume = 1; local
239 int volume = 1; local
275 int volume = 1; local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
tts_base.js 29 this.propertyDefault['volume'] = 1;
30 this.propertyMin['volume'] = 0.2;
31 this.propertyMax['volume'] = 1.0;
  /frameworks/base/media/lib/remotedisplay/java/com/android/media/remotedisplay/
RemoteDisplay.java 58 * Volume handling: Output volume can be changed.
64 * Volume handling: Output volume is fixed.
118 return mMutableInfo.volume;
121 public void setVolume(int volume) {
122 if (mMutableInfo.volume != volume) {
123 mMutableInfo.volume = volume;
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
VolumeControlAction.java 27 * Feature action that transmits volume change to Audio Receiver.
29 * This action is created when a user pressed volume up/down. However, Android only provides a
30 * listener for delta of some volume change instead of individual key event. Also it's hard to know
31 * Audio Receiver's number of volume steps for a single volume control key. Because of this, it
33 * volume change happens; otherwise, it will send again key-down as press and hold feature does.
38 // State that wait for next volume press.
51 * Scale a custom volume value to cec volume scale.
53 * @param volume volume value in custom scal
140 int volume = params[0] & 0x7F; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/audio/
audio_service.cc 23 int volume,
50 int volume,
  /external/chromium_org/media/audio/pulse/
pulse_output.h 51 virtual void SetVolume(double volume) OVERRIDE;
52 virtual void GetVolume(double* volume) OVERRIDE;
84 // Float representation of volume from 0.0 to 1.0.

Completed in 428 milliseconds

12 3 4 5 6 7 8 91011>>