Searched refs:volume (Results 1 - 25 of 421) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_mixer_m68k.c31 void SDL_MixAudio_m68k_U8(char* dst, char* src, long len, long volume, char* mix8) argument
46 " muls %3,%%d0\n" /* d0 *= volume (0<=volume<=128) */
63 "a"(dst), "a"(src), "d"(len), "d"(volume), "a"(mix8)
69 void SDL_MixAudio_m68k_S8(char* dst, char* src, long len, long volume) argument
85 " muls %3,%%d0\n" /* d0 *= volume (0<=volume<=128) */
110 "a"(dst), "a"(src), "d"(len), "d"(volume)
116 void SDL_MixAudio_m68k_S16MSB(short* dst, short* src, long len, long volume) argument
130 " muls %3,%%d0\n" /* d0 *= volume (
162 SDL_MixAudio_m68k_S16LSB(short* dst, short* src, long len, long volume) argument
[all...]
H A DSDL_mixer_m68k.h31 void SDL_MixAudio_m68k_U8(char* dst,char* src, long len, long volume, char* mix8);
32 void SDL_MixAudio_m68k_S8(char* dst,char* src, long len, long volume);
34 void SDL_MixAudio_m68k_S16MSB(short* dst,short* src, long len, long volume);
35 void SDL_MixAudio_m68k_S16LSB(short* dst,short* src, long len, long volume);
H A DSDL_mixer_MMX.c40 void SDL_MixAudio_MMX_S16(char* dst,char* src,unsigned int size,int volume) argument
44 " movl %3,%%eax\n" /* eax = volume */
75 /* multiplier par le volume */
106 /* mm1 = le sample avec le volume modifi� */
112 /* mm4 = le sample avec le volume modifi� */
131 "m"(volume)
142 void SDL_MixAudio_MMX_S8(char* dst,char* src,unsigned int size,int volume) argument
146 " movl %3,%%eax\n" /* eax = volume */
202 "m"(volume)
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/
H A Dvolume_test.cc16 // The hardware volume may be more coarsely quantized than [0, 255], so
29 void SetAndVerifyMicVolume(unsigned int volume) { argument
30 bool success = voe_volume_control_->SetMicVolume(volume) == 0;
35 TEST_LOG("Failed to set microphone volume to %u.\n", volume);
45 EXPECT_EQ(volume, test_volume);
47 TEST_LOG("Failed to get the microphone volume.");
87 // Valid volume range: [0, 255]
99 unsigned int volume = 1000; local
100 EXPECT_EQ(0, voe_volume_control_->GetSpeakerVolume(volume));
112 unsigned int volume; local
139 unsigned int volume; local
163 unsigned int volume = 1000; local
[all...]
/external/chromium_org/chrome/common/
H A Dtts_utterance_request.cc9 volume(1.0),
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dremoteaudiosource.cc52 void RemoteAudioSource::SetVolume(double volume) { argument
53 ASSERT(volume >= 0 && volume <= 10);
56 (*it)->OnSetVolume(volume);
/external/chromium_org/third_party/webrtc/voice_engine/include/mock/
H A Dmock_voe_volume_control.h24 MOCK_METHOD1(SetSpeakerVolume, int(unsigned int volume));
25 MOCK_METHOD1(GetSpeakerVolume, int(unsigned int& volume));
28 MOCK_METHOD1(SetMicVolume, int(unsigned int volume));
29 MOCK_METHOD1(GetMicVolume, int(unsigned int& volume));
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_volume_control_impl.h23 virtual int SetSpeakerVolume(unsigned int volume);
25 virtual int GetSpeakerVolume(unsigned int& volume);
27 virtual int SetMicVolume(unsigned int volume);
29 virtual int GetMicVolume(unsigned int& volume);
/external/srec/audio/AudioIn/UNIX/include/
H A Daudioinwrapper.h36 int AudioSetVolume(int stream_type, int volume);
/external/chromium_org/third_party/libjingle/source/talk/sound/
H A Dsoundinputstreaminterface.h48 // Retrieves the current input volume for this stream. Nominal range is
51 // volume currently in use by the OS, not a cached value from a previous
53 virtual bool GetVolume(int *volume) = 0;
55 // Changes the input volume for this stream. Nominal range is defined by
58 virtual bool SetVolume(int volume) = 0;
H A Dsoundoutputstreaminterface.h53 // Retrieves the current output volume for this stream. Nominal range is
56 // volume currently in use by the OS, not a cached value from a previous
58 virtual bool GetVolume(int *volume) = 0;
60 // Changes the output volume for this stream. Nominal range is defined by
63 virtual bool SetVolume(int volume) = 0;
H A Dnullsoundsystem.cc65 virtual bool GetVolume(int *volume) { argument
66 *volume = SoundSystemInterface::kMinVolume;
70 virtual bool SetVolume(int volume) { argument
99 virtual bool GetVolume(int *volume) { argument
100 *volume = SoundSystemInterface::kMinVolume;
104 virtual bool SetVolume(int volume) { argument
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
H A Doptions.js15 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/media/audio/
H A Daudio_io.h93 // Sets the relative volume, with range [0.0, 1.0] inclusive.
94 virtual void SetVolume(double volume) = 0;
96 // Gets the relative volume, with range [0.0, 1.0] inclusive.
97 virtual void GetVolume(double* volume) = 0;
116 double volume) {};
123 double volume) {};
154 // Returns the maximum microphone analog volume or 0.0 if device does not
155 // have volume control.
158 // Sets the microphone analog volume, with range [0, max_volume] inclusive.
159 virtual void SetVolume(double volume)
113 OnData(AudioInputStream* stream, const AudioBus* source, uint32 hardware_delay_bytes, double volume) argument
119 OnData(AudioInputStream* stream, const uint8* src, uint32 size, uint32 hardware_delay_bytes, double volume) argument
[all...]
H A Daudio_output_proxy.cc63 void AudioOutputProxy::SetVolume(double volume) { argument
65 volume_ = volume;
66 dispatcher_->StreamVolumeSet(this, volume);
69 void AudioOutputProxy::GetVolume(double* volume) { argument
71 *volume = volume_;
H A Dvirtual_audio_output_stream.cc64 void VirtualAudioOutputStream::SetVolume(double volume) { argument
66 volume_ = volume;
69 void VirtualAudioOutputStream::GetVolume(double* volume) { argument
71 *volume = volume_;
/external/chromium_org/ui/file_manager/file_manager/background/js/
H A Ddevice_handler.js291 var volume = event.volumeMetadata;
292 if (!volume.deviceType || event.isRemounting)
305 switch (this.mountStatus_[volume.devicePath]) {
315 DeviceHandler.Notification.DEVICE.hide(volume.devicePath);
316 this.mountStatus_[volume.devicePath] = getFirstStatus(event);
322 if (!volume.isParentDevice)
323 DeviceHandler.Notification.DEVICE_FAIL.hide(volume.devicePath);
324 this.mountStatus_[volume.devicePath] = getFirstStatus(event);
330 if (this.mountStatus_[volume.devicePath] ===
333 this.mountStatus_[volume
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
H A DTrackMetaData.java30 private float volume; field in class:TrackMetaData
116 return volume;
119 public void setVolume(float volume) { argument
120 this.volume = volume;
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
H A Dvolume_controller.js8 Polymer('volume-controller', {
34 'model.volume': 'onVolumeChanged',
49 this.onVolumeChanged((oldValue || {}).volume, (newValue || {}).volume);
79 * Invoked when the 'volume' value in the model is changed.
95 this.model.volume = 100 - newValue;
H A Daudio_player.js39 this.audioElement.volume = 0; // Temporary initial volume.
62 'model.volume': 'onVolumeChanged',
118 * Invoked when audioController.volume is changed.
123 this.audioElement.volume = newValue / 100;
136 this.onVolumeChanged(0, newValue.volume);
327 if (this.audioController.volumeSliderShown && this.model.volume < 100)
328 this.model.volume += 1;
331 if (this.audioController.volumeSliderShown && this.model.volume > 0)
332 this.model.volume
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/media/
H A Dplayer_testapi.js90 * Respond with a number, current volume [0..100].
93 playerTestAPI.respond_(playerTestAPI.getMedia_().volume * 100);
97 * Change volume.
98 * @param {number} volume Volume [0..100].
100 setVolume: function(volume) {
102 playerTestAPI.getControls_().onVolumeChange_(volume / 100));
106 * Respond with a boolean, true if the volume is muted.
109 playerTestAPI.respond_(playerTestAPI.getMedia_().volume == 0);
113 * Mute the volume. No-op if already muted.
116 if (playerTestAPI.getMedia_().volume !
[all...]
/external/chromium_org/media/base/
H A Daudio_capturer_source.h29 double volume,
56 // Sets the capture volume, with range [0.0, 1.0] inclusive.
57 virtual void SetVolume(double volume) = 0;
H A Dfake_audio_render_callback.h47 // Set volume information used by ProvideAudioTransformInput().
48 void set_volume(double volume) { volume_ = volume; } argument
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/talking_alarm_clock/
H A Dcommon.js93 var volume = parseFloat(localStorage['volume']) || DEFAULT_VOLUME;
94 audio.volume = volume;
102 var duckedVolume = volume * (1.0 - 0.07 * (i + 1));
103 audio.volume = duckedVolume;
126 var volume = parseFloat(localStorage['volume']) || DEFAULT_VOLUME;
133 volume: volume,
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesisUtterance.h56 float volume() const { return m_platformUtterance->volume(); } function in class:WebCore::FINAL
57 void setVolume(float volume) { m_platformUtterance->setVolume(volume); } argument

Completed in 621 milliseconds

1234567891011>>