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

1 2 3 4 5 6 7 8 91011>>

  /external/svox/pico/tts/
com_svox_picottsengine.cpp 62 /* speaking volume */
76 const char * PICO_VOLUME_OPEN_TAG = "<volume level='%d'>";
77 const char * PICO_VOLUME_CLOSE_TAG = "</volume>";
93 const char * picoSupportedProperties[] = { "language", "rate", "pitch", "volume" };
115 int picoProp_currVolume = PICO_DEF_VOLUME; /* current volume */
520 * Add <speed>, <pitch> and <volume> tags to the text,
544 if (picoProp_currVolume != PICO_DEF_VOLUME) { /* non-default volume */
1320 int volume; local
    [all...]
  /external/swiftshader/src/Renderer/
Context.cpp 1402 bool volume = sampler[coordinate].hasVolumeTexture(); local
1422 return (texture && (cube || volume));
  /external/webrtc/webrtc/modules/audio_device/linux/
audio_device_pulse_linux.cc 385 // If we end up here it means that the selected speaker has no volume
391 // Given that InitSpeaker was successful, we know volume control exists.
403 int32_t AudioDeviceLinuxPulse::SetSpeakerVolume(uint32_t volume)
407 // Only update the volume if it's been set while we weren't playing.
410 return (_mixerManager.SetSpeakerVolume(volume));
413 int32_t AudioDeviceLinuxPulse::SpeakerVolume(uint32_t& volume) const
423 volume = level;
507 // If we end up here it means that the selected speaker has no volume
559 // volume control, hence it is safe to state that there is no
611 // volume control, hence it is safe to state that there is n
2649 uint32_t volume = 0; local
    [all...]
  /frameworks/av/include/media/
VolumeShaper.h 53 using T = float; // volume type
60 #define MAX_LINEAR_VOLUME 1.f // type T: max volume, unity gain
61 #define MAX_LOG_VOLUME 0.f // type T: max volume, unity gain in dBFS
76 * The number of user/application volume shapers is independent to the
77 * system volume shapers. If an application tries to create more than
98 * parameters relating to the volume shape.
193 /* Adjust the volume to be in linear range from MIN_LINEAR_VOLUME to MAX_LINEAR_VOLUME
194 * and compensate for log dbFS volume as needed.
196 T adjustVolume(T volume) const {
198 const T out = powf(10.f, volume / 10.f)
600 const T volume = computeVolumeFromXOffset(mDelayXOffset); local
630 const T volume = computeVolumeFromXOffset(mDelayXOffset); local
700 const T volume = mConfiguration->adjustVolume(unscaledVolume); \/\/ handle log scale local
727 const T volume = computeVolumeFromXOffset(xOffset); local
798 const T volume = state->getVolume(); local
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.h 212 virtual status_t setVoiceVolume(float volume);
531 : volume(1.0f),
535 float volume; member in struct:android::AudioFlinger::stream_type_t
638 // no range check, doesn't check per-thread stream volume, AudioFlinger::mLock held
640 { return mStreamTypes[stream].volume; }
    [all...]
Effects.cpp 805 // Send volume indication if EFFECT_FLAG_VOLUME_IND is set and read back altered volume
810 uint32_t volume[2]; local
812 uint32_t size = sizeof(volume);
813 volume[0] = *left;
814 volume[1] = *right;
816 pVolume = volume;
820 volume,
823 if (controller && status == NO_ERROR && size == sizeof(volume)) {
824 *left = volume[0]
    [all...]
  /frameworks/base/core/java/android/app/backup/
FullBackup.java 285 final String volume = domain.substring(FullBackup.SHARED_PREFIX.length()); local
287 final int volNum = Integer.parseInt(volume);
  /frameworks/base/core/java/android/os/
Environment.java 822 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId()); local
823 if (volume != null) {
824 return volume.getState();
855 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId()); local
856 if (volume != null) {
857 return volume.isRemovable();
899 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId()); local
    [all...]
  /frameworks/base/core/java/android/preference/
SeekBarVolumizer.java 44 * Turns a {@link SeekBar} into a volume control.
275 // Do the volume changing separately to give responsive UI
329 volumeStore.volume = mLastProgress;
335 if (volumeStore.volume != -1) {
337 mLastProgress = volumeStore.volume;
363 public void postUpdateSlider(int volume, int lastAudibleVolume, boolean mute) {
364 obtainMessage(UPDATE_SLIDER, volume, lastAudibleVolume, new Boolean(mute)).sendToTarget();
370 final int volume = mAudioManager.getStreamVolume(mStreamType); local
373 mUiHandler.postUpdateSlider(volume, lastAudibleVolume, mute);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
Settings.java 289 final float volume = prefs.getFloat( local
291 return (volume != UNDEFINED_PREFERENCE_VALUE_FLOAT) ? volume
295 // Default keypress sound volume for unknown devices.
  /packages/services/Car/service/src/com/android/car/
CarVolumeControllerFactory.java 57 // Case 1: Car Audio Module does not support volume controls
70 // If an incoming call is ringing, either VOLUME key means
73 + " VOLUME key-down while ringing: Silence ringer!");
90 * support volume controls.
148 writer.println("Volume controller:" + SimpleCarVolumeController.class.getSimpleName());
185 * The car volume controller to use when the car audio modules supports volume controls.
188 * handle per context volume change properly.
191 * volume internally. If we only support single channel, then we only send the volume chang
266 Settings.Global.putInt(mContext.getContentResolver(), key, volume); local
281 int volume; local
431 Integer volume = volumesPerCarStream.get(carStream); local
    [all...]
  /packages/services/Car/service/src/com/android/car/hal/
AudioHalService.java 159 * Audio volume change from car.
161 * @param volume
164 void onVolumeChange(int streamNumber, int volume, int volumeState);
166 * Volume limit change from car.
168 * @param volume
170 void onVolumeLimitChange(int streamNumber, int volume);
219 * Returns the volume limits of a stream. Returns null if max value wasn't defined for
249 Log.e(CarLog.TAG_AUDIO, "No min/max volume found in vehicle" +
375 //TODO should reset volume, bug: 32096870
380 int[] volume = {stream, 0, 0} local
721 int volume = vec.get(VehicleAudioVolumeIndex.VOLUME); local
    [all...]
  /prebuilts/sdk/current/support/v7/mediarouter/libs/
android-support-v7-mediarouter.jar 
  /development/ndk/platforms/android-9/include/linux/
videodev.h 97 __u16 volume; member in struct:video_audio
  /external/ImageMagick/coders/
dds.c 1641 volume = MagickFalse; local
    [all...]
  /external/libjpeg-turbo/
jquant2.c 242 /* The volume (actually 2-norm) of the box */
243 JLONG volume; member in struct:__anon23599
262 if (boxp->colorcount > maxc && boxp->volume > 0) {
273 /* Find the splittable box with the largest (scaled) volume */
282 if (boxp->volume > maxv) {
284 maxv = boxp->volume;
294 /* and recompute its volume and population */
375 /* Update box volume.
376 * We use 2-norm rather than real volume here; this biases the method
386 boxp->volume = dist0*dist0 + dist1*dist1 + dist2*dist2
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 643 Property volume = new Property( external variable declarations
645 builder.put("volume", volume);
    [all...]
  /external/swiftshader/src/D3D8/
Direct3DDevice8.cpp 4804 Direct3DVolume8 *volume; local
    [all...]
  /external/webrtc/talk/session/media/
channel_unittest.cc 2174 double volume; local
2201 double volume; local
    [all...]
  /frameworks/av/media/libaudioclient/
IAudioFlinger.cpp 584 virtual status_t setVoiceVolume(float volume)
588 data.writeFloat(volume);
1089 float volume = data.readFloat(); local
1242 float volume = data.readFloat(); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogControllerImpl.java 17 package com.android.systemui.volume;
65 * Source of truth for all state / events related to the volume dialog. No presentation.
152 Log.w(TAG, "Unable to set the volume controller", e);
190 Log.w(TAG, "No volume policy api");
    [all...]
VolumeDialogImpl.java 17 package com.android.systemui.volume;
93 * Visual presentation of the volume dialog.
607 // if there is no touch feature, show the volume ringer instead
    [all...]
ZenModePanel.java 17 package com.android.systemui.volume;
    [all...]
  /frameworks/base/services/core/java/com/android/server/media/
MediaRouterService.java 314 public void requestSetVolume(IMediaRouterClient client, String routeId, int volume) {
325 requestSetVolumeLocked(client, routeId, volume);
545 String routeId, int volume) {
550 UserHandler.MSG_REQUEST_SET_VOLUME, volume, 0, routeId).sendToTarget();
1403 final int volume = computeVolume(descriptor); local
1498 final int volume = descriptor.volume; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/tv/
TvInputHardwareManager.java 529 // volume index will be updated at onMediaStreamVolumeChanged() through
771 // Set to an invalid value for a volume, so that current volume can be applied at the
897 float volume = mSourceVolume * getMediaStreamVolume(); local
    [all...]

Completed in 802 milliseconds

1 2 3 4 5 6 7 8 91011>>