HomeSort by relevance Sort by last modified time
    Searched defs:volume (Results 1 - 25 of 304) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pt2258.h 2 * ALSA Driver for the PT2258 volume controller.
30 unsigned char volume[6]; member in struct:snd_pt2258
mixer_oss.h 49 int volume[2]; member in struct:snd_mixer_oss_slot
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pt2258.h 2 * ALSA Driver for the PT2258 volume controller.
30 unsigned char volume[6]; member in struct:snd_pt2258
  /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;
  /external/chromium_org/chrome/common/
tts_utterance_request.h 21 float volume; member in struct:TtsUtteranceRequest
  /external/chromium_org/media/audio/
audio_input_volume_unittest.cc 26 double volume = 0.0; local
28 volume = ais->GetVolume();
29 if (volume == target_volume)
36 return volume;
51 // TODO(henrika): add support for volume control on Windows XP as well.
63 // Helper method which checks if the stream has volume support.
132 << ", does not have volume control.";
140 // Store the current input-device volume level.
148 // Set the volume to the maxiumum level..
153 // Set the volume to the mininum level (=0)
    [all...]
audio_output_dispatcher_impl.cc 78 double volume = 0; local
79 stream_proxy->GetVolume(&volume);
80 physical_stream->SetVolume(volume);
109 double volume) {
114 physical_stream->SetVolume(volume);
  /external/chromium_org/media/base/
audio_converter.cc 203 float volume = input->ProvideInput( local
206 // Optimize the most common single input, full volume case.
208 if (volume == 1.0f) {
210 } else if (volume > 0) {
213 mixer_input_audio_bus_->channel(i), volume,
224 // Volume adjust and mix each mixer input into |temp_dest| after rendering.
225 if (volume > 0) {
228 mixer_input_audio_bus_->channel(i), volume,
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebSpeechSynthesisUtterance.cpp 84 float WebSpeechSynthesisUtterance::volume() const function in class:WebKit::WebSpeechSynthesisUtterance
86 return m_private->volume();
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesisUtterance.h 54 float volume() const { return m_platformUtterance->volume(); } function in class:WebCore::SpeechSynthesisUtterance
55 void setVolume(float volume) { m_platformUtterance->setVolume(volume); }
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
LowPassFilter.java 44 protected float volume, highFreqVolume; field in class:LowPassFilter
46 public LowPassFilter(float volume, float highFreqVolume) {
48 setVolume(volume);
62 throw new IllegalArgumentException("High freq volume must be between 0 and 1");
69 return volume;
72 public void setVolume(float volume) {
73 if (volume < 0 || volume > 1)
74 throw new IllegalArgumentException("Volume must be between 0 and 1");
76 this.volume = volume
    [all...]
Listener.java 43 private float volume = 1; field in class:Listener
56 volume = source.volume;
64 return volume;
67 public void setVolume(float volume) {
68 this.volume = volume;
70 renderer.updateListenerParam(this, ListenerParam.Volume);
  /external/lzma/CPP/7zip/Archive/7z/
7zProperties.cpp 102 const CVolume &volume = _volumes.Front(); local
103 const CArchiveDatabaseEx &_db = volume.Database;
  /external/sonivox/arm-fm-22k/lib_src/
eas_pcm.h 52 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);
eas_imelodydata.h 65 EAS_U8 volume; /* current volume */ member in struct:__anon28081
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_pcm.h 52 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);
eas_imelodydata.h 65 EAS_U8 volume; /* current volume */ member in struct:__anon28131
  /external/sonivox/arm-wt-22k/lib_src/
eas_pcm.h 52 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);
eas_tcdata.h 54 EAS_U8 volume; /* volume */ member in struct:__anon28199
eas_imelodydata.h 66 EAS_U8 volume; /* current volume */ member in struct:__anon28179
  /external/chromium/chrome/browser/chromeos/
audio_handler.cc 32 // chromeos: This class will set the volume using ALSA to adjust volume and
33 // mute, and handle the volume level logic.
42 // Set volume using our internal 0-100% range. Notice 0% is a special case of
43 // silence, so we set the mixer volume to kSilenceDb instead of min_volume_db_.
62 DVLOG(1) << "Adjusting Volume by " << adjust_by_percent << " percent";
64 double volume = mixer_->GetVolumeDb(); local
65 double pct = VolumeDbToPercent(volume);
79 if (new_volume != volume)
110 VLOG(1) << "Cannot find valid volume mixer"
    [all...]
  /external/chromium_org/media/audio/pulse/
pulse_input.cc 140 void PulseAudioInputStream::SetVolume(double volume) {
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...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControlElementTypes.cpp 186 double volume = value().toDouble(); local
187 if (volume != mediaController()->volume())
188 mediaController()->setVolume(volume, ASSERT_NO_EXCEPTION);
209 void MediaControlVolumeSliderElement::setVolume(double volume)
211 if (value().toDouble() != volume)
212 setValue(String::number(volume));
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
SoundHandleJme.java 46 private float volume = 1; field in class:SoundHandleJme
80 node.setVolume(volume);
98 volume = f;
102 return volume;
  /hardware/qcom/audio/legacy/alsa_sound/
AudioStreamOutALSA.cpp 74 float volume; local
77 volume = (left + right) / 2;
78 if (volume < 0.0) {
79 ALOGW("AudioSessionOutALSA::setVolume(%f) under 0.0, assuming 0.0\n", volume);
80 volume = 0.0;
81 } else if (volume > 1.0) {
82 ALOGW("AudioSessionOutALSA::setVolume(%f) over 1.0, assuming 1.0\n", volume);
83 volume = 1.0;
85 vol = lrint((volume * 0x2000)+0.5);
89 ALOGV("setLpaVolume(%f)\n", volume);
    [all...]

Completed in 569 milliseconds

1 2 3 4 5 6 7 8 91011>>