Searched refs:modTime (Results 1 – 9 of 9) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | mp4enc_api.cpp | 131 Int DetermineCodingLayer(VideoEncData *video, Int *nLayer, ULong modTime); 133 Int UpdateSkipNextFrame(VideoEncData *video, ULong *modTime, Int *size, PV_STATUS status); 1372 ULong modTime = vid_in->timestamp; in PVEncodeVideoFrame() local 1386 video->nextModTime = video->modTimeRef = ((modTime) - ((modTime) % 1000)); in PVEncodeVideoFrame() 1389 encodeVop = DetermineCodingLayer(video, nLayer, modTime); in PVEncodeVideoFrame() 1415 EncodeVopNotCoded(video, bstream, size, modTime); in PVEncodeVideoFrame() 1520 video->currVop->temporalRef = (modTime * 30 / 1001) % 256; in PVEncodeVideoFrame() 1662 ULong modTime = vid_in->timestamp; in PVEncodeFrameSet() local 1672 video->modTime = modTime; in PVEncodeFrameSet() 1678 video->nextModTime = video->modTimeRef = ((modTime) - ((modTime) % 1000)); in PVEncodeFrameSet() [all …]
|
D | vop.cpp | 309 PV_STATUS EncodeVopNotCoded(VideoEncData *video, UChar *bstream, Int *size, ULong modTime) in EncodeVopNotCoded() argument 325 …frameTick = (Int)(((double)(modTime - video->modTimeRef) * currVol->timeIncrementResolution + 500)… in EncodeVopNotCoded()
|
D | mp4lib_int.h | 402 ULong modTime; /* Input frame modTime */ member
|
D | mp4enc_lib.h | 35 PV_STATUS EncodeVopNotCoded(VideoEncData *video, UChar *bstream, Int *size, ULong modTime);
|
/frameworks/native/cmds/installd/ |
D | utils.c | 588 static cache_file_t* _add_cache_file_t(cache_t* cache, cache_dir_t* dir, time_t modTime, in _add_cache_file_t() argument 595 file->modTime = modTime; in _add_cache_file_t() 836 return lhs->modTime < rhs->modTime ? -1 : (lhs->modTime > rhs->modTime ? 1 : 0); in cache_modtime_sort() 871 ALOGI("DEL (mod %d) %s\n", (int)file->modTime, path); in clear_cache_files() 896 (int)file->modTime, file->dir); in finish_cache_collection()
|
D | installd.h | 116 time_t modTime; member
|
/frameworks/base/core/jni/ |
D | com_android_internal_content_NativeLibraryHelper.cpp | 182 time_t modTime; in copyFileIfChanged() local 190 modTime = mktime(&t); in copyFileIfChanged() 212 if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) { in copyFileIfChanged() 249 times[1].tv_sec = modTime; in copyFileIfChanged()
|
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
D | rate_control.cpp | 50 AVCEnc_Status RCDetermineFrameNum(AVCEncObject *encvid, AVCRateControl *rateCtrl, uint32 modTime, u… in RCDetermineFrameNum() argument 66 encvid->modTimeRef = modTime; in RCDetermineFrameNum() 82 if (modTime < modTimeRef) /* modTime wrapped around */ in RCDetermineFrameNum() 87 modTime += encvid->wrapModTime; /* wrapModTime is non zero after wrap-around */ in RCDetermineFrameNum() 89 …currFrameNum = (int32)(((modTime - modTimeRef) * rateCtrl->frame_rate + 200) / 1000); /* add small… in RCDetermineFrameNum()
|
D | avcenc_lib.h | 677 …CDetermineFrameNum(AVCEncObject *encvid, AVCRateControl *rateCtrl, uint32 modTime, uint *frameNum);
|