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

<<11121314151617181920

  /cts/suite/audio_quality/client/src/com/android/cts/audiotest/
AudioProtocol.java 240 final int volume = mDataBuffer.getInt(3 * 4); local
278 float newVolume = (maxVolume - minVolume) * volume / 100 + minVolume;
280 Log.d(TAG, "setting volume " + newVolume + " max " + maxVolume +
281 " min " + minVolume + " received " + volume);
336 final int volume = mDataBuffer.getInt(2 * 4); local
345 //TODO volume ?
  /device/ti/panda/audio/
audio_hw.c 54 #define MIXER_DL1_MEDIA_PLAYBACK_VOLUME "DL1 Media Playback Volume"
55 #define MIXER_DL1_VOICE_PLAYBACK_VOLUME "DL1 Voice Playback Volume"
56 #define MIXER_DL2_MEDIA_PLAYBACK_VOLUME "DL2 Media Playback Volume"
57 #define MIXER_DL2_VOICE_PLAYBACK_VOLUME "DL2 Voice Playback Volume"
58 #define MIXER_SDT_DL_VOLUME "SDT DL Volume"
59 #define MIXER_SDT_UL_VOLUME "SDT UL Volume"
61 #define MIXER_DL1_CAPTURE_PLAYBACK_VOLUME "DL1 Capture Playback Volume"
62 #define MIXER_DL2_CAPTURE_PLAYBACK_VOLUME "DL2 Capture Playback Volume"
63 #define MIXER_HEADSET_PLAYBACK_VOLUME "Headset Playback Volume"
64 #define MIXER_HANDSFREE_PLAYBACK_VOLUME "Handsfree Playback Volume"
859 int volume = MIXER_ABE_GAIN_0DB; local
    [all...]
  /external/chromium/webkit/glue/
webmediaplayer_impl.h 209 virtual void setVolume(float volume);
  /external/quake/quake/src/QW/client/
cd_audio.c 453 // we set the volume to 0 first and then to the desired volume
455 void CDAudio_SetVolume (byte volume)
490 readInfo->audioChannelInfo.channel0volume = volume;
491 readInfo->audioChannelInfo.channel1volume = volume;
501 cdvolume = volume;
722 Con_Printf("Volume is %u\n", cdvolume);
  /external/quake/quake/src/WinQuake/
