| 2557 | } |
| 2558 | |
| 2559 | bool SigSession::have_decoded_result() |
| 2560 | { |
| 2561 | for (auto trace : _decode_traces){ |
| 2562 | if (trace->decoder()->get_result_count() > 0){ |
| 2563 | return true; |
| 2564 | } |
| 2565 | } |
| 2566 | |
| 2567 | return false; |
| 2568 | } |
| 2569 | |
| 2570 | void SigSession::apply_samplerate() |
| 2571 | { |
no test coverage detected