Searched defs:volume (Results 1 - 25 of 210) sorted by relevance

123456789

/external/qemu/distrib/sdl-1.2.15/src/audio/
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)
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...]
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_MMX_VC.c41 void SDL_MixAudio_MMX_S16_VC(char* dst,char* src,unsigned int nSize,int volume) argument
52 mov eax, volume // eax = volume
76 // multiplier par le volume
95 // mm1 = le sample avec le volume modifie
99 // mm4 = le sample avec le volume modifie
122 void SDL_MixAudio_MMX_S8_VC(char* dst,char* src,unsigned int nSize,int volume) argument
133 mov eax, volume //%3,%%eax // eax = volume
/external/chromium_org/chrome/common/
H A Dtts_utterance_request.h21 float volume; member in struct:TtsUtteranceRequest
/external/chromium_org/media/audio/
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 Dfake_audio_output_stream.cc56 void FakeAudioOutputStream::SetVolume(double volume) {}; argument
58 void FakeAudioOutputStream::GetVolume(double* volume) { argument
59 *volume = 0;
H A Dnull_audio_sink.cc67 bool NullAudioSink::SetVolume(double volume) { argument
69 return volume == 0.0;
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/media/base/
H A Dfake_audio_render_callback.h47 // Set volume information used by ProvideAudioTransformInput().
48 void set_volume(double volume) { volume_ = volume; } argument
H A Daudio_renderer_mixer_input.cc92 bool AudioRendererMixerInput::SetVolume(double volume) { argument
93 volume_ = volume;
/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/sonivox/arm-fm-22k/lib_src/
H A Deas_math.c148 * 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) argument
160 if (volume <= 0)
162 if (volume >= 100)
166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1);
H A Deas_pcm.h52 EAS_I16 volume; member in struct:s_pcm_open_params_tag
169 * Update the pitch and volume parameters using MIDI controls
202 * Update the volume parameters for a PCM stream
221 EAS_RESULT EAS_PEUpdateVolume (EAS_DATA_HANDLE pEASData, EAS_PCM_HANDLE pState, EAS_I16 volume);
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_math.c148 * 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) argument
160 if (volume <= 0)
162 if (volume >= 100)
166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1);
H A Deas_pcm.h52 EAS_I16 volume; member in struct:s_pcm_open_params_tag
169 * Update the pitch and volume parameters using MIDI controls
202 * Update the volume parameters for a PCM stream
221 EAS_RESULT EAS_PEUpdateVolume (EAS_DATA_HANDLE pEASData, EAS_PCM_HANDLE pState, EAS_I16 volume);
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_math.c148 * 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) argument
160 if (volume <= 0)
162 if (volume >= 100)
166 return (EAS_I16) EAS_Calculate2toX((((volume - EAS_MAX_VOLUME) * 204099) >> 10) - 1);
H A Deas_pcm.h52 EAS_I16 volume; member in struct:s_pcm_open_params_tag
169 * Update the pitch and volume parameters using MIDI controls
202 * Update the volume parameters for a PCM stream
221 EAS_RESULT EAS_PEUpdateVolume (EAS_DATA_HANDLE pEASData, EAS_PCM_HANDLE pState, EAS_I16 volume);
H A Deas_tcdata.h54 EAS_U8 volume; /* volume */ member in struct:__anon30982
/external/chromium_org/ash/
H A Dash_touch_exploration_manager_chromeos.cc40 void AshTouchExplorationManager::SetOutputLevel(int volume) { argument
41 if (volume > 0) {
46 audio_handler_->SetOutputVolumePercent(volume);
47 // Avoid negative volume.
/external/chromium_org/chrome/browser/extensions/api/audio/
H A Daudio_service.cc23 int volume,
50 int volume,
48 SetDeviceProperties(const std::string& device_id, bool muted, int volume, int gain) argument
H A Daudio_service_linux.cc36 int volume,
81 int volume,
79 SetDeviceProperties(const std::string& device_id, bool muted, int volume, int gain) argument
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesisUtterance.h55 float volume() const { return m_platformUtterance->volume(); } function in class:blink::FINAL
56 void setVolume(float volume) { m_platformUtterance->setVolume(volume); } argument
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebSpeechSynthesisUtterance.cpp77 float WebSpeechSynthesisUtterance::volume() const function in class:blink::WebSpeechSynthesisUtterance
79 return m_private->volume();
/external/chromium_org/content/browser/renderer_host/media/
H A Daudio_input_sync_writer.cc53 double volume,
86 buffer->params.volume = volume;
52 Write(const media::AudioBus* data, double volume, bool key_pressed) argument

Completed in 5815 milliseconds

123456789