Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/video_coding/
Djitter_estimator.cc58 memcpy(_thetaCov, rhs._thetaCov, sizeof(_thetaCov)); in operator =()
88 _thetaCov[0][0] = 1e-4; in Reset()
89 _thetaCov[1][1] = 1e2; in Reset()
90 _thetaCov[0][1] = _thetaCov[1][0] = 0; in Reset()
221 _thetaCov[0][0] += _Qcov[0][0]; in KalmanEstimateChannel()
222 _thetaCov[0][1] += _Qcov[0][1]; in KalmanEstimateChannel()
223 _thetaCov[1][0] += _Qcov[1][0]; in KalmanEstimateChannel()
224 _thetaCov[1][1] += _Qcov[1][1]; in KalmanEstimateChannel()
231 Mh[0] = _thetaCov[0][0] * deltaFSBytes + _thetaCov[0][1]; in KalmanEstimateChannel()
232 Mh[1] = _thetaCov[1][0] * deltaFSBytes + _thetaCov[1][1]; in KalmanEstimateChannel()
[all …]
Djitter_estimator.h138 double _thetaCov[2][2]; // Estimate covariance variable