Searched refs:decodeTime (Results 1 – 6 of 6) sorted by relevance
/external/webrtc/webrtc/modules/video_coding/ |
D | codec_timer.cc | 36 void VCMCodecTimer::MaxFilter(int32_t decodeTime, int64_t nowMs) { in MaxFilter() argument 38 UpdateMaxHistory(decodeTime, nowMs); in MaxFilter() 45 void VCMCodecTimer::UpdateMaxHistory(int32_t decodeTime, int64_t now) { in UpdateMaxHistory() argument 47 if (decodeTime > _shortMax) { in UpdateMaxHistory() 48 _shortMax = decodeTime; in UpdateMaxHistory() 54 _shortMax = decodeTime; in UpdateMaxHistory() 63 _shortMax = decodeTime; in UpdateMaxHistory()
|
D | codec_timer.h | 45 void UpdateMaxHistory(int32_t decodeTime, int64_t now);
|
/external/webrtc/webrtc/modules/video_coding/test/ |
D | plotReceiveTrace.m | 17 decodeTime = []; variable 70 decodeTime = [decodeTime; p']; variable 138 if prod(size(decodeTime)) > 0 139 x = (decodeTime(:,1) - firstTimeStamp)/90; 143 plot(x, decodeTime(:,2) - firstTime - slope, 'r.');
|
/external/lzma/Java/SevenZip/ |
D | LzmaBench.java | 359 long decodeTime = 0; in LzmaBenchmark() local 369 decodeTime = System.currentTimeMillis() - startTime; in LzmaBenchmark() 376 PrintResults(dictionarySize, decodeTime, kBufferSize, true, compressedSize); in LzmaBenchmark() 381 totalDecodeTime += decodeTime; in LzmaBenchmark()
|
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
D | LzmaBench.cs | 305 UInt64 decodeTime = 0; in LzmaBenchmark() 316 decodeTime = (ulong)sp.Ticks; in LzmaBenchmark() 323 PrintResults(dictionarySize, decodeTime, kBufferSize, true, (ulong)compressedSize); in LzmaBenchmark() 328 totalDecodeTime += decodeTime; in LzmaBenchmark()
|
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
D | MediaCodecVideoDecoder.java | 387 long ntpTimeStampMs, long decodeTime, long endDecodeTime) { in DecodedOutputBuffer() argument 393 this.decodeTimeMs = decodeTime; in DecodedOutputBuffer()
|