cl_parse.cpp 106 int volume; local
114 volume = MSG_ReadByte ();
116 volume = DEFAULT_SOUND_PACKET_VOLUME;
135 S_StartSound (ent, channel, cl.sound_precache[sound_num], pos, volume/255.0, attenuation);
server.h 221 void SV_StartSound (edict_t *entity, int channel, const char *sample, int volume,
snd_mix.cpp 85 snd_vol = (int)(volume.value*256);
175 snd_vol = (int)(volume.value*256);
sv_main.cpp 113 An attenuation of 0 will play full volume everywhere in the level.
118 void SV_StartSound (edict_t *entity, int channel, const char *sample, int volume,
126 if (volume < 0 || volume > 255)
127 Sys_Error ("SV_StartSound: volume = %i", volume);
155 if (volume != DEFAULT_SOUND_PACKET_VOLUME)
164 MSG_WriteByte (&sv.datagram, volume);
  /external/sonivox/arm-fm-22k/lib_src/
eas_math.h 368 * Transform volume control in 1dB increments to gain multiplier
371 * volume - 100 = 0dB, 99 = -1dB, 0 = -inf
377 EAS_I16 EAS_VolumeToGain (EAS_INT volume);
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_math.h 368 * Transform volume control in 1dB increments to gain multiplier
371 * volume - 100 = 0dB, 99 = -1dB, 0 = -inf
377 EAS_I16 EAS_VolumeToGain (EAS_INT volume);
  /external/sonivox/arm-wt-22k/lib_src/
eas_math.h 368 * Transform volume control in 1dB increments to gain multiplier
371 * volume - 100 = 0dB, 99 = -1dB, 0 = -inf
377 EAS_I16 EAS_VolumeToGain (EAS_INT volume);
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.cpp 518 float MediaPlayer::volume() const function in class:WebCore::MediaPlayer
523 void MediaPlayer::setVolume(float volume)
525 m_volume = volume;
528 m_private->setVolume(volume);
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.h 126 float volume() const;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebViewPrivate.idl 162 HRESULT setMediaVolume([in] float volume);
163 HRESULT mediaVolume([out, retval] float* volume);
  /frameworks/av/include/media/
IAudioFlinger.h 156 virtual status_t setVoiceVolume(float volume) = 0;
  /frameworks/av/services/audioflinger/
AudioFlinger.h 181 virtual status_t setVoiceVolume(float volume);
373 : volume(1.0f),
377 float volume; member in struct:android::AudioFlinger::stream_type_t
433 // no range check, doesn't check per-thread stream volume, AudioFlinger::mLock held
435 { return mStreamTypes[stream].volume; }
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaVisualizerTest.java 50 // Implementor UUID for volume controller effect defined in
236 int volume = am.getStreamMaxVolume(AudioManager.STREAM_MUSIC); local
242 // creating a volume controller on output mix ensures that ro.audio.silent mutes
299 am.setStreamVolume(AudioManager.STREAM_MUSIC, volume, 0);
315 int volume = am.getStreamMaxVolume(AudioManager.STREAM_MUSIC); local
321 // creating a volume controller on output mix ensures that ro.audio.silent mutes
431 am.setStreamVolume(AudioManager.STREAM_MUSIC, volume, 0);
437 //Test case 2.2: test capture in polling mode with volume scaling
441 // SCALING_MODE_AS_PLAYED mode decreases when lowering the volume
454 // creating a volume controller on output mix ensures that ro.audio.silent mute
    [all...]
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_hfp.cpp 125 static void volume_control_callback(bthf_volume_type_t type, int volume) {
127 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onVolumeChanged, (jint) type, (jint) volume);
425 static jboolean setVolumeNative(JNIEnv *env, jobject object, jint volume_type, jint volume) {
430 volume)) != BT_STATUS_SUCCESS) {
431 ALOGE("FAILED to control volume, status: %d", status);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
videodev.h 100 __u16 volume; /* If settable */ member in struct:video_audio
116 __u16 step; /* Step actual volume uses */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
videodev.h 100 __u16 volume; /* If settable */ member in struct:video_audio
116 __u16 step; /* Step actual volume uses */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
videodev.h 100 __u16 volume; /* If settable */ member in struct:video_audio
116 __u16 step; /* Step actual volume uses */
  /external/webrtc/src/modules/audio_processing/agc/
analog_agc.c 13 * Using a feedback system, determines an appropriate analog volume level
14 * given an input signal and current volume level. Targets a conservative
670 * vastly increase the volume after a muting event. This timer prevents
707 void WebRtcAgc_ExpCurve(WebRtc_Word16 volume, WebRtc_Word16 *index)
709 // volume in Q14
712 if (volume > 5243)
714 if (volume > 7864)
716 if (volume > 12124)
725 if (volume > 6554)
735 if (volume > 2621
    [all...]
  /frameworks/base/media/java/android/media/
IAudioService.aidl 91 oneway void playSoundEffectVolume(int effectType, float volume);
  /hardware/libhardware/modules/usbaudio/
audio_hw.c 324 static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
329 static int adev_set_master_volume(struct audio_hw_device *dev, float volume)
  /hardware/msm7k/libaudio-qsd8k/
AudioHardware.h 161 #define VOICE_VOLUME_MAX 5 // Maximum voice volume
175 virtual status_t setVoiceVolume(float volume);
176 virtual status_t setMasterVolume(float volume);

Completed in 828 milliseconds

<<11121314151617181920