HomeSort by relevance Sort by last modified time
    Searched refs:_theta (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/video_coding/
jitter_estimator.cc 84 _theta[0] = 1 / (512e3 / 8);
85 _theta[1] = 0;
256 measureRes = frameDelayMS - (deltaFSBytes * _theta[0] + _theta[1]);
257 _theta[0] += kalmanGain[0] * measureRes;
258 _theta[1] += kalmanGain[1] * measureRes;
260 if (_theta[0] < _thetaLow) {
261 _theta[0] = _thetaLow;
289 return frameDelayMS - (_theta[0] * deltaFSBytes + _theta[1])
    [all...]
jitter_estimator.h 73 double _theta[2]; // Estimated line parameters (slope, offset) member in class:webrtc::VCMJitterEstimator

Completed in 320 milliseconds