HomeSort by relevance Sort by last modified time
    Searched refs:volume (Results 226 - 250 of 487) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_AlbumsTest.java 58 // can not accept any other volume names
59 String volume = "fakeVolume"; local
60 assertNull(mContentResolver.query(Albums.getContentUri(volume), null, null, null, null));
  /external/eigen/test/
geo_alignedbox.cpp 110 VERIFY_IS_APPROX( 14.0f, box.volume() );
137 VERIFY_IS_APPROX( 42, box.volume() );
  /external/quake/quake/src/QW/client/
snd_mix.c 77 snd_vol = volume.value*256;
167 snd_vol = volume.value*256;
  /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/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 352 public void onSetVolume(int volume) {
354 mConnection.setVolume(mControllerId, volume);
356 mPendingSetVolume = volume;
531 public void setVolume(int controllerId, int volume) {
533 data.putInt(MediaRouteProviderService.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
173 * volume control functions
176 /* initialises stream volume conversion parameters by specifying volume
183 /* sets the new stream volume at a level corresponding to the supplied
189 /* retrieve current volume index for the specified stream */
194 /* sets the new stream volume at a level corresponding to the supplied
202 /* 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/msm7k/libaudio/
AudioHardware.h 110 virtual status_t setVoiceVolume(float volume);
111 virtual status_t 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 703 ALOGV("AudioCommandThread() processing set volume stream %d, \
704 volume %f, output %d", data->mStream, data->mVolume, data->mIO);
727 ALOGV("AudioCommandThread() processing set voice volume volume %f",
819 float volume,
829 data->mVolume = volume;
834 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
835 stream, volume, output);
870 status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivateQt.cpp 245 // Set the current volume and mute status
250 m_mediaPlayer->setVolume(static_cast<int>(element->volume() * 100.0));
391 void MediaPlayerPrivateQt::setVolume(float volume)
393 m_mediaPlayer->setVolume(static_cast<int>(volume * 100.0));
470 void MediaPlayerPrivateQt::volumeChanged(int volume)
472 m_webCorePlayer->volumeChanged(static_cast<float>(volume) / 100.0);
MediaPlayerPrivatePhonon.cpp 240 m_audioOutput->setVolume(m_player->volume());
339 void MediaPlayerPrivatePhonon::setVolume(float volume)
342 m_audioOutput->setVolume(volume);
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 336 float FullscreenVideoController::volume() const function in class:FullscreenVideoController
338 return m_mediaElement ? m_mediaElement->volume() : 0;
341 void FullscreenVideoController::setVolume(float volume)
345 m_mediaElement->setVolume(volume, ec);
447 m_volumeSlider.setValue(volume());
  /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/qemu/distrib/sdl-1.2.15/src/audio/ums/
SDL_umsaudio.c 69 static UMSAudioDevice_ReturnCode UADSetVolume(_THIS, long volume );
467 static UMSAudioDevice_ReturnCode UADSetVolume(_THIS, long volume )
470 * Set the volume.
475 volume );
  /frameworks/base/core/java/android/os/storage/
StorageManager.java 240 * Message sent on volume state change.
552 * Gets the state of a volume via its mountpoint.
560 Log.e(TAG, "Failed to get volume state", e);
581 Log.e(TAG, "Failed to get volume list", e);
608 for (StorageVolume volume : volumes) {
609 if (volume.isPrimary()) {
610 return volume;
  /frameworks/base/media/java/android/media/
AudioTrack.java 64 /** Minimum value for a channel volume */
66 /** Maximum value for a channel volume */
510 * Returns the minimum valid volume value. Volume values set under this one will
512 * @return the minimum volume expressed as a linear attenuation.
519 * Returns the maximum valid volume value. Volume values set above this one will
521 * @return the maximum volume expressed as a linear attenuation.
752 * Sets the specified left/right output volume values on the AudioTrack. Values are clamped
786 * Similar, except set volume of all channels to same value
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpPropertyGroup.java 70 String volume, int[] properties) {
74 mVolumeName = volume;
75 mUri = Files.getMtpObjectsUri(volume);

Completed in 1309 milliseconds

1 2 3 4 5 6 7 8 91011>>