| 217 | } |
| 218 | |
| 219 | void DecoderStack::get_annotation_subset( |
| 220 | std::vector<pv::data::decode::Annotation*> &dest, |
| 221 | const Row &row, uint64_t start_sample, |
| 222 | uint64_t end_sample) |
| 223 | { |
| 224 | auto iter = _rows.find(row); |
| 225 | if (iter != _rows.end()) |
| 226 | (*iter).second->get_annotation_subset(dest, |
| 227 | start_sample, end_sample); |
| 228 | } |
| 229 | |
| 230 | |
| 231 | uint64_t DecoderStack::get_annotation_index( |