Home
last modified time | relevance | path

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

/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
Djitter_estimator.cc59 memcpy(_thetaCov, rhs._thetaCov, sizeof(_thetaCov)); in operator =()
91 _thetaCov[0][0] = 1e-4; in Reset()
92 _thetaCov[1][1] = 1e2; in Reset()
93 _thetaCov[0][1] = _thetaCov[1][0] = 0; in Reset()
243 _thetaCov[0][0] += _Qcov[0][0]; in KalmanEstimateChannel()
244 _thetaCov[0][1] += _Qcov[0][1]; in KalmanEstimateChannel()
245 _thetaCov[1][0] += _Qcov[1][0]; in KalmanEstimateChannel()
246 _thetaCov[1][1] += _Qcov[1][1]; in KalmanEstimateChannel()
253 Mh[0] = _thetaCov[0][0] * deltaFSBytes + _thetaCov[0][1]; in KalmanEstimateChannel()
254 Mh[1] = _thetaCov[1][0] * deltaFSBytes + _thetaCov[1][1]; in KalmanEstimateChannel()
[all …]
Djitter_estimator.h134 double _thetaCov[2][2]; // Estimate covariance variable