HomeSort by relevance Sort by last modified time
    Searched refs:volume (Results 426 - 450 of 783) sorted by null

<<11121314151617181920>>

  /external/chromium_org/media/audio/mac/
audio_low_latency_input_mac_unittest.cc 35 uint32 hardware_delay_bytes, double volume));
78 uint32 hardware_delay_bytes, double volume) OVERRIDE {
  /external/chromium_org/media/base/
pipeline.h 156 // Gets the current volume setting being used by the audio renderer. When
161 // Attempt to set the volume of the audio renderer. Valid values for volume
162 // range from 0.0f (muted) to 1.0f (full volume). This value affects all
164 void SetVolume(float volume);
286 // Carries out notifying filters that the volume has changed.
287 void VolumeChangedTask(float volume);
341 // Updates playback rate and volume and initiates an asynchronous play call
380 // Current volume level (from 0.0f to 1.0f). This value is set immediately
448 // Holds the initialized renderers. Used for setting the volume,
    [all...]
pipeline.cc 143 void Pipeline::SetVolume(float volume) {
144 if (volume < 0.0f || volume > 1.0f)
148 volume_ = volume;
151 &Pipeline::VolumeChangedTask, base::Unretained(this), volume));
822 void Pipeline::VolumeChangedTask(float volume) {
825 // Volume changes are only carried out while playing.
830 audio_renderer_->SetVolume(volume);
audio_renderer_mixer_unittest.cc 197 // Verify volume adjusted output when mixer inputs are in post-Play() state.
206 // Set a different volume for each mixer input and verify the results.
209 float volume = static_cast<float>(i) / mixer_inputs_.size(); local
210 total_scale += volume;
211 EXPECT_TRUE(mixer_inputs_[i]->SetVolume(volume));
322 // Test volume adjusted mixer output with one input in the post-Play() state.
327 // Test volume adjusted mixer output with many inputs in the post-Play() state.
  /external/chromium_org/media/mp4/
box_definitions.h 107 int16 volume; member in struct:media::mp4::MovieHeader
120 int16 volume; member in struct:media::mp4::TrackHeader
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.idl 79 [RaisesException=Setter] attribute double volume;
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControls.cpp 106 m_volumeSlider->setVolume(m_mediaController->volume());
226 m_volumeSlider->setVolume(m_mediaController->volume());
  /external/eigen/test/
geo_alignedbox.cpp 110 VERIFY_IS_APPROX( 14.0f, box.volume() );
137 VERIFY_IS_APPROX( 42, box.volume() );
  /external/sonivox/arm-fm-22k/lib_src/
eas_imelody.c 76 "VOLUME:",
350 /* set channel volume to max */
461 /* volume */
889 velocity = (EAS_U8) (pData->volume ? pData->volume * IMELODY_VEL_MUL + IMELODY_VEL_OFS : 0);
    [all...]
eas_pcm.c 370 pState->volume = pParams->volume;
449 * Update the pitch and volume parameters for a PCM stream
508 * Update the volume parameters for a PCM stream
527 EAS_RESULT EAS_PEUpdateVolume (S_EAS_DATA* pEASData, EAS_PCM_HANDLE pState, EAS_I16 volume)
529 pState->volume = volume;
1009 pState->currentGainLeft = (EAS_I16) FMUL_15x15(pState->gainLeft, pState->volume);
1010 pState->currentGainRight = (EAS_I16) FMUL_15x15(pState->gainRight, pState->volume);
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_imelody.c 76 "VOLUME:",
350 /* set channel volume to max */
461 /* volume */
889 velocity = (EAS_U8) (pData->volume ? pData->volume * IMELODY_VEL_MUL + IMELODY_VEL_OFS : 0);
    [all...]
eas_pcm.c 370 pState->volume = pParams->volume;
449 * Update the pitch and volume parameters for a PCM stream
508 * Update the volume parameters for a PCM stream
527 EAS_RESULT EAS_PEUpdateVolume (S_EAS_DATA* pEASData, EAS_PCM_HANDLE pState, EAS_I16 volume)
529 pState->volume = volume;
1009 pState->currentGainLeft = (EAS_I16) FMUL_15x15(pState->gainLeft, pState->volume);
1010 pState->currentGainRight = (EAS_I16) FMUL_15x15(pState->gainRight, pState->volume);
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_imelody.c 76 "VOLUME:",
354 /* set channel volume to max */
470 /* volume */
898 velocity = (EAS_U8) (pData->volume ? pData->volume * IMELODY_VEL_MUL + IMELODY_VEL_OFS : 0);
    [all...]
eas_pcm.c 370 pState->volume = pParams->volume;
449 * Update the pitch and volume parameters for a PCM stream
508 * Update the volume parameters for a PCM stream
527 EAS_RESULT EAS_PEUpdateVolume (S_EAS_DATA* pEASData, EAS_PCM_HANDLE pState, EAS_I16 volume)
529 pState->volume = volume;
1009 pState->currentGainLeft = (EAS_I16) FMUL_15x15(pState->gainLeft, pState->volume);
1010 pState->currentGainRight = (EAS_I16) FMUL_15x15(pState->gainRight, pState->volume);
    [all...]
  /frameworks/base/core/java/android/os/storage/
StorageVolume.java 30 * Description of a storage volume and its capabilities, including the
49 /** When set, indicates exclusive ownership of this volume */
98 * Returns the mount path for the volume.
111 * Returns a user visible description of the volume.
113 * @return the volume description
128 * Returns true if the volume is removable.
137 * Returns true if the volume is emulated.
146 * Returns the MTP storage ID for the volume.
181 * Returns true if this volume can be shared via USB mass storage.
190 * Returns maximum file size for the volume, or zero if it is unbounded
244 StorageVolume volume = (StorageVolume)obj; local
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
AudioTrack.java 109 * @param volume The volume in percentage
114 * @param duckedTrackVolume The relative volume of the audio track when
125 int volume, boolean muted,boolean duckingEnabled,
185 mVolumePercent = volume;
261 * Set the volume of this audio track as percentage of the volume in the
264 * @param volumePercent Percentage of the volume to apply. If it is set to
265 * 0, then volume becomes mute. It it is set to 100, then volume
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteDescriptor.java 46 private static final String KEY_VOLUME = "volume";
140 * Gets the route's current volume, or 0 if unknown.
147 * Gets the route's maximum volume, or 0 if unknown.
154 * Gets the route's volume handling.
202 result.append(", volume=").append(getVolume());
375 * Sets the route's current volume, or 0 if unknown.
377 public Builder setVolume(int volume) {
378 mBundle.putInt(KEY_VOLUME, volume);
383 * Sets the route's maximum volume, or 0 if unknown.
391 * Sets the route's volume handling
    [all...]
RegisteredMediaRouteProvider.java 354 public void onSetVolume(int volume) {
356 mConnection.setVolume(mControllerId, volume);
358 mPendingSetVolume = volume;
533 public void setVolume(int controllerId, int volume) {
535 data.putInt(CLIENT_DATA_VOLUME, volume);
  /hardware/libhardware/include/hardware/
audio_policy.h 54 * routing and volume control policies for a given platform.
73 * - process volume control requests: the stream volume is converted from
174 * volume control functions
177 /* initialises stream volume conversion parameters by specifying volume
184 /* sets the new stream volume at a level corresponding to the supplied
190 /* retrieve current volume index for the specified stream */
195 /* sets the new stream volume at a level corresponding to the supplied
203 /* retrieve current volume index for the specified stream for the specified device *
    [all...]
  /hardware/libhardware_legacy/audio/
AudioHardwareStub.cpp 89 status_t AudioHardwareStub::setVoiceVolume(float volume)
94 status_t AudioHardwareStub::setMasterVolume(float volume)
  /hardware/qcom/audio/legacy/alsa_sound/
audio_hw_hal.cpp 446 static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
449 return qadev->hwif->setVoiceVolume(volume);
452 static int adev_set_master_volume(struct audio_hw_device *dev, float volume)
455 return qadev->hwif->setMasterVolume(volume);
458 static int adev_get_master_volume(struct audio_hw_device *dev, float *volume) {
461 return qadev->hwif->getMasterVolume(volume);
465 static int adev_set_fm_volume(struct audio_hw_device *dev, float volume)
468 return qadev->hwif->setFmVolume(volume);
  /frameworks/av/services/audioflinger/
AudioPolicyService.cpp 729 ALOGV("AudioCommandThread() processing set volume stream %d, \
730 volume %f, output %d", data->mStream, data->mVolume, data->mIO);
753 ALOGV("AudioCommandThread() processing set voice volume volume %f",
871 float volume,
881 data->mVolume = volume;
886 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
887 stream, volume, output);
922 status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs
    [all...]
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 63 /* speaking volume */
77 const char * PICO_VOLUME_OPEN_TAG = "<volume level='%d'>";
78 const char * PICO_VOLUME_CLOSE_TAG = "</volume>";
94 const char * picoSupportedProperties[] = { "language", "rate", "pitch", "volume" };
116 int picoProp_currVolume = PICO_DEF_VOLUME; /* current volume */
521 * Add <speed>, <pitch> and <volume> tags to the text,
545 if (picoProp_currVolume != PICO_DEF_VOLUME) { /* non-default volume */
1315 int volume; local
    [all...]
  /external/chromium_org/media/audio/win/
audio_low_latency_input_win_unittest.cc 43 uint32 hardware_delay_bytes, double volume));
67 uint32 hardware_delay_bytes, double volume) OVERRIDE {
131 double volume) {
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
MediaCodecBridge.java 530 private void setVolume(double volume) {
532 mAudioTrack.setStereoVolume((float) volume, (float) volume);

Completed in 776 milliseconds

<<11121314151617181920>>