Home
last modified time | relevance | path

Searched refs:_shortMax (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/
Dcodec_timer.cc21 : _filteredMax(0), _ignoredSampleCount(0), _shortMax(0), _history() { in VCMCodecTimer()
28 _shortMax = 0; in Reset()
47 if (decodeTime > _shortMax) { in UpdateMaxHistory()
48 _shortMax = decodeTime; in UpdateMaxHistory()
54 _shortMax = decodeTime; in UpdateMaxHistory()
62 if (_shortMax == 0) { in UpdateMaxHistory()
63 _shortMax = decodeTime; in UpdateMaxHistory()
66 _history[0].shortMax = _shortMax; in UpdateMaxHistory()
68 _shortMax = 0; in UpdateMaxHistory()
73 _filteredMax = _shortMax; in ProcessHistory()
Dcodec_timer.h51 int32_t _shortMax; variable