/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | pvdec_api.cpp | 96 video->vol = (Vol **) IMEM_VOL; in PVInitVideoDecoder() 98 video->vol = (Vol **) oscl_malloc(nLayers * sizeof(Vol *)); in PVInitVideoDecoder() 100 if (video->vol == NULL) status = PV_FALSE; in PVInitVideoDecoder() 165 video->vol[idx] = IMEM_vol[idx]; in PVInitVideoDecoder() 167 oscl_memset(video->vol[idx], 0, sizeof(Vol)); in PVInitVideoDecoder() 168 if (video->vol[idx] == NULL) status = PV_FALSE; in PVInitVideoDecoder() 171 video->vol[idx] = (Vol *) oscl_malloc(sizeof(Vol)); in PVInitVideoDecoder() 172 if (video->vol[idx] == NULL) in PVInitVideoDecoder() 180 oscl_memset(video->vol[idx], 0, sizeof(Vol)); in PVInitVideoDecoder() 201 video->vol[idx]->bitstream = stream; in PVInitVideoDecoder() [all …]
|
D | vop.cpp | 96 currVol = video->vol[layer]; in DecodeVOLHeader() 641 if (currVol->refVolID != video->vol[0]->volID) return PV_FAIL; in DecodeVOLHeader() 805 Vol *currVol = video->vol[video->currLayer]; in DecodeVOPHeader() 1015 Vol *currVol = video->vol[0]; in DecodeShortHeader() 1525 Vol *currVol = video->vol[video->currLayer]; in PV_DecodeVop()
|
D | mp4lib_int.h | 203 Vol **vol; /* Data stored for each VOL */ member
|
D | packet_util.cpp | 31 Vol *currVol = video->vol[video->currLayer]; in PV_ReadVideoPacketHeader()
|
D | vlc_dequant.cpp | 54 Vol *currVol = video->vol[video->currLayer]; in VlcDequantMpegIntraBlock() 388 Vol *currVol = video->vol[video->currLayer]; in VlcDequantMpegInterBlock()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | mp4enc_api.cpp | 844 video->vol = (Vol **)M4VENC_MALLOC(nLayers * sizeof(Vol *)); /* Memory for VOL pointers */ in PVInitVideoEncoder() 847 if (video->vol == NULL) goto CLEAN_UP; in PVInitVideoEncoder() 854 video->vol[idx] = (Vol *)M4VENC_MALLOC(sizeof(Vol)); in PVInitVideoEncoder() 855 if (video->vol[idx] == NULL) goto CLEAN_UP; in PVInitVideoEncoder() 857 pVol = video->vol[idx]; in PVInitVideoEncoder() 860 M4VENC_MEMSET(video->vol[idx], 0, sizeof(Vol)); in PVInitVideoEncoder() 1125 nTotalMB = video->vol[0]->nTotalMB; in PVCleanUpVideoEncoder() 1127 if (video->vol[idx]->nTotalMB > nTotalMB) in PVCleanUpVideoEncoder() 1128 nTotalMB = video->vol[idx]->nTotalMB; in PVCleanUpVideoEncoder() 1224 if (video->vol) in PVCleanUpVideoEncoder() [all …]
|
D | vop.cpp | 44 Vol *currVol = video->vol[currLayer]; in EncodeVop() 127 Vol *currVol = video->vol[video->currLayer]; in EncodeVop_NoME() 196 Vol *currVol = video->vol[currLayer]; in EncodeSlice() 312 Vol *currVol = video->vol[0]; in EncodeVopNotCoded() 510 Vol *currVol = video->vol[video->currLayer]; in EncodeVideoPacketHeader()
|
D | findhalfpel.cpp | 81 Int height = video->vol[video->currLayer]->height; in FindHalfPelMB() 203 height = video->vol[video->currLayer]->height; in FindHalfPelBlk()
|
D | combined_encode.cpp | 40 Vol *currVol = video->vol[video->currLayer]; in EncodeFrameCombinedMode() 265 Vol *currVol = video->vol[video->currLayer]; in EncodeSliceCombinedMode() 684 …BitstreamEncVideo *stream = (bs1stream ? video->bitstream1 : video->vol[video->currLayer]->stream); in EncodeGOBHeader()
|
D | datapart_encode.cpp | 39 Vol *currVol = video->vol[video->currLayer]; in EncodeFrameDataPartMode() 214 Vol *currVol = video->vol[video->currLayer]; in EncodeSliceDataPartMode()
|
D | rate_control.cpp | 186 Vol *currVol = video->vol[currLayer]; in RC_VopQPSetting() 294 Vol *currVol = video->vol[currLayer]; in RC_VopUpdateStat() 533 Vol *currVol = video->vol[video->currLayer]; in targetBitCalculation() 703 Vol *currVol = video->vol[video->currLayer]; in calculateQuantizer_Multipass()
|
D | vlc_encode.cpp | 1146 Int shortVideoHeader = video->vol[video->currLayer]->shortVideoHeader; in MBVlcEncodeCombined_I_VOP() 1182 if (!video->vol[video->currLayer]->shortVideoHeader) in MBVlcEncodeCombined_I_VOP() 1264 Int shortVideoHeader = video->vol[video->currLayer]->shortVideoHeader; in MBVlcEncodeCombined_P_VOP() 1324 if (!video->vol[video->currLayer]->shortVideoHeader && intra) in MBVlcEncodeCombined_P_VOP() 1338 if (!((video->vol[video->currLayer]->scalability) && (video->currVop->refSelectCode == 3))) in MBVlcEncodeCombined_P_VOP() 1789 …Int ShortNacNintra = (!(video->vol[video->currLayer]->shortVideoHeader) && video->acPredFlag[video… in RunLevel() 2024 Vol *currVol = video->vol[video->currLayer]; in DCACPred() 2534 Vol *currVol = video->vol[video->currLayer]; in find_pmvs()
|
D | fastcodemb.cpp | 57 UChar shortHeader = video->vol[video->currLayer]->shortVideoHeader; in CodeMB_H263() 287 Vol *currVol = video->vol[video->currLayer]; in CodeMB_MPEG()
|
D | mp4lib_int.h | 323 Vol **vol; /* Data stored for each VOL */ member
|
D | motion_est.cpp | 139 Vol *currVol = video->vol[video->currLayer]; in MotionEstimation() 773 Vol *currVol = video->vol[video->currLayer]; in MBMotionSearch() 1358 Vol *currVol = video->vol[video->currLayer]; in CandidateSelection()
|
/frameworks/base/core/java/android/speech/tts/ |
D | BlockingAudioTrack.java | 306 final float vol = clip(volume, 0.0f, 1.0f); in setupVolume() local 309 float volLeft = vol; in setupVolume() 310 float volRight = vol; in setupVolume()
|
/frameworks/base/media/java/android/media/ |
D | MediaRouter.java | 781 int vol = 0; in getVolume() local 783 vol = sStatic.mAudioService.getStreamVolume(mPlaybackStream); in getVolume() 787 return vol; in getVolume()
|
D | AudioService.java | 4201 private RemotePlaybackState(int id, int vol, int volMax) { in RemotePlaybackState() argument 4203 mVolume = vol; in RemotePlaybackState() 5182 public void setRemoteStreamVolume(int vol) { in setRemoteStreamVolume() argument 5183 if (DEBUG_VOL) { Log.d(TAG, "setRemoteStreamVolume(vol="+vol+")"); } in setRemoteStreamVolume() 5205 rvo.dispatchRemoteVolumeUpdate(0, vol); in setRemoteStreamVolume()
|
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/ |
D | EffectBundle.cpp | 2593 int16_t LVC_Convert_VolToDb(uint32_t vol){ in LVC_Convert_VolToDb() argument 2596 dB = LVC_ToDB_s32Tos16(vol <<7); in LVC_Convert_VolToDb()
|