| 370 | } |
| 371 | |
| 372 | void DecoderStack::init() |
| 373 | { |
| 374 | _sample_count = 0; |
| 375 | _samples_decoded = 0; |
| 376 | _error_message = QString(); |
| 377 | _no_memory = false; |
| 378 | _snapshot = NULL; |
| 379 | _result_count = 0; |
| 380 | |
| 381 | for (auto i = _rows.begin();i != _rows.end(); i++) { |
| 382 | (*i).second->clear(); |
| 383 | } |
| 384 | |
| 385 | set_mark_index(-1); |
| 386 | } |
| 387 | |
| 388 | void DecoderStack::stop_decode_work() |
| 389 | { |