| 1281 | } |
| 1282 | |
| 1283 | void CStatsData::PushSample(uint32 sample) |
| 1284 | { |
| 1285 | m_start_index = (m_start_index + 1) % m_size; |
| 1286 | m_end_index = (m_end_index + 1) % m_size; |
| 1287 | m_data[m_start_index] = sample; |
| 1288 | |
| 1289 | if ( m_max_value < sample ) { |
| 1290 | m_max_value = sample; |
| 1291 | } |
| 1292 | } |
| 1293 | |
| 1294 | CStatsCollection::CStatsCollection(int size, CamulewebApp *iface) |
| 1295 | { |