/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/ |
H A D | 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 [all...] |
H A D | 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 [all...] |
H A D | 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 162 mp4_VideoObjectLayer_t *vol = &(parser->info.VisualObject.VideoObject); local 208 mp4_VideoObjectLayer_t *vol = &(parser->info.VisualObject.VideoObject); local [all...] |
/hardware/qcom/audio/hal/audio_extn/ |
H A D | ext_speaker.c | 152 void audio_extn_extspk_set_voice_vol(void* extn, float vol) argument 157 data->set_voice_vol(vol);
|
H A D | hfp.c | 85 int32_t vol, ret = 0; local 101 vol = lrint((value * 0x2000) + 0.5); 108 ALOGD("%s: Setting HFP volume to %d \n", __func__, vol); 124 if(mixer_ctl_set_value(ctl, 0, vol) < 0) { 125 ALOGE("%s: Couldn't set HFP Volume: [%d]", __func__, vol); 429 float vol; local 479 if (sscanf(value, "%f", &vol) != 1){ 484 ALOGD("%s: set_hfp_volume usecase, Vol: [%f]", __func__, vol); 485 hfp_set_volume(adev, vol); 492 if (sscanf(value, "%f", &vol) ! [all...] |
H A D | tfa_98xx.c | 468 void audio_extn_tfa_98xx_set_voice_vol(float vol) argument 475 if (vol < 0.0) { 476 vol = 0.0; 478 vol = ((vol > HFP_MAX_VOLUME) ? 1.0 : (vol / HFP_MAX_VOLUME)); 480 vsteps = (int)floorf((1.0 - vol) * TFA_98XX_HFP_VSETPS);
|
/hardware/qcom/audio/legacy/alsa_sound/ |
H A D | 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);
|
H A D | 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 317 long vol = minVol + left * (maxVol - minVol); local 340 long vol = minVol + gain * (maxVol - minVol); local [all...] |
H A D | 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...] |
H A D | alsa_default.cpp | 80 static void s_set_volte_volume(int vol); 1573 void s_set_voice_volume(int vol) argument 1576 ALOGV("s_set_voice_volume: volume %d", vol); 1578 control.set("Voice Rx Volume", vol, 0); 1585 err = csd_volume(vol); 1594 void s_set_volte_volume(int vol) argument 1596 ALOGV("s_set_volte_volume: volume %d", vol); 1598 control.set("VoLTE Rx Volume", vol, 0); 1602 void s_set_voip_volume(int vol) argument 1604 ALOGV("s_set_voip_volume: volume %d", vol); [all...] |
/hardware/qcom/audio/hal/ |
H A D | voice.c | 375 int vol, err = 0; local 385 vol = lrint(volume * 100.0); 390 vol = 100 - vol; 392 err = platform_set_voice_volume(adev->platform, vol);
|
/hardware/intel/common/libmix/mix_audio/src/ |
H A D | mixaudio.c | 1151 struct snd_sst_vol vol = {0}; local 1160 vol.stream_id = mix->streamID; 1168 retVal = ioctl(mix->fileDescriptor, SNDRV_SST_GET_VOL, &vol); 1169 g_debug("SNDRV_SST_GET_VOL returned %d. vol=%d", retVal, vol.volume); 1186 *currvol = (maxvol!=0)?((vol.volume * 100) / maxvol):0; 1188 *currvol = vol.volume; 1373 struct snd_sst_vol vol = {0}; local 1375 vol.ramp_duration = msecs; 1376 vol [all...] |
/hardware/qcom/msm8960/kernel-headers/linux/ |
H A D | msm_audio.h | 199 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
H A D | msm_audio.h | 209 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8x26/kernel-headers/linux/ |
H A D | msm_audio.h | 199 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8x26/original-kernel-headers/linux/ |
H A D | msm_audio.h | 217 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8x84/kernel-headers/linux/ |
H A D | msm_audio.h | 199 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8x84/original-kernel-headers/linux/ |
H A D | msm_audio.h | 209 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8994/kernel-headers/linux/ |
H A D | msm_audio.h | 206 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8994/original-kernel-headers/linux/ |
H A D | msm_audio.h | 226 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8996/kernel-headers/linux/ |
H A D | msm_audio.h | 209 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8996/original-kernel-headers/linux/ |
H A D | msm_audio.h | 229 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8x09/kernel-headers/linux/ |
H A D | msm_audio.h | 209 uint32_t vol; member in struct:msm_vol_info
|
/hardware/qcom/msm8x09/original-kernel-headers/linux/ |
H A D | msm_audio.h | 229 uint32_t vol; member in struct:msm_vol_info
|