HomeSort by relevance Sort by last modified time
    Searched refs:volume (Results 576 - 600 of 978) sorted by null

<<21222324252627282930>>

  /external/bluetooth/bluedroid/stack/include/
avrc_defs.h 154 #define AVRC_ID_VOL_UP 0x41 /* volume up */
155 #define AVRC_ID_VOL_DOWN 0x42 /* volume down */
1085 UINT8 volume; member in struct:__anon5975
1192 tAVRC_SET_VOLUME_CMD volume; \/* SetAbsVolume *\/ member in union:__anon5984
1303 UINT8 volume; member in union:__anon5994
1322 UINT8 volume; member in struct:__anon5996
1406 tAVRC_SET_VOLUME_RSP volume; \/* SetAbsVolume *\/ member in union:__anon6003
    [all...]
  /external/jpeg/
jquant2.c 263 /* The volume (actually 2-norm) of the box */
264 INT32 volume; member in struct:__anon26542
283 if (boxp->colorcount > maxc && boxp->volume > 0) {
294 /* Find the splittable box with the largest (scaled) volume */
303 if (boxp->volume > maxv) {
305 maxv = boxp->volume;
315 /* and recompute its volume and population */
396 /* Update box volume.
397 * We use 2-norm rather than real volume here; this biases the method
407 boxp->volume = dist0*dist0 + dist1*dist1 + dist2*dist2
    [all...]
  /external/qemu/distrib/jpeg-6b/
jquant2.c 263 /* The volume (actually 2-norm) of the box */
264 INT32 volume; member in struct:__anon33049
283 if (boxp->colorcount > maxc && boxp->volume > 0) {
294 /* Find the splittable box with the largest (scaled) volume */
303 if (boxp->volume > maxv) {
305 maxv = boxp->volume;
315 /* and recompute its volume and population */
396 /* Update box volume.
397 * We use 2-norm rather than real volume here; this biases the method
407 boxp->volume = dist0*dist0 + dist1*dist1 + dist2*dist2
    [all...]
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_mixer.c 72 {" Playback Volume", CTL_PLAYBACK_VOLUME},
73 {" Capture Volume", CTL_CAPTURE_VOLUME},
74 {" Volume", CTL_GLOBAL_VOLUME},
404 ALOGV("capability: volume\n");
477 * This is useful for volume controls which take two parameters as input value.
529 int volume = 0; local
538 ALOGV("capability: volume\n");
553 volume = 1;
558 volume = 1;
574 if (!volume)
    [all...]
  /device/generic/goldfish/audio/
audio_hw.c 464 static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
470 static int adev_set_master_volume(struct audio_hw_device *dev, float volume)
475 static int adev_get_master_volume(struct audio_hw_device *dev, float *volume)
  /external/bluetooth/bluedroid/btif/src/
btif_hf_client.c 363 ** Description volume control
368 static bt_status_t volume_control(bthf_client_volume_type_t type, int volume)
377 BTA_HfClientSendAT(btif_hf_client_cb.handle, BTA_HF_CLIENT_AT_CMD_VGS, volume, 0, NULL);
380 BTA_HfClientSendAT(btif_hf_client_cb.handle, BTA_HF_CLIENT_AT_CMD_VGM, volume, 0, NULL);
    [all...]
  /external/chromium_org/content/browser/speech/
speech_recognition_manager_impl.cc 405 int session_id, float volume, float noise_volume) {
411 delegate_listener->OnAudioLevelsChange(session_id, volume, noise_volume);
413 listener->OnAudioLevelsChange(session_id, volume, noise_volume);
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
AudioManagerAndroid.java 341 // Start observing volume changes to detect when the
342 // voice/communication stream volume is at its lowest level.
343 // It is only possible to pull down the volume slider to about 20%
    [all...]
MediaCodecBridge.java 614 private void setVolume(double volume) {
616 mAudioTrack.setStereoVolume((float) volume, (float) volume);
  /external/webrtc/src/modules/interface/
module_common_types.h 742 const WebRtc_Word32 volume = -1,
801 const WebRtc_Word32 volume,
809 _volume = volume;
  /hardware/qcom/audio/hal/
audio_hw.c 178 static int set_voice_volume_l(struct audio_device *adev, float volume);
1424 int volume[2]; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/ios/
audio_device_ios.cc 255 available = false; // Speaker volume not supported on iOS
260 int32_t AudioDeviceIPhone::SetSpeakerVolume(uint32_t volume) {
262 "AudioDeviceIPhone::SetSpeakerVolume(volume=%u)", volume);
269 int32_t AudioDeviceIPhone::SpeakerVolume(uint32_t& volume) const {
509 available = false; // Mic volume not supported on IOS
514 int32_t AudioDeviceIPhone::SetMicrophoneVolume(uint32_t volume) {
516 "AudioDeviceIPhone::SetMicrophoneVolume(volume=%u)", volume);
524 AudioDeviceIPhone::MicrophoneVolume(uint32_t& volume) const
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecLocalDeviceTv.java 591 int volume = params[0] & 0x7F; local
592 setAudioStatus(mute == 0x80, volume);
847 void setAudioStatus(boolean mute, int volume) {
850 mSystemAudioVolume = volume;
854 VolumeControlAction.scaleToCustomVolume(volume, maxVolume));
856 mute ? HdmiControlManager.AVR_VOLUME_MUTED : volume)
    [all...]
  /hardware/libhardware/modules/audio_remote_submix/
audio_hw.cpp     [all...]
  /hardware/qcom/audio/hal/msm8974/
platform.c 484 csd->volume = (volume_t)dlsym(csd->csd_client,
486 if (csd->volume == NULL) {
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_Genres_MembersTest.java 84 // can not accept any other volume names
85 String volume = "fakeVolume"; local
86 assertNull(mContentResolver.query(Members.getContentUri(volume, 1), null, null, null,
MediaStore_Audio_MediaTest.java 51 // can not accept any other volume names
52 String volume = "faveVolume"; local
53 assertNull(mContentResolver.query(Media.getContentUri(volume), null, null, null, null));
MediaStore_Video_MediaTest.java 57 // can not accept any other volume names
58 String volume = "fakeVolume"; local
59 assertNull(mContentResolver.query(Media.getContentUri(volume), null, null, null, null));
  /external/chromium_org/chromeos/dbus/
cras_audio_client.cc 67 virtual void SetOutputNodeVolume(uint64 node_id, int32 volume) OVERRIDE {
72 writer.AppendInt32(volume);
  /external/chromium_org/jingle/glue/
pseudotcp_adapter_unittest.cc 45 LeakyBucket(double volume, double rate)
46 : volume_(volume),
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
mediastreamhandler.cc 154 void RemoteAudioTrackHandler::OnSetVolume(double volume) {
155 // When the track is disabled, the volume of the source, which is the
157 // setting the volume to the source when the track is disabled.
159 provider_->SetAudioPlayoutVolume(ssrc(), volume); local
  /external/chromium_org/third_party/webrtc/modules/audio_device/mac/
audio_device_mac.cc 625 // If we end up here it means that the selected speaker has no volume
631 // Given that InitSpeaker was successful, we know that a volume control exists
645 int32_t AudioDeviceMac::SetSpeakerVolume(uint32_t volume)
648 return (_mixerManager.SetSpeakerVolume(volume));
651 int32_t AudioDeviceMac::SpeakerVolume(uint32_t& volume) const
661 volume = level;
738 // If we end up here it means that the selected speaker has no volume
791 // If we end up here it means that the selected microphone has no volume
843 // If we end up here it means that the selected microphone has no volume
1009 // If we end up here it means that the selected microphone has no volume
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/win/
audio_device_core_win.cc 823 " failed to initialize the render simple volume");
894 " failed to initialize the capture volume");
948 float volume(0.0f);
949 hr = pVolume->GetMasterVolume(&volume);
972 int32_t AudioDeviceWindowsCore::SetSpeakerVolume(uint32_t volume)
989 if (volume < (uint32_t)MIN_CORE_SPEAKER_VOLUME ||
990 volume > (uint32_t)MAX_CORE_SPEAKER_VOLUME)
997 // scale input volume to valid range (0.0 to 1.0)
998 const float fLevel = (float)volume/MAX_CORE_SPEAKER_VOLUME;
1015 int32_t AudioDeviceWindowsCore::SpeakerVolume(uint32_t& volume) cons
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 250 // If primary external storage is ejected, then remove the external volume
251 // notify all cursors backed by data on that volume.
278 // We do this to avoid deleting files if the volume is remounted while
5150 String volume = srcuri.toString().substring(16, 24); \/\/ extract internal\/external local
5171 String volume = srcuri.toString().substring(16, 24); \/\/ extract internal\/external local
5423 String volume = uri.getPathSegments().get(0); local
    [all...]
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvInputServiceTest.java 337 public void onSetStreamVolume(float volume) {

Completed in 983 milliseconds

<<21222324252627282930>>