Change baseband audio processing pipeline to all floats.

This commit is contained in:
Jared Boone
2016-01-11 16:15:42 -08:00
parent b9f124850b
commit 55e3a70fde
12 changed files with 90 additions and 56 deletions

View File

@@ -29,14 +29,19 @@ namespace demodulate {
class AM {
public:
buffer_s16_t execute(
buffer_f32_t execute(
const buffer_c16_t& src,
const buffer_s16_t& dst
const buffer_f32_t& dst
);
};
class FM {
public:
buffer_f32_t execute(
const buffer_c16_t& src,
const buffer_f32_t& dst
);
buffer_s16_t execute(
const buffer_c16_t& src,
const buffer_s16_t& dst