| 489 | } |
| 490 | |
| 491 | uint64_t DecoderStack::get_max_sample_count() |
| 492 | { |
| 493 | uint64_t max_sample_count = 0; |
| 494 | |
| 495 | for (auto i = _rows.begin(); i != _rows.end(); i++){ |
| 496 | max_sample_count = max(max_sample_count, (*i).second->get_max_sample()); |
| 497 | } |
| 498 | |
| 499 | return max_sample_count; |
| 500 | } |
| 501 | |
| 502 | void DecoderStack::decode_data(const uint64_t decode_start, const uint64_t decode_end, srd_session *const session) |
| 503 | { |
nothing calls this directly
no test coverage detected