| 949 | // of each frame since streaming started. |
| 950 | |
| 951 | STDMETHODIMP CBaseVideoRenderer2::get_DevSyncOffset(__out int *piDev) |
| 952 | { |
| 953 | // First frames have invalid stamps, so we get no stats for them |
| 954 | // So we need 2 frames to get 1 datum, so N is cFramesDrawn-1 |
| 955 | return GetStdDev(m_cFramesDrawn - 1, |
| 956 | piDev, |
| 957 | m_iSumSqAcc, |
| 958 | m_iTotAcc); |
| 959 | } // get_DevSyncOffset |
| 960 | |
| 961 | |
| 962 | // Set *piJitter to the standard deviation in mSec of the inter-frame time |
nothing calls this directly
no outgoing calls
no test coverage detected