Home
last modified time | relevance | path

Searched refs:decodeTime (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/
Dcodec_timer.cc36 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()
Dcodec_timer.h45 void UpdateMaxHistory(int32_t decodeTime, int64_t now);
/external/webrtc/webrtc/modules/video_coding/test/
DplotReceiveTrace.m17 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/
DLzmaBench.java359 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/
DLzmaBench.cs305 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/
DMediaCodecVideoDecoder.java387 long ntpTimeStampMs, long decodeTime, long endDecodeTime) { in DecodedOutputBuffer() argument
393 this.decodeTimeMs = decodeTime; in DecodedOutputBuffer()