Move FIFO and write size to CaptureConfig structure.

Now configured from baseband, where write size and appropriate FIFO size is known.
This commit is contained in:
Jared Boone 2016-04-26 22:26:30 -07:00
parent 01fc6b9bc9
commit 91ee2dbb67
13 changed files with 71 additions and 32 deletions

View file

@ -322,7 +322,7 @@ void AnalogAudioView::record_start() {
return;
}
capture_thread = std::make_unique<CaptureThread>(filename);
capture_thread = std::make_unique<CaptureThread>(filename, 12, 2);
button_record.set_bitmap(&bitmap_stop);
}