| 22 | #define SIGDIGGER_CYCLO_BLOCK_LENGTH 4096 |
| 23 | |
| 24 | QuadDemodTask::QuadDemodTask( |
| 25 | const SUCOMPLEX *data, |
| 26 | SUCOMPLEX *destination, |
| 27 | size_t length, |
| 28 | QObject *parent) : |
| 29 | Suscan::CancellableTask(parent) |
| 30 | { |
| 31 | this->origin = data; |
| 32 | this->destination = destination; |
| 33 | this->length = length; |
| 34 | |
| 35 | this->setProgress(0); |
| 36 | this->setStatus("Processing..."); |
| 37 | } |
| 38 | |
| 39 | bool |
| 40 | QuadDemodTask::work(void) |
nothing calls this directly
no test coverage detected