HomeSort by relevance Sort by last modified time
    Searched defs:vol (Results 1 - 25 of 60) sorted by null

1 2 3

  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_mp4_decodevideoobjectplane.c 8 mp4_VideoObjectLayer_t *vol = &(pInfo->VisualObject.VideoObject); local
13 if (vol->short_video_header)
15 vop_time = vol->vop_sync_time +
20 vol->vop_sync_time += 256 * 1001;
28 vop_time = vol->vop_sync_time_b + vop->modulo_time_base * vol->vop_time_increment_resolution + vop->vop_time_increment;
32 if (gvop->time_base > vol->vop_sync_time)
33 vol->vop_sync_time = gvop->time_base;
35 vop_time = vol->vop_sync_time + vop->modulo_time_base * vol->vop_time_increment_resolution + vop->vop_time_increment
    [all...]
viddec_mp4_shortheader.c 70 mp4_VideoObjectLayer_t *vol = &(pInfo->VisualObject.VideoObject); local
79 vol->short_video_header = 1;
80 vol->video_object_layer_shape = MP4_SHAPE_TYPE_RECTANGULAR;
81 vol->obmc_disable = 1;
82 vol->quant_type = 0;
83 vol->resync_marker_disable = 1;
84 vol->data_partitioned = 0;
85 vol->reversible_vlc = 0;
86 vol->interlaced = 0;
87 vol->complexity_estimation_disable = 1
    [all...]
viddec_fw_mp4_workload.c 10 mp4_VideoObjectLayer_t *vol = &(parser->info.VisualObject.VideoObject); local
14 attr->cont_size.width = vol->video_object_layer_width;
15 attr->cont_size.height = vol->video_object_layer_height;
18 switch(vol->VideoObjectPlane.vop_coding_type)
36 attr->mpeg4.top_field_first = vol->VideoObjectPlane.top_field_first;
46 mp4_VideoObjectLayer_t *vol = &(parser->info.VisualObject.VideoObject); local
51 viddec_fw_mp4_set_reversible_vlc(&vol_info, vol->reversible_vlc);
52 viddec_fw_mp4_set_data_partitioned(&vol_info, vol->data_partitioned);
53 viddec_fw_mp4_set_resync_marker_disable(&vol_info, vol->resync_marker_disable);
54 viddec_fw_mp4_set_quarter_sample(&vol_info, vol->quarter_sample)
162 mp4_VideoObjectLayer_t *vol = &(parser->info.VisualObject.VideoObject); local
208 mp4_VideoObjectLayer_t *vol = &(parser->info.VisualObject.VideoObject); local
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
wt5001.cxx 97 uint8_t vol = 0; local
98 if (mp3->getVolume(&vol))
99 cout << "The current volume is: " << int(vol) << endl;
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageUnmountReceiver.java 36 final VolumeInfo vol = storage.findVolumeById(volId); local
37 if (vol != null) {
38 new UnmountTask(context, vol).execute();
StorageSettings.java 130 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) {
131 if (isInteresting(vol)) {
142 private static boolean isInteresting(VolumeInfo vol) {
143 switch(vol.getType()) {
168 for (VolumeInfo vol : volumes) {
169 if (vol.getType() == VolumeInfo.TYPE_PRIVATE) {
170 final long volumeTotalBytes = getTotalSize(vol);
173 new StorageVolumePreference(context, vol, color, volumeTotalBytes));
174 if (vol.isMountedReadable()) {
175 final File path = vol.getPath()
262 final VolumeInfo vol = mStorageManager.findVolumeById(key); local
403 final VolumeInfo vol = sm.findVolumeById(volumeId); local
    [all...]
  /external/clang/test/Sema/
warn-cast-qual.c 15 volatile char *vol = 0; local
16 char *vol2 = (char *)vol; // expected-warning {{cast from 'volatile char *' to 'char *' drops volatile qualifier}}
  /hardware/bsp/intel/peripheral/libupm/examples/python/
wt5001.py 66 vol = upmWt5001.uint8Array(0) variable
67 myMP3Player.getVolume(vol)
68 print "The current volume is: " + str(vol.__getitem__(0))
  /system/vold/
PrivateVolume.cpp 157 auto vol = std::shared_ptr<VolumeBase>( local
159 addVolume(vol);
160 vol->create();
TrimTask.cpp 57 auto vol = vm->findVolume(id); local
58 if (vol != nullptr && vol->getState() == VolumeBase::State::kMounted) {
59 mPaths.push_back(vol->getPath());
CommandListener.cpp 211 auto vol = vm->findVolume(id); local
212 if (vol == nullptr) {
219 vol->setMountFlags(mountFlags);
220 vol->setMountUserId(mountUserId);
222 int res = vol->mount();
224 vm->setPrimary(vol);
231 auto vol = vm->findVolume(id); local
232 if (vol == nullptr) {
236 return sendGenericOkFail(cli, vol->unmount());
242 auto vol = vm->findVolume(id) local
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/java/
WT5001Sample.java 90 short vol[] = new short[1]; local
91 if (mp3.getVolume(vol))
92 System.out.println("The current volume is: " + vol[0]);
  /hardware/qcom/audio/legacy/alsa_sound/
AudioStreamOutALSA.cpp 73 int vol; local
85 vol = lrint((volume * 0x2000)+0.5);
90 ALOGV("Setting LPA volume to %d (available range is 0 to 100)\n", vol);
91 mHandle->module->setLpaVolume(vol);
97 ALOGV("Setting Compressed volume to %d (available range is 0 to 100)\n", vol);
98 mHandle->module->setCompressedVolume(vol);
ALSAMixer.cpp 276 long vol = minVol + volume * (maxVol - minVol); local
277 if (vol > maxVol) vol = maxVol;
278 if (vol < minVol) vol = minVol;
280 info->volume = vol;
281 snd_mixer_selem_set_playback_volume_all (info->elem, vol);
295 long vol = minVol + gain * (maxVol - minVol); local
296 if (vol > maxVol) vol = maxVol
317 long vol = minVol + left * (maxVol - minVol); local
340 long vol = minVol + gain * (maxVol - minVol); local
    [all...]
AudioHardwareALSA.cpp 270 int vol = lrint(v * 100.0); local
275 vol = 100 - vol;
279 mALSADevice->setVoipVolume(vol);
282 mALSADevice->setVoiceVolume(vol);
284 mALSADevice->setVoLTEVolume(vol);
296 int vol; local
305 vol = lrint((value * 0x2000) + 0.5);
308 ALOGV("Setting FM volume to %d (available range is 0 to 0x2000)\n", vol);
310 mALSADevice->setFmVolume(vol);
    [all...]
  /hardware/qcom/audio/hal/audio_extn/
hfp.c 76 int32_t vol, ret = 0; local
89 vol = lrint((value * 0x2000) + 0.5);
97 ALOGD("%s: Setting HFP volume to %d \n", __func__, vol);
113 if(mixer_ctl_set_value(ctl, 0, vol) < 0) {
114 ALOGE("%s: Couldn't set HFP Volume: [%d]", __func__, vol);
293 float vol; local
343 if (sscanf(value, "%f", &vol) != 1){
348 ALOGD("%s: set_hfp_volume usecase, Vol: [%f]", __func__, vol);
349 hfp_set_volume(adev, vol);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
StorageNotification.java 76 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) {
77 onVolumeStateChangedInternal(vol);
85 final VolumeInfo vol = mStorageManager.findVolumeByUuid(rec.getFsUuid());
86 if (vol != null && vol.isMountedReadable()) {
87 onVolumeStateChangedInternal(vol);
175 for (VolumeInfo vol : vols) {
176 onVolumeStateChangedInternal(vol);
258 private void onVolumeStateChangedInternal(VolumeInfo vol) {
259 switch (vol.getType())
662 final VolumeInfo vol = mStorageManager.findVolumeByQualifiedUuid(move.volumeUuid); local
    [all...]
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
AdoptableHostTest.java 90 final LocalVolumeInfo vol = getAdoptionVolume(); local
94 "pm move-package " + PKG + " " + vol.uuid));
100 getDevice().executeShellCommand("sm unmount " + vol.volId);
101 getDevice().executeShellCommand("sm mount " + vol.volId);
150 final LocalVolumeInfo vol = getAdoptionVolume(); local
154 getDevice().executeShellCommand("pm move-primary-storage " + vol.uuid, out, 2,
161 getDevice().executeShellCommand("sm unmount " + vol.volId);
163 getDevice().executeShellCommand("sm mount " + vol.volId);
168 assertSuccess(getDevice().executeShellCommand("pm move-package " + PKG + " " + vol.uuid));
195 final LocalVolumeInfo vol = getAdoptionVolume() local
227 final LocalVolumeInfo vol = getAdoptionVolume(); local
255 final LocalVolumeInfo vol = getAdoptionVolume(); local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btConvexTriangleMeshShape.cpp 236 btScalar vol = btFabs((triangle[0] - ref).triple(triangle[1] - ref, triangle[2] - ref)); local
237 sum += (btScalar(0.25) * vol) * ((triangle[0] + triangle[1] + triangle[2] + ref));
238 volume += vol;
  /external/webrtc/webrtc/modules/audio_device/mac/
audio_mixer_manager_mac.cc 232 const Float32 vol = (Float32)(volume / 255.0); local
234 assert(vol <= 1.0 && vol >= 0.0);
244 size = sizeof(vol);
246 _outputDeviceID, &propertyAddress, 0, NULL, size, &vol));
258 size = sizeof(vol);
260 _outputDeviceID, &propertyAddress, 0, NULL, size, &vol));
285 Float32 vol = 0; local
294 size = sizeof(vol);
296 _outputDeviceID, &propertyAddress, 0, NULL, &size, &vol));
853 const Float32 vol = (Float32)(volume \/ 255.0); local
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 87 final VolumeInfo vol = (VolumeInfo) data.readParcelable(null); local
90 onVolumeStateChanged(vol, oldState, newState);
190 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState)
196 _data.writeParcelable(vol, 0);
301 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState)
  /frameworks/base/core/java/android/speech/tts/
AudioPlaybackQueueItem.java 100 final float vol = clip(volume, 0.0f, 1.0f); local
103 float volLeft = vol, volRight = vol;
BlockingAudioTrack.java 319 final float vol = clip(volume, 0.0f, 1.0f); local
322 float volLeft = vol;
323 float volRight = vol;
  /hardware/qcom/audio/hal/
voice.c 367 int vol, err = 0; local
377 vol = lrint(volume * 100.0);
382 vol = 100 - vol;
384 err = platform_set_voice_volume(adev->platform, vol);
  /external/webrtc/webrtc/voice_engine/test/cmd_test/
voe_cmd_test.cc 408 unsigned int vol = 999; local
409 res = volume->GetMicVolume(vol);
411 if ((vol > 255) || (vol < 1)) {
535 unsigned vol(0);
536 res = volume->GetSpeakerVolume(vol);
538 printf("\n Speaker Volume is %d \n", vol);
546 unsigned vol(0);
547 res = volume->GetMicVolume(vol);
549 printf("\n Microphone Volume is %d \n", vol);
    [all...]

Completed in 530 milliseconds

1 2 3