Home
last modified time | relevance | path

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

/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
Dcodec_timer.cc51 void VCMCodecTimer::MaxFilter(int32_t decodeTime, int64_t nowMs) in MaxFilter() argument
55 UpdateMaxHistory(decodeTime, nowMs); in MaxFilter()
65 VCMCodecTimer::UpdateMaxHistory(int32_t decodeTime, int64_t now) in UpdateMaxHistory() argument
70 if (decodeTime > _shortMax) in UpdateMaxHistory()
72 _shortMax = decodeTime; in UpdateMaxHistory()
81 _shortMax = decodeTime; in UpdateMaxHistory()
94 _shortMax = decodeTime; in UpdateMaxHistory()
Dcodec_timer.h48 void UpdateMaxHistory(int32_t decodeTime, int64_t now);
/external/chromium_org/third_party/webrtc/modules/video_coding/main/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()