Use audio compressor in AM/SSB receiver mode.

This commit is contained in:
Jared Boone 2016-02-13 11:19:32 -08:00
parent 9f4c8929ac
commit 1cdeb1ca4e
3 changed files with 4 additions and 1 deletions

View file

@ -40,6 +40,7 @@ void NarrowbandAMAudio::execute(const buffer_c8_t& buffer) {
channel_spectrum.feed(channel_out, channel_filter_pass_f, channel_filter_stop_f);
auto audio = demodulate(channel_out);
audio_compressor.execute_in_place(audio);
audio_output.write(audio);
}