BasebandProcessor interface change to pass references, not copies.

This commit is contained in:
Jared Boone
2015-12-10 11:56:16 -08:00
parent 4d52f73f6a
commit 3bed016128
17 changed files with 30 additions and 30 deletions

View File

@@ -24,7 +24,7 @@
#include <cstdint>
#include <cstddef>
void NarrowbandFMAudio::execute(buffer_c8_t buffer) {
void NarrowbandFMAudio::execute(buffer_c8_t& buffer) {
/* Called every 2048/3072000 second -- 1500Hz. */
auto decimator_out = decimator.execute(buffer);