Home
last modified time | relevance | path

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

/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
Djitter_estimator.cc123 VCMJitterEstimator::UpdateEstimate(int64_t frameDelayMS, uint32_t frameSizeBytes, in UpdateEstimate() argument
174 double deviation = DeviationFromExpectedDelay(frameDelayMS, deltaFS); in UpdateEstimate()
192 KalmanEstimateChannel(frameDelayMS, deltaFS); in UpdateEstimate()
230 VCMJitterEstimator::KalmanEstimateChannel(int64_t frameDelayMS, in KalmanEstimateChannel() argument
278 measureRes = frameDelayMS - (deltaFSBytes * _theta[0] + _theta[1]); in KalmanEstimateChannel()
308 VCMJitterEstimator::DeviationFromExpectedDelay(int64_t frameDelayMS, in DeviationFromExpectedDelay() argument
311 return frameDelayMS - (_theta[0] * deltaFSBytes + _theta[1]); in DeviationFromExpectedDelay()
Djitter_estimator.h43 void UpdateEstimate(int64_t frameDelayMS,
86 void KalmanEstimateChannel(int64_t frameDelayMS, int32_t deltaFSBytes);
116 double DeviationFromExpectedDelay(int64_t frameDelayMS